diff options
author | Peter Hofmann <scm@uninformativ.de> | 2014-11-09 12:09:21 +0100 |
---|---|---|
committer | Peter Hofmann <scm@uninformativ.de> | 2014-11-09 12:09:21 +0100 |
commit | 79d0c56da86ab63f0aa52f48a56a2f73c08738f5 (patch) | |
tree | 2d3317a88e14a20e8d046cfb9e3ec276dd6cc41d | |
parent | 6d22e5dc360e2bff3cf90df9673807e4a4f57670 (diff) | |
download | lariza-79d0c56da86ab63f0aa52f48a56a2f73c08738f5.tar.gz |
Reactivate $LARIZA_USER_AGENT and use WebKit's default
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | browser.c | 12 |
2 files changed, 6 insertions, 10 deletions
@@ -236,8 +236,8 @@ following environment variables: command line. Defaults to "about:blank". LARIZA_USER_AGENT - Lariza will identify itself with this string. See source code - for the default value. + Lariza will identify itself with this string. Uses WebKit's + default value if unset. LARIZA_ZOOM Zoom level for WebKit viewports. Defaults to 1.0. @@ -80,10 +80,7 @@ static gboolean language_is_set = FALSE; static gchar *search_text = NULL; static gboolean show_all_requests = FALSE; static gboolean tabbed_automagic = TRUE; -static gchar *user_agent = "Mozilla/5.0 (X11; U; Unix; en-US) " - "AppleWebKit/537.15 (KHTML, like Gecko) " - "Chrome/24.0.1295.0 " - "Safari/537.15 "__NAME_CAPITALIZED__"/git"; +static gchar *user_agent = NULL; void @@ -199,10 +196,9 @@ client_new(const gchar *uri) language_is_set = TRUE; } - /* - g_object_set(G_OBJECT(webkit_web_view_get_settings(WEBKIT_WEB_VIEW(c->web_view))), - "user-agent", user_agent, NULL); - */ + if (user_agent != NULL) + g_object_set(G_OBJECT(webkit_web_view_get_settings(WEBKIT_WEB_VIEW(c->web_view))), + "user-agent", user_agent, NULL); c->scroll = gtk_scrolled_window_new(NULL, NULL); |