[hackers] [surf] gotheaders will now be called correctly. || Enno Boland (tox)

From: <hg_AT_suckless.org>
Date: Wed, 24 Mar 2010 21:03:14 +0000 (UTC)

changeset: 184:515c459dd475
tag: tip
user: Enno Boland (tox) <tox_AT_s01.de>
date: Wed Mar 24 22:04:36 2010 +0100
files: surf.c
description:
gotheaders will now be called correctly.

diff -r b6a3be924437 -r 515c459dd475 surf.c
--- a/surf.c Wed Mar 24 21:05:11 2010 +0100
+++ b/surf.c Wed Mar 24 22:04:36 2010 +0100
@@ -353,6 +353,8 @@
 initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) {
         const char *filename;
         char *uri, *html;
+ WebKitWebBackForwardList *h;
+ WebKitWebHistoryItem *i;
 
         stop(c, NULL);
         c->download = o;
@@ -366,6 +368,9 @@
         html = g_strdup_printf("Download <b>%s</b>...", filename);
         webkit_web_view_load_html_string(c->view, html,
                         webkit_download_get_uri(c->download));
+ h = webkit_web_view_get_back_forward_list(c->view);
+ i = webkit_web_history_item_new_with_data(webkit_download_get_uri(c->download), filename);
+ webkit_web_back_forward_list_add_item(h, i);
         g_signal_connect(c->download, "notify::progress", G_CALLBACK(updatedownload), c);
         g_signal_connect(c->download, "notify::status", G_CALLBACK(updatedownload), c);
         webkit_download_start(c->download);
@@ -587,6 +592,7 @@
         if((c = getcookies(uri))) {
                 soup_message_headers_append(h, "Cookie", c);
         }
+ g_signal_connect_after(G_OBJECT(msg), "got-headers", G_CALLBACK(gotheaders), NULL);
 }
 
 void
@@ -739,7 +745,6 @@
         soup_session_remove_feature_by_type(s, soup_cookie_get_type());
         soup_session_remove_feature_by_type(s, soup_cookie_jar_get_type());
         g_signal_connect_after(G_OBJECT(s), "request-started", G_CALLBACK(newrequest), NULL);
- g_signal_connect_after(G_OBJECT(s), "got-headers", G_CALLBACK(gotheaders), NULL);
 
 
         /* proxy */
Received on Wed Mar 24 2010 - 21:03:14 UTC

This archive was generated by hypermail 2.2.0 : Wed Mar 24 2010 - 21:12:25 UTC