WebStack

examples/BaseHTTPRequestHandler/AuthApp.py

103:0915c78d3795
2004-04-24 paulb [project @ 2004-04-24 16:59:49 by paulb] Updated documentation slightly for 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