summaryrefslogtreecommitdiff
path: root/surf.c
diff options
context:
space:
mode:
authorEnno Boland (tox) <tox@s01.de>2009-09-09 15:37:55 +0200
committerEnno Boland (tox) <tox@s01.de>2009-09-09 15:37:55 +0200
commit22aa6291df01aad05d4376532788da4477c98bb5 (patch)
tree4253587a0e7854441f6dc57bc7496a9beeb3d3f7 /surf.c
parente1078c3fb3573a6b411e535ace3c54fc4cd47538 (diff)
downloadsurf-22aa6291df01aad05d4376532788da4477c98bb5.tar.gz
surf-22aa6291df01aad05d4376532788da4477c98bb5.tar.bz2
surf-22aa6291df01aad05d4376532788da4477c98bb5.zip
reordering functions.
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/surf.c b/surf.c
index c0debf0..3ff8af7 100644
--- a/surf.c
+++ b/surf.c
@@ -71,7 +71,6 @@ extern char *optarg;
extern gint optind;
static void cleanup(void);
-static void proccookies(SoupMessage *m, Client *c);
static void clipboard(Client *c, const Arg *arg);
static void destroyclient(Client *c);
static void destroywin(GtkWidget* w, Client *c);
@@ -95,6 +94,7 @@ static WebKitWebView *newwindow(WebKitWebView *v, WebKitWebFrame *f, Client *c)
static void pasteurl(GtkClipboard *clipboard, const gchar *text, gpointer d);
static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event, gpointer d);
static void print(Client *c, const Arg *arg);
+static void proccookies(SoupMessage *m, Client *c);
static void progresschange(WebKitWebView *view, gint p, Client *c);
static void request(SoupSession *s, SoupMessage *m, Client *c);
static void reload(Client *c, const Arg *arg);
@@ -122,21 +122,6 @@ cleanup(void) {
}
void
-proccookies(SoupMessage *m, Client *c) {
- GSList *l;
- SoupCookie *co;
- long t;
-
- rereadcookies();
- for (l = soup_cookies_from_response(m); l; l = l->next){
- co = (SoupCookie *)l->data;
- t = co->expires ? soup_date_to_time_t(co->expires) : 0;
- setcookie(co->name, co->value, co->domain, co->value, t);
- }
- g_slist_free(l);
-}
-
-void
clipboard(Client *c, const Arg *arg) {
gboolean paste = *(gboolean *)arg;
if(paste)
@@ -501,6 +486,21 @@ print(Client *c, const Arg *arg) {
}
void
+proccookies(SoupMessage *m, Client *c) {
+ GSList *l;
+ SoupCookie *co;
+ long t;
+
+ rereadcookies();
+ for (l = soup_cookies_from_response(m); l; l = l->next){
+ co = (SoupCookie *)l->data;
+ t = co->expires ? soup_date_to_time_t(co->expires) : 0;
+ setcookie(co->name, co->value, co->domain, co->value, t);
+ }
+ g_slist_free(l);
+}
+
+void
progresschange(WebKitWebView* view, gint p, Client *c) {
c->progress = p;
update(c, NULL);