Examples/modpython_dbg.py@0121b9ab8edb
Examples/modpython_dbg.py
Mon, 28 Jan 2013 19:24:14 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Mon, 28 Jan 2013 19:24:14 +0100
- changeset 2380
- 0121b9ab8edb
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Little enhancement to project to read eric4 project files without 'upgrading' them.
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