Examples/modpython.py@df109651b577
Examples/modpython.py
Thu, 05 Dec 2013 18:46:35 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 05 Dec 2013 18:46:35 +0100
- changeset 3126
- df109651b577
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Fixed an issue in Project.py causing a crash when creating a new project.
from mod_python import apache
def handler(req):
req.content_type = "text/plain"
req.send_http_header()
req.write("Hello World!\n")
return apache.OK