changeset: 80:a77b4c033a8d
tag: tip
user: Enno Boland (tox) <tox_AT_s01.de>
date: Wed Sep 09 15:37:55 2009 +0200
files: surf.c
description:
reordering functions.
diff -r 809b817d5ed6 -r a77b4c033a8d surf.c
--- a/surf.c Wed Sep 09 14:02:11 2009 +0200
+++ b/surf.c Wed Sep 09 15:37:55 2009 +0200
@@ -71,7 +71,6 @@
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 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 @@
}
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 @@
}
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);
Received on Wed Sep 09 2009 - 13:36:21 UTC
This archive was generated by hypermail 2.2.0 : Wed Sep 09 2009 - 13:48:06 UTC