Cache scriptcode generated by adblock instead of generating on load
This commit is contained in:
parent
5f300fd8ba
commit
e97a198e98
1 changed files with 6 additions and 6 deletions
|
@ -24,6 +24,7 @@
|
||||||
|
|
||||||
static GHashTable* pattern;
|
static GHashTable* pattern;
|
||||||
static gchar* blockcss = NULL;
|
static gchar* blockcss = NULL;
|
||||||
|
static gchar* blockscript = NULL;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
adblock_parse_file (gchar* path);
|
adblock_parse_file (gchar* path);
|
||||||
|
@ -423,8 +424,7 @@ adblock_window_object_cleared_cb (GtkWidget* web_view,
|
||||||
JSContextRef js_context,
|
JSContextRef js_context,
|
||||||
JSObjectRef js_window)
|
JSObjectRef js_window)
|
||||||
{
|
{
|
||||||
webkit_web_view_execute_script (WEBKIT_WEB_VIEW (web_view),
|
webkit_web_view_execute_script (WEBKIT_WEB_VIEW (web_view), blockscript);
|
||||||
adblock_build_js (blockcss));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -432,7 +432,6 @@ adblock_add_tab_cb (MidoriBrowser* browser,
|
||||||
MidoriView* view)
|
MidoriView* view)
|
||||||
{
|
{
|
||||||
GtkWidget* web_view = gtk_bin_get_child (GTK_BIN (view));
|
GtkWidget* web_view = gtk_bin_get_child (GTK_BIN (view));
|
||||||
if (blockcss && *blockcss)
|
|
||||||
g_signal_connect (web_view, "window-object-cleared",
|
g_signal_connect (web_view, "window-object-cleared",
|
||||||
G_CALLBACK (adblock_window_object_cleared_cb), 0);
|
G_CALLBACK (adblock_window_object_cleared_cb), 0);
|
||||||
g_signal_connect (web_view, "resource-request-starting",
|
g_signal_connect (web_view, "resource-request-starting",
|
||||||
|
@ -541,6 +540,7 @@ adblock_parse_file (gchar* path)
|
||||||
else
|
else
|
||||||
g_hash_table_insert (pattern, parsed, regex);
|
g_hash_table_insert (pattern, parsed, regex);
|
||||||
}
|
}
|
||||||
|
katze_assign (blockscript, adblock_build_js (blockcss));
|
||||||
fclose (file);
|
fclose (file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue