代码搜索:cgi
找到约 10,000 项符合「cgi」的源代码
代码结果 10,000
www.eeworm.com/read/225747/14518128
c cgi.c
/*
* Boa, an http server
* Copyright (C) 1995 Paul Phillips
* Some changes Copyright (C) 1996,97 Larry Doolittle
* Some changes Copyright (C) 1996 Charles
www.eeworm.com/read/123453/14630425
cgi fortune.cgi
#!/usr/bin/python
FORTUNE_MAX_TRIES = 10
SMS_MAX = 160
import os, string, sys
def fortune():
for i in range(FORTUNE_MAX_TRIES):
f = os.popen("/usr/games/fortune", "r")
data = f.read()
f.clos
www.eeworm.com/read/123453/14630452
cgi smstomail.cgi
#!/usr/bin/python
MAIL_SENDER = "liw"
MAIL_RECEIVER = "liw"
import cgi, os, string
class Vars:
def __init__(self):
self._dict = cgi.FieldStorage()
def __getitem__(self, key):
ret
www.eeworm.com/read/123453/14630455
cgi ping.cgi
#!/usr/bin/python
"""PING cgi.
Gets the name or IP number of a host as CGI argument. Returns as
plain text the output of the ping command for that host.
Lars Wirzenius
"""
import o
www.eeworm.com/read/123453/14630986
cgi fortune.cgi
#!/usr/bin/python
FORTUNE_MAX_TRIES = 10
SMS_MAX = 160
import os, string, sys
def fortune():
for i in range(FORTUNE_MAX_TRIES):
f = os.popen("/usr/games/fortune", "r")
data = f.read()
f.clos
www.eeworm.com/read/123453/14631012
cgi smstomail.cgi
#!/usr/bin/python
MAIL_SENDER = "liw"
MAIL_RECEIVER = "liw"
import cgi, os, string
class Vars:
def __init__(self):
self._dict = cgi.FieldStorage()
def __getitem__(self, key):
ret