Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/19eb0517278f6e7a533903cc50037932a8cfbfb9
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/19eb0517278f6e7a533903cc50037932a8cfbfb9
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/19eb0517278f6e7a533903cc50037932a8cfbfb9

The branch, master has been updated
       via  19eb0517278f6e7a533903cc50037932a8cfbfb9 (commit)
      from  97f9e2d9f57048f524492392ad13b8806ee2b94f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=19eb0517278f6e7a533903cc50037932a8cfbfb9
commit 19eb0517278f6e7a533903cc50037932a8cfbfb9
Author: Michael Drake <michael.dr...@codethink.co.uk>
Commit: Michael Drake <michael.dr...@codethink.co.uk>

    HTTP authentication: Add some logging when opening 401 windows.

diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index 76ff4b1..f39a6ba 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -109,6 +109,9 @@ static nserror netsurf_llcache_query_handler(const 
llcache_query *query,
 
        switch (query->type) {
        case LLCACHE_QUERY_AUTH:
+               NSLOG(llcache, INFO, "HTTP Auth for: %s: %s",
+                               query->data.auth.realm,
+                               nsurl_access(query->url));
                guit->misc->login(query->url, query->data.auth.realm, cb, cbpw);
                break;
 


-----------------------------------------------------------------------

Summary of changes:
 desktop/netsurf.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index 76ff4b1..f39a6ba 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -109,6 +109,9 @@ static nserror netsurf_llcache_query_handler(const 
llcache_query *query,
 
        switch (query->type) {
        case LLCACHE_QUERY_AUTH:
+               NSLOG(llcache, INFO, "HTTP Auth for: %s: %s",
+                               query->data.auth.realm,
+                               nsurl_access(query->url));
                guit->misc->login(query->url, query->data.auth.realm, cb, cbpw);
                break;
 


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
netsurf-commits@netsurf-browser.org
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to