# HG changeset patch # User paulb # Date 1085931245 0 # Node ID c617a9e3f55dfb5fdd434b1b7ceeb84b1e86e3b6 # Parent 76d2b279896cc66ad40cc959405623b9b2950440 [project @ 2004-05-30 15:33:59 by paulb] Introduced anonymous user details into the login application. diff -r 76d2b279896c -r c617a9e3f55d examples/CGI/LoginHandler.py --- a/examples/CGI/LoginHandler.py Sun May 30 15:33:55 2004 +0000 +++ b/examples/CGI/LoginHandler.py Sun May 30 15:34:05 2004 +0000 @@ -16,7 +16,8 @@ ("badger", "abc"), ("vole", "xyz"), ) - ) + ), + anonymous_parameter_name="anonymous" ) CGI.respond(resource) diff -r 76d2b279896c -r c617a9e3f55d examples/ModPython/LoginApp/LoginHandler.py --- a/examples/ModPython/LoginApp/LoginHandler.py Sun May 30 15:33:55 2004 +0000 +++ b/examples/ModPython/LoginApp/LoginHandler.py Sun May 30 15:34:05 2004 +0000 @@ -19,6 +19,7 @@ ("vole", "xyz"), ) ), + anonymous_parameter_name="anonymous", use_redirect=0 ) diff -r 76d2b279896c -r c617a9e3f55d examples/Twisted/LoginApp.py --- a/examples/Twisted/LoginApp.py Sun May 30 15:33:55 2004 +0000 +++ b/examples/Twisted/LoginApp.py Sun May 30 15:34:05 2004 +0000 @@ -14,7 +14,8 @@ ("badger", "abc"), ("vole", "xyz"), ) - ) + ), + anonymous_parameter_name="anonymous" ) top_level = Twisted.Dispatcher(resource) diff -r 76d2b279896c -r c617a9e3f55d examples/Webware/LoginApp/__init__.py --- a/examples/Webware/LoginApp/__init__.py Sun May 30 15:33:55 2004 +0000 +++ b/examples/Webware/LoginApp/__init__.py Sun May 30 15:34:05 2004 +0000 @@ -18,7 +18,8 @@ ("badger", "abc"), ("vole", "xyz"), ) - ) + ), + anonymous_parameter_name="anonymous" ) def InstallInWebKit(appServer): diff -r 76d2b279896c -r c617a9e3f55d examples/Webware/LoginContext/__init__.py --- a/examples/Webware/LoginContext/__init__.py Sun May 30 15:33:55 2004 +0000 +++ b/examples/Webware/LoginContext/__init__.py Sun May 30 15:34:05 2004 +0000 @@ -16,7 +16,8 @@ ("badger", "abc"), ("vole", "xyz"), ) - ) + ), + anonymous_parameter_name="anonymous" ) urlParser = WebStackURLParser(resource)