Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf-test.git/shortlog/2356f55cfa542b9583d869ef745bf585f6addc46
...commit 
http://git.netsurf-browser.org/netsurf-test.git/commit/2356f55cfa542b9583d869ef745bf585f6addc46
...tree 
http://git.netsurf-browser.org/netsurf-test.git/tree/2356f55cfa542b9583d869ef745bf585f6addc46

The branch, master has been updated
       via  2356f55cfa542b9583d869ef745bf585f6addc46 (commit)
      from  4867f21e7256f9e82d0d0240565e4eca89a8664d (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=2356f55cfa542b9583d869ef745bf585f6addc46
commit 2356f55cfa542b9583d869ef745bf585f6addc46
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    cookies.cgi: Log the counter and JSON for easier debug
    
    Signed-off-by: Daniel Silverstone <[email protected]>

diff --git a/cgi-bin/cookies.cgi b/cgi-bin/cookies.cgi
index ec2ed4f..be12589 100755
--- a/cgi-bin/cookies.cgi
+++ b/cgi-bin/cookies.cgi
@@ -54,6 +54,7 @@ function getCookie(cname) {
       if (counter === "") { counter = "0"; }
       var uploaded_counter = uploaded_cookies["counter"] || "0";
       document.write("<b>Cookie:</b> " + counter + "<br/><b>JSON:</b> " + 
uploaded_counter + "<br />");
+      console.error("Cookie: " + counter + " JSON: " + uploaded_counter);
       counter = parseInt(counter);
       counter = counter + 1;
       counter = counter.toString();


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

Summary of changes:
 cgi-bin/cookies.cgi |    1 +
 1 file changed, 1 insertion(+)

diff --git a/cgi-bin/cookies.cgi b/cgi-bin/cookies.cgi
index ec2ed4f..be12589 100755
--- a/cgi-bin/cookies.cgi
+++ b/cgi-bin/cookies.cgi
@@ -54,6 +54,7 @@ function getCookie(cname) {
       if (counter === "") { counter = "0"; }
       var uploaded_counter = uploaded_cookies["counter"] || "0";
       document.write("<b>Cookie:</b> " + counter + "<br/><b>JSON:</b> " + 
uploaded_counter + "<br />");
+      console.error("Cookie: " + counter + " JSON: " + uploaded_counter);
       counter = parseInt(counter);
       counter = counter + 1;
       counter = counter.toString();


-- 
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