Examples/modpython.py

Fri, 19 Dec 2014 14:53:51 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 19 Dec 2014 14:53:51 +0100
changeset 3975
12e8acffb2c8
parent 0
de9c2efb9d02
permissions
-rw-r--r--

Fixed an issue in restoring the side bar state.

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

eric ide

mercurial