2007-10-28 | paulb | raw annotate files changeset graph | [project @ 2007-10-28 22:22:07 by paulb] Updated release information. |
1 #!/usr/bin/env python 2 3 # Uncomment and adjust the paths below if WebStack is not installed somewhere 4 # on the PYTHONPATH. 5 6 #import sys 7 #sys.path.append("/home/paulb/Software/Python/WebStack") 8 #sys.path.append("/home/paulb/Software/Python/WebStack/examples/Common") 9 10 from WebStack.Adapters.WSGI import deploy_as_cgi 11 from Form import FormResource 12 13 deploy_as_cgi(FormResource(), handle_errors=0) 14 15 # vim: tabstop=4 expandtab shiftwidth=4