home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2004 December
/
PCpro_2004_12.ISO
/
files
/
webserver
/
xampp
/
xampp-python-addon-1.4.9-installer.exe
/
index.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Python Source
|
2004-03-09
|
353 b
|
7 lines
from mod_python import apache
def handler(req):
req.content_type = "text/html"
req.write("<html><head><link href=\"../styles.css\" rel=\"stylesheet\" type=\"text/css\"></head><body>")
req.write(" <p><h1>Python is running with mod_python ...</h1>")
req.write("<b>... that is all ...</b><br><br><br>")
return apache.OK