Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/22ae220bf618a2be98142fde365201ca2142853b
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/22ae220bf618a2be98142fde365201ca2142853b
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/22ae220bf618a2be98142fde365201ca2142853b

The branch, master has been updated
       via  22ae220bf618a2be98142fde365201ca2142853b (commit)
      from  4094232e3d3b877c62d04be87f749e7d2dcbf82d (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=22ae220bf618a2be98142fde365201ca2142853b
commit 22ae220bf618a2be98142fde365201ca2142853b
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    fix atari removal of login window

diff --git a/frontends/atari/Makefile b/frontends/atari/Makefile
index ee493ee..7a3573d 100644
--- a/frontends/atari/Makefile
+++ b/frontends/atari/Makefile
@@ -96,7 +96,6 @@ S_FRONTEND := \
        gui.c \
        hotlist.c \
        history.c \
-       login.c \
        misc.c \
        osspec.c \
        redrawslots.c \
diff --git a/frontends/atari/gui.c b/frontends/atari/gui.c
index 8e80ef3..64e83fc 100644
--- a/frontends/atari/gui.c
+++ b/frontends/atari/gui.c
@@ -761,35 +761,6 @@ static void gui_set_clipboard(const char *buffer, size_t 
length,
     }
 }
 
-static nserror gui_401login_open(nsurl *url, const char *realm,
-        const char *username, const char *password,
-        nserror (*cb)(const char *username,
-                const char *password,
-                void *pw),
-        void *cbpw)
-{
-    bool bres;
-    char * u_out = NULL;
-    char * p_out = NULL;
-
-    bres = login_form_do(url, (char*)realm, &u_out, &p_out);
-    if (bres) {
-        NSLOG(netsurf, INFO, "url: %s, realm: %s, auth: %s:%s\n",
-                nsurl_access(url), realm, u_out, p_out);
-    }
-    if (cb != NULL) {
-        cb(u_out, p_out, cbpw);
-    }
-    if (u_out != NULL) {
-        free(u_out);
-    }
-    if (p_out != NULL) {
-        free(p_out);
-    }
-
-    return NSERROR_OK;
-}
-
 static nserror
 gui_cert_verify(nsurl *url, const struct ssl_cert_info *certs,
                unsigned long num, nserror (*cb)(bool proceed, void *pw),


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

Summary of changes:
 frontends/atari/Makefile |    1 -
 frontends/atari/gui.c    |   29 -----------------------------
 2 files changed, 30 deletions(-)

diff --git a/frontends/atari/Makefile b/frontends/atari/Makefile
index ee493ee..7a3573d 100644
--- a/frontends/atari/Makefile
+++ b/frontends/atari/Makefile
@@ -96,7 +96,6 @@ S_FRONTEND := \
        gui.c \
        hotlist.c \
        history.c \
-       login.c \
        misc.c \
        osspec.c \
        redrawslots.c \
diff --git a/frontends/atari/gui.c b/frontends/atari/gui.c
index 8e80ef3..64e83fc 100644
--- a/frontends/atari/gui.c
+++ b/frontends/atari/gui.c
@@ -761,35 +761,6 @@ static void gui_set_clipboard(const char *buffer, size_t 
length,
     }
 }
 
-static nserror gui_401login_open(nsurl *url, const char *realm,
-        const char *username, const char *password,
-        nserror (*cb)(const char *username,
-                const char *password,
-                void *pw),
-        void *cbpw)
-{
-    bool bres;
-    char * u_out = NULL;
-    char * p_out = NULL;
-
-    bres = login_form_do(url, (char*)realm, &u_out, &p_out);
-    if (bres) {
-        NSLOG(netsurf, INFO, "url: %s, realm: %s, auth: %s:%s\n",
-                nsurl_access(url), realm, u_out, p_out);
-    }
-    if (cb != NULL) {
-        cb(u_out, p_out, cbpw);
-    }
-    if (u_out != NULL) {
-        free(u_out);
-    }
-    if (p_out != NULL) {
-        free(p_out);
-    }
-
-    return NSERROR_OK;
-}
-
 static nserror
 gui_cert_verify(nsurl *url, const struct ssl_cert_info *certs,
                unsigned long num, nserror (*cb)(bool proceed, void *pw),


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to