Examples/modpython.py@62fb6a42cd7c
Examples/modpython.py
Sat, 17 Mar 2012 13:03:30 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 17 Mar 2012 13:03:30 +0100
- changeset 1709
- 62fb6a42cd7c
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Fixed another issue in the subversion List Properties dialog.
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