WebStack

examples/ModPython/SessionsApp/SessionsHandler.py

341:142b8a54f075
2005-04-11 paulb [project @ 2005-04-11 17:29:44 by paulb] Replaced debug with handle_errors.
     1 #!/usr/bin/env python     2      3 # NOTE: Path manipulation requires manual customisation.     4      5 import sys     6 sys.path.append("/home/paulb/Software/Python/WebStack")     7 sys.path.append("/home/paulb/Software/Python/WebStack/examples/Common")     8      9 from WebStack.Adapters import ModPython    10 from Sessions import SessionsResource    11     12 # NOTE: Not sure if the resource should be maintained in a resource pool.    13     14 resource = SessionsResource()    15     16 def handler(req):    17     global resource    18     return ModPython.respond(req, resource, handle_errors=0)    19     20 # vim: tabstop=4 expandtab shiftwidth=4