# HG changeset patch # User paulb # Date 1085932729 0 # Node ID a2f3a6b21a3daeb833ce38e90054c5ce5c382de6 # Parent ef8ed7f6e97abd927300a1798fe8dfaaf79b2976 [project @ 2004-05-30 15:58:42 by paulb] Removed anonymous user details from the login example. diff -r ef8ed7f6e97a -r a2f3a6b21a3d examples/BaseHTTPRequestHandler/LoginApp.py --- a/examples/BaseHTTPRequestHandler/LoginApp.py Sun May 30 15:58:18 2004 +0000 +++ b/examples/BaseHTTPRequestHandler/LoginApp.py Sun May 30 15:58:49 2004 +0000 @@ -14,8 +14,7 @@ ("badger", "abc"), ("vole", "xyz"), ) - ), - anonymous_parameter_name="anonymous" + ) ) ) address = ("", 8081) diff -r ef8ed7f6e97a -r a2f3a6b21a3d examples/CGI/LoginHandler.py --- a/examples/CGI/LoginHandler.py Sun May 30 15:58:18 2004 +0000 +++ b/examples/CGI/LoginHandler.py Sun May 30 15:58:49 2004 +0000 @@ -16,8 +16,7 @@ ("badger", "abc"), ("vole", "xyz"), ) - ), - anonymous_parameter_name="anonymous" + ) ) CGI.respond(resource) diff -r ef8ed7f6e97a -r a2f3a6b21a3d examples/ModPython/LoginApp/LoginHandler.py --- a/examples/ModPython/LoginApp/LoginHandler.py Sun May 30 15:58:18 2004 +0000 +++ b/examples/ModPython/LoginApp/LoginHandler.py Sun May 30 15:58:49 2004 +0000 @@ -19,7 +19,6 @@ ("vole", "xyz"), ) ), - anonymous_parameter_name="anonymous", use_redirect=0 ) diff -r ef8ed7f6e97a -r a2f3a6b21a3d examples/Twisted/LoginApp.py --- a/examples/Twisted/LoginApp.py Sun May 30 15:58:18 2004 +0000 +++ b/examples/Twisted/LoginApp.py Sun May 30 15:58:49 2004 +0000 @@ -14,8 +14,7 @@ ("badger", "abc"), ("vole", "xyz"), ) - ), - anonymous_parameter_name="anonymous" + ) ) top_level = Twisted.Dispatcher(resource) diff -r ef8ed7f6e97a -r a2f3a6b21a3d examples/Webware/LoginApp/__init__.py --- a/examples/Webware/LoginApp/__init__.py Sun May 30 15:58:18 2004 +0000 +++ b/examples/Webware/LoginApp/__init__.py Sun May 30 15:58:49 2004 +0000 @@ -18,8 +18,7 @@ ("badger", "abc"), ("vole", "xyz"), ) - ), - anonymous_parameter_name="anonymous" + ) ) def InstallInWebKit(appServer): diff -r ef8ed7f6e97a -r a2f3a6b21a3d examples/Webware/LoginContext/__init__.py --- a/examples/Webware/LoginContext/__init__.py Sun May 30 15:58:18 2004 +0000 +++ b/examples/Webware/LoginContext/__init__.py Sun May 30 15:58:49 2004 +0000 @@ -16,8 +16,7 @@ ("badger", "abc"), ("vole", "xyz"), ) - ), - anonymous_parameter_name="anonymous" + ) ) urlParser = WebStackURLParser(resource)