XSLTools

examples/BaseHTTPRequestHandler/PEP241App.py

629:0e64b3877358
2007-09-18 paulb [project @ 2007-09-18 21:41:42 by paulb] Added libxml2dom as a build dependency.
     1 #!/usr/bin/env python     2      3 from WebStack.Adapters.BaseHTTPRequestHandler import deploy     4 import PEP241     5      6 # Get a simple Web site.     7      8 resource = PEP241.get_site()     9     10 # Special magic incantation.    11     12 print "Serving..."    13 deploy(resource, handle_errors=0)    14     15 # vim: tabstop=4 expandtab shiftwidth=4