Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf-test.git/shortlog/7f27449422c6d68e02f0c9a830089e4e6a8d2b6b
...commit 
http://git.netsurf-browser.org/netsurf-test.git/commit/7f27449422c6d68e02f0c9a830089e4e6a8d2b6b
...tree 
http://git.netsurf-browser.org/netsurf-test.git/tree/7f27449422c6d68e02f0c9a830089e4e6a8d2b6b

The branch, master has been updated
       via  7f27449422c6d68e02f0c9a830089e4e6a8d2b6b (commit)
       via  080d27281b896ac629aeb5babf13615defbeb701 (commit)
      from  025d5c9ab36c5d5a527001163b775859c4e7b56f (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=7f27449422c6d68e02f0c9a830089e4e6a8d2b6b
commit 7f27449422c6d68e02f0c9a830089e4e6a8d2b6b
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    Find out if anything happens

diff --git a/cgi-bin/auth.cgi b/cgi-bin/auth.cgi
new file mode 100755
index 0000000..bdd58a2
--- /dev/null
+++ b/cgi-bin/auth.cgi
@@ -0,0 +1,12 @@
+#!/usr/bin/python3
+
+import cgi
+import cgitb
+cgitb.enable()
+
+auth = cgi.parse_header("Authorization")
+
+print("Content-Type: text/plain")
+print("")
+
+print(repr(auth))


commitdiff 
http://git.netsurf-browser.org/netsurf-test.git/commit/?id=080d27281b896ac629aeb5babf13615defbeb701
commit 080d27281b896ac629aeb5babf13615defbeb701
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    cgi-bin makefile

diff --git a/Makefile b/Makefile
index a0e6395..6294ad2 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,8 @@ DESTDIR?=/tmp
 .PHONY:install all
 
 all:
-       @echo "install target is probbaly what you want"
+       @echo "install target is probably what you want"
 
 install:
-       cp -a crashes haveproblems images other works ${DESTDIR}/html/
+       cp -a crashes haveproblems images other works "${DESTDIR}"/html/
+       cp -a cgi-bin/* "${DESTDIR}"/cgi-bin/


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

Summary of changes:
 Makefile         |    5 +++--
 cgi-bin/auth.cgi |   12 ++++++++++++
 2 files changed, 15 insertions(+), 2 deletions(-)
 create mode 100755 cgi-bin/auth.cgi

diff --git a/Makefile b/Makefile
index a0e6395..6294ad2 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,8 @@ DESTDIR?=/tmp
 .PHONY:install all
 
 all:
-       @echo "install target is probbaly what you want"
+       @echo "install target is probably what you want"
 
 install:
-       cp -a crashes haveproblems images other works ${DESTDIR}/html/
+       cp -a crashes haveproblems images other works "${DESTDIR}"/html/
+       cp -a cgi-bin/* "${DESTDIR}"/cgi-bin/
diff --git a/cgi-bin/auth.cgi b/cgi-bin/auth.cgi
new file mode 100755
index 0000000..bdd58a2
--- /dev/null
+++ b/cgi-bin/auth.cgi
@@ -0,0 +1,12 @@
+#!/usr/bin/python3
+
+import cgi
+import cgitb
+cgitb.enable()
+
+auth = cgi.parse_header("Authorization")
+
+print("Content-Type: text/plain")
+print("")
+
+print(repr(auth))


-- 
NetSurf test cases

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

Reply via email to