changeset: 193:69eb0025cb01
tag: tip
user: pancake<nopcode.org>
date: Sat May 08 21:43:53 2010 +0200
files: config.def.h surf.c
description:
Do not set cookie session time if set to 0
Add NOBACKGROUND config.def.h option
- requires body {background-color} in style.css
- fixes white background when loading pages
diff -r 7497a6945a20 -r 69eb0025cb01 config.def.h
--- a/config.def.h Sun May 02 10:59:28 2010 +0200
+++ b/config.def.h Sat May 08 21:43:53 2010 +0200
@@ -6,7 +6,8 @@
static char *scriptfile = ".surf/script.js";
static char *cookiefile = ".surf/cookies.txt";
static char *dldir = ".surf/dl/";
-static time_t sessiontime = 3600;
+static time_t sessiontime = 0;
+#define NOBACKGROUND 0
#define SETPROP(p) { .v = (char *[]){ "/bin/sh", "-c", \
"prop=\"`xprop -id $1 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \
diff -r 7497a6945a20 -r 69eb0025cb01 surf.c
--- a/surf.c Sun May 02 10:59:28 2010 +0200
+++ b/surf.c Sat May 08 21:43:53 2010 +0200
@@ -567,6 +567,8 @@
g_free(uri);
setatom(c, findprop, "");
setatom(c, uriprop, "");
+ if(!NOBACKGROUND)
+ webkit_web_view_set_transparent(c->view, TRUE);
c->download = NULL;
c->title = NULL;
@@ -705,7 +707,7 @@
SoupDate *e;
SoupCookieJar *j = soup_cookie_jar_text_new(cookiefile, FALSE);
c = soup_cookie_copy(c);
- if(c->expires == NULL) {
+ if(c->expires == NULL && sessiontime) {
e = soup_date_new_from_time_t(time(NULL) + sessiontime);
soup_cookie_set_expires(c, e);
}
Received on Sat May 08 2010 - 19:50:03 UTC
This archive was generated by hypermail 2.2.0 : Sat May 08 2010 - 20:00:09 UTC