Examples/modpython_dbg.py@1a6f8d9b63a5
Examples/modpython_dbg.py
Thu, 19 Jun 2014 10:00:53 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 19 Jun 2014 10:00:53 +0200
- changeset 3642
- 1a6f8d9b63a5
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Fixed an issue causing deleted alternate keyboard shortcuts not being reloaded correctly.
from mod_python import apache
apache.initDebugger('/Path/To/modpython_dbg.py')
def handler(req):
req.content_type = "text/plain"
req.send_http_header()
req.write("Hello World!\n")
return apache.OK