Gitweb links:
...log
http://git.netsurf-browser.org/netsurf-test.git/shortlog/5e648dafc3e71166192649c0c5a67640bc2f72c5
...commit
http://git.netsurf-browser.org/netsurf-test.git/commit/5e648dafc3e71166192649c0c5a67640bc2f72c5
...tree
http://git.netsurf-browser.org/netsurf-test.git/tree/5e648dafc3e71166192649c0c5a67640bc2f72c5
The branch, master has been updated
via 5e648dafc3e71166192649c0c5a67640bc2f72c5 (commit)
from d1ea258f5180843a6309cf63a860aad01b4c29b7 (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-test.git/commit/?id=5e648dafc3e71166192649c0c5a67640bc2f72c5
commit 5e648dafc3e71166192649c0c5a67640bc2f72c5
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>
How about python though?
diff --git a/cgi-bin/auth.cgi b/cgi-bin/auth.cgi
index e8c9fec..a4dfda9 100755
--- a/cgi-bin/auth.cgi
+++ b/cgi-bin/auth.cgi
@@ -4,7 +4,7 @@ import cgi
import cgitb
cgitb.enable()
-auth = cgi.parse_header(os.environ("HTTP_AUTHORIZATION"))
+auth = cgi.parse_header(os.getenv("HTTP_AUTHORIZATION") or "")
print("Content-Type: text/plain")
print("")
-----------------------------------------------------------------------
Summary of changes:
cgi-bin/auth.cgi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cgi-bin/auth.cgi b/cgi-bin/auth.cgi
index e8c9fec..a4dfda9 100755
--- a/cgi-bin/auth.cgi
+++ b/cgi-bin/auth.cgi
@@ -4,7 +4,7 @@ import cgi
import cgitb
cgitb.enable()
-auth = cgi.parse_header(os.environ("HTTP_AUTHORIZATION"))
+auth = cgi.parse_header(os.getenv("HTTP_AUTHORIZATION") or "")
print("Content-Type: text/plain")
print("")
--
NetSurf test cases
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org