WebStack

Change of examples/BaseHTTPRequestHandler/LoginApp.py

125:bd9989852fcc
examples/BaseHTTPRequestHandler/LoginApp.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/examples/BaseHTTPRequestHandler/LoginApp.py	Thu May 27 22:16:53 2004 +0000
     1.3 @@ -0,0 +1,16 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +from WebStack.Adapters import BaseHTTPRequestHandler
     1.7 +from Login import LoginResource, LoginAuthenticator
     1.8 +import BaseHTTPServer
     1.9 +
    1.10 +# Special magic incantation.
    1.11 +
    1.12 +handler = BaseHTTPRequestHandler.HandlerFactory(
    1.13 +    LoginResource(LoginAuthenticator("horses"))
    1.14 +)
    1.15 +address = ("", 8081)
    1.16 +server = BaseHTTPServer.HTTPServer(address, handler)
    1.17 +server.serve_forever()
    1.18 +
    1.19 +# vim: tabstop=4 expandtab shiftwidth=4