changing useragent.
This commit is contained in:
parent
24bbd6be02
commit
d97b8adfde
|
@ -1,4 +1,5 @@
|
||||||
/* modifier 0 means no modifier */
|
/* modifier 0 means no modifier */
|
||||||
|
static gchar *useragent = "Mozilla/5.0 (This is surf. Really! KHTML, like Gecko) Safari/531.2+";
|
||||||
static gchar *progress = "#FF0000";
|
static gchar *progress = "#FF0000";
|
||||||
static gchar *progress_trust = "#00FF00";
|
static gchar *progress_trust = "#00FF00";
|
||||||
static gchar *stylefile = ".surf/style.css";
|
static gchar *stylefile = ".surf/style.css";
|
||||||
|
|
2
surf.c
2
surf.c
|
@ -439,7 +439,7 @@ newclient(void) {
|
||||||
gdk_window_add_filter(GTK_WIDGET(c->win)->window, processx, c);
|
gdk_window_add_filter(GTK_WIDGET(c->win)->window, processx, c);
|
||||||
webkit_web_view_set_full_content_zoom(c->view, TRUE);
|
webkit_web_view_set_full_content_zoom(c->view, TRUE);
|
||||||
settings = webkit_web_view_get_settings(c->view);
|
settings = webkit_web_view_get_settings(c->view);
|
||||||
g_object_set(G_OBJECT(settings), "user-agent", "surf", NULL);
|
g_object_set(G_OBJECT(settings), "user-agent", useragent, NULL);
|
||||||
uri = g_strconcat("file://", stylefile, NULL);
|
uri = g_strconcat("file://", stylefile, NULL);
|
||||||
g_object_set(G_OBJECT(settings), "user-stylesheet-uri", uri, NULL);
|
g_object_set(G_OBJECT(settings), "user-stylesheet-uri", uri, NULL);
|
||||||
g_free(uri);
|
g_free(uri);
|
||||||
|
|
Loading…
Reference in New Issue