Examples/modpython_dbg.py@f78ee0e8f96c
Examples/modpython_dbg.py
Sat, 26 Jan 2013 12:44:46 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 26 Jan 2013 12:44:46 +0100
- branch
- 5_3_x
- changeset 2374
- f78ee0e8f96c
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Regenerated the source docu with the HTML5 generator.
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