Examples/modpython.py@c16a52652af5
Examples/modpython.py
Mon, 15 Dec 2014 19:20:07 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Mon, 15 Dec 2014 19:20:07 +0100
- changeset 3970
- c16a52652af5
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Removed the Indent and Unindent action from the edit toolbar because these are readily available via the keyboard (tab and shift-tab).
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