sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 5d44695c18e47d8d0f1c13b3cd3a437e5916b8bd
parent 50b1865403d0fbcc49020e9fafceeb85257d99c5
Author: Markus Teich <markus.teich@stusta.mhn.de>
Date:   Tue, 20 Jan 2015 16:16:32 +0100

the userstyle patch has been upstreamed

Diffstat:
Dsurf.suckless.org/patches/per-site-css.md | 21---------------------
Dsurf.suckless.org/patches/surf-tip-per-site-user-styles.patch | 258-------------------------------------------------------------------------------
2 files changed, 0 insertions(+), 279 deletions(-)

diff --git a/surf.suckless.org/patches/per-site-css.md b/surf.suckless.org/patches/per-site-css.md @@ -1,21 +0,0 @@ -Per Site custom style -===================== - -Description ------------ - -This patch allows to specify custom CSS stylesheets per site. The stylesheets -from [userstyles.org](https://userstyles.org/) are compatible with this patch. -To use them you have to specify a regular expression that matches the URI in -your config.h file together with the CSS filename to use for this site. See the -patched config.def.h for an example. - -Download --------- - -* [surf-tip-per-site-user-styles.patch](surf-tip-per-site-user-styles.patch) (7.5K) (20141117) - -Author ------- - -* Markus Teich diff --git a/surf.suckless.org/patches/surf-tip-per-site-user-styles.patch b/surf.suckless.org/patches/surf-tip-per-site-user-styles.patch @@ -1,258 +0,0 @@ -From 2e463d21bb653d38282be1101c9aae1c5fd87623 Mon Sep 17 00:00:00 2001 -From: Markus Teich <markus.teich@stusta.mhn.de> -Date: Mon, 17 Nov 2014 02:09:53 +0100 -Subject: [PATCH] add per-site user styles - -since the css domain selectors do not work in webkit, another approach needs to -be taken to support custom css for specific sites. In config.h there is now a -list of regexes and corresponding css filenames. When a page is loaded and -userstyles are active, the first entry that matches the uri is used as -user-stylesheet-uri. The old static stylesheet is removed but can still be used -by installing a default rule matching any site at the end of the list. ---- - config.def.h | 8 +++++++- - surf.1 | 9 +-------- - surf.c | 59 +++++++++++++++++++++++++++++++++++++++++------------------ - 3 files changed, 49 insertions(+), 27 deletions(-) - -diff --git a/config.def.h b/config.def.h -index 80a0feb..ebab5bd 100644 ---- a/config.def.h -+++ b/config.def.h -@@ -2,7 +2,6 @@ - static char *useragent = "Mozilla/5.0 (X11; U; Unix; en-US) " - "AppleWebKit/537.15 (KHTML, like Gecko) Chrome/24.0.1295.0 " - "Safari/537.15 Surf/"VERSION; --static char *stylefile = "~/.surf/style.css"; - static char *scriptfile = "~/.surf/script.js"; - - static Bool kioskmode = FALSE; /* Ignore shortcuts */ -@@ -51,6 +50,13 @@ static Bool allowgeolocation = TRUE; - - #define MODKEY GDK_CONTROL_MASK - -+#define STYLEDIR "~/.surf/styles/" -+static SiteSpecificStyle styles[] = { -+ { "^https?://[a-z]+\\.wikipedia\\.org", STYLEDIR "wiki.css" }, -+ { "^https?://startpage\\.com", STYLEDIR "startpage.css" }, -+ { ".*", STYLEDIR "default.css" }, -+}; -+ - /* hotkeys */ - /* - * If you use anything else but MODKEY and GDK_SHIFT_MASK, don't forget to -diff --git a/surf.1 b/surf.1 -index f838773..9e13932 100644 ---- a/surf.1 -+++ b/surf.1 -@@ -8,7 +8,6 @@ surf \- simple webkit-based browser - .RB [-c\ cookiefile] - .RB [-e\ xid] - .RB [-r\ scriptfile] --.RB [-t\ stylefile] - .RB [-u\ useragent] - .RB [-z\ zoomlevel] - .RB "URI" -@@ -90,10 +89,6 @@ Disable Javascript - .B \-S - Enable Javascript - .TP --.B \-t stylefile --Specify the user --.I stylefile. --.TP - .B \-u useragent - Specify the - .I useragent -@@ -194,9 +189,7 @@ Toggle caret browsing. This will reload the page. - Toggle auto-loading of images. This will reload the page. - .TP - .B Ctrl\-Shift\-m --Toggle if the --.I stylefile --file should be loaded. This will reload the page. -+Toggle if custom styles should be loaded. This will reload the page. - .TP - .B Ctrl\-Shift\-o - Open the Web Inspector (Developer Tools) window for the current page. -diff --git a/surf.c b/surf.c -index 6beda59..5994486 100644 ---- a/surf.c -+++ b/surf.c -@@ -23,6 +23,7 @@ - #include <sys/file.h> - #include <libgen.h> - #include <stdarg.h> -+#include <regex.h> - - #include "arg.h" - -@@ -71,6 +72,12 @@ typedef struct { - - G_DEFINE_TYPE(CookieJar, cookiejar, SOUP_TYPE_COOKIE_JAR_TEXT) - -+typedef struct { -+ char *regex; -+ char *style; -+ regex_t re; -+} SiteSpecificStyle; -+ - static Display *dpy; - static Atom atoms[AtomLast]; - static Client *clients = NULL; -@@ -127,6 +134,8 @@ static const char *getatom(Client *c, int a); - static void gettogglestat(Client *c); - static void getpagestat(Client *c); - static char *geturi(Client *c); -+static gchar *getstyle(const char *uri); -+ - static gboolean initdownload(WebKitWebView *v, WebKitDownload *o, Client *c); - - static void inspector(Client *c, const Arg *arg); -@@ -264,7 +273,6 @@ cleanup(void) { - destroyclient(clients); - g_free(cookiefile); - g_free(scriptfile); -- g_free(stylefile); - } - - static void -@@ -533,6 +541,15 @@ geturi(Client *c) { - return uri; - } - -+static gchar * -+getstyle(const char *uri) { -+ int i; -+ for(i = 0; i < LENGTH(styles); i++) -+ if(styles[i].regex && !regexec(&(styles[i].re), uri, 0, NULL, 0)) -+ return g_strconcat("file://", styles[i].style, NULL); -+ return g_strdup(""); -+} -+ - static gboolean - initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) { - Arg arg; -@@ -629,8 +646,10 @@ loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) { - WebKitWebFrame *frame; - WebKitWebDataSource *src; - WebKitNetworkRequest *request; -+ WebKitWebSettings *set = webkit_web_view_get_settings(c->view); - SoupMessage *msg; - char *uri; -+ char *path; - - switch(webkit_web_view_get_load_status (c->view)) { - case WEBKIT_LOAD_COMMITTED: -@@ -644,6 +663,9 @@ loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) { - & SOUP_MESSAGE_CERTIFICATE_TRUSTED); - } - setatom(c, AtomUri, uri); -+ g_object_get(G_OBJECT(set), "user-stylesheet-uri", &path, NULL); -+ if (path && path[0]) -+ g_object_set(G_OBJECT(set), "user-stylesheet-uri", getstyle(uri), NULL); - break; - case WEBKIT_LOAD_FINISHED: - c->progress = 100; -@@ -702,7 +724,7 @@ newclient(void) { - GdkGeometry hints = { 1, 1 }; - GdkScreen *screen; - gdouble dpi; -- char *uri, *ua; -+ char *ua; - - if(!(c = calloc(1, sizeof(Client)))) - die("Cannot malloc!\n"); -@@ -832,8 +854,6 @@ newclient(void) { - if(!(ua = getenv("SURF_USERAGENT"))) - ua = useragent; - g_object_set(G_OBJECT(settings), "user-agent", ua, NULL); -- uri = g_strconcat("file://", stylefile, NULL); -- g_object_set(G_OBJECT(settings), "user-stylesheet-uri", uri, NULL); - g_object_set(G_OBJECT(settings), "auto-load-images", loadimages, - NULL); - g_object_set(G_OBJECT(settings), "enable-plugins", enableplugins, -@@ -888,8 +908,6 @@ newclient(void) { - fullscreen(c, NULL); - } - -- g_free(uri); -- - setatom(c, AtomFind, ""); - setatom(c, AtomUri, "about:blank"); - if(hidebackground) -@@ -1094,6 +1112,7 @@ setatom(Client *c, int a, const char *v) { - - static void - setup(void) { -+ int i; - char *proxy; - char *new_proxy; - SoupURI *puri; -@@ -1114,7 +1133,15 @@ setup(void) { - /* dirs and files */ - cookiefile = buildpath(cookiefile); - scriptfile = buildpath(scriptfile); -- stylefile = buildpath(stylefile); -+ -+ /* site specific stylesheet regexes */ -+ for(i = 0; i < LENGTH(styles); i++) { -+ if(regcomp(&(styles[i].re), styles[i].regex, REG_EXTENDED)) { -+ fprintf(stderr, "Could not compile regex: %s\n", styles[i].regex); -+ styles[i].regex = NULL; -+ } -+ styles[i].style = buildpath(styles[i].style); -+ } - - /* request handler */ - s = webkit_get_default_session(); -@@ -1282,13 +1309,12 @@ togglescrollbars(Client *c, const Arg *arg) { - - static void - togglestyle(Client *c, const Arg *arg) { -- WebKitWebSettings *settings; -- char *uri; -+ WebKitWebSettings *settings = webkit_web_view_get_settings(c->view); -+ char *path; - -- settings = webkit_web_view_get_settings(c->view); -- g_object_get(G_OBJECT(settings), "user-stylesheet-uri", &uri, NULL); -- uri = uri[0] ? g_strdup("") : g_strconcat("file://", stylefile, NULL); -- g_object_set(G_OBJECT(settings), "user-stylesheet-uri", uri, NULL); -+ g_object_get(G_OBJECT(settings), "user-stylesheet-uri", &path, NULL); -+ path = (path && path[0]) ? g_strdup("") : getstyle(geturi(c)); -+ g_object_set(G_OBJECT(settings), "user-stylesheet-uri", path, NULL); - - updatetitle(c); - } -@@ -1318,7 +1344,7 @@ gettogglestat(Client *c){ - togglestat[p++] = value? 'V': 'v'; - - g_object_get(G_OBJECT(settings), "user-stylesheet-uri", &uri, NULL); -- togglestat[p++] = uri[0] ? 'M': 'm'; -+ togglestat[p++] = (uri && uri[0]) ? 'M': 'm'; - - togglestat[p] = '\0'; - } -@@ -1377,7 +1403,7 @@ usage(void) { - die("usage: %s [-bBfFgGiIkKnNpPsSvx]" - " [-a cookiepolicies ] " - " [-c cookiefile] [-e xid] [-r scriptfile]" -- " [-t stylefile] [-u useragent] [-z zoomlevel]" -+ " [-u useragent] [-z zoomlevel]" - " [uri]\n", basename(argv0)); - } - -@@ -1472,9 +1498,6 @@ main(int argc, char *argv[]) { - case 'S': - enablescripts = 1; - break; -- case 't': -- stylefile = EARGF(usage()); -- break; - case 'u': - useragent = EARGF(usage()); - break; --- -2.0.5 -