Examples/modpython.py@4b52a61c96f3
Examples/modpython.py
Sat, 16 Jan 2010 15:56:47 +0000
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 16 Jan 2010 15:56:47 +0000
- changeset 67
- 4b52a61c96f3
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Regenerated the translation files and did the German translations.
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