summaryrefslogtreecommitdiff
path: root/surf.c
diff options
context:
space:
mode:
authorEnno Boland (tox) <tox@s01.de>2010-03-24 22:04:36 +0100
committerEnno Boland (tox) <tox@s01.de>2010-03-24 22:04:36 +0100
commit19aaa5a74b16fd6fafbfaf6081e4f89491f0f344 (patch)
tree343acdd00335903fc28ab1cbe661a3e71c66f5b9 /surf.c
parent3434ccc16a9a033c17efffb2e83964bb29096ab9 (diff)
downloadsurf-19aaa5a74b16fd6fafbfaf6081e4f89491f0f344.tar.gz
surf-19aaa5a74b16fd6fafbfaf6081e4f89491f0f344.tar.bz2
surf-19aaa5a74b16fd6fafbfaf6081e4f89491f0f344.zip
gotheaders will now be called correctly.
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/surf.c b/surf.c
index b3b4f91..37135d8 100644
--- a/surf.c
+++ b/surf.c
@@ -353,6 +353,8 @@ gboolean
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 @@ initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) {
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 @@ newrequest(SoupSession *s, SoupMessage *msg, gpointer v) {
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 @@ setup(void) {
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 */