Examples/modpython.py@c34ac31c84aa
Examples/modpython.py
Mon, 26 Mar 2012 19:38:22 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Mon, 26 Mar 2012 19:38:22 +0200
- branch
- 5_2_x
- changeset 1742
- c34ac31c84aa
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Fixed an issue in the terminal windows when non-latin1 characters are entered.
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