2004-04-18 | paulb | raw annotate files changeset graph | [project @ 2004-04-18 23:42:54 by paulb] Added notes, particularly about cookies. |
1 #!/usr/bin/env python 2 3 from WebStack.Adapters import BaseHTTPRequestHandler 4 from Auth import AuthResource, AuthAuthenticator 5 import BaseHTTPServer 6 7 # Special magic incantation. 8 9 handler = BaseHTTPRequestHandler.HandlerFactory(AuthResource(), AuthAuthenticator()) 10 address = ("", 8080) 11 server = BaseHTTPServer.HTTPServer(address, handler) 12 server.serve_forever() 13 14 # vim: tabstop=4 expandtab shiftwidth=4