Examples/modpython.py@1e8abbfe11c7
Examples/modpython.py
Sat, 06 Dec 2014 13:03:59 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 06 Dec 2014 13:03:59 +0100
- branch
- 5_5_x
- changeset 3961
- 1e8abbfe11c7
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Added code to set the 'fill to end of line' setting for the current selection.
(grafted from 50e92e127159ca06c1a1fcaa73d437080c3640ed)
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