示例#1
0
def init():
    g['cgi'] = bwCGI()
    g['cgi'].send_header()
    g['vars'] = g['cgi'].vars()
    g['linkback'] = g['cgi'].linkback()
    g['config'] = configFile(g['config_file']).recs()
    g['tl'] = tlFile(None, showUnknowns = True)
    g['db'] = bwDB( filename = g['config']['db'], table = g['table_name'] )
示例#2
0
def init():
    g["cgi"] = bwCGI()
    g["cgi"].send_header()
    g["vars"] = g["cgi"].vars()
    g["linkback"] = g["cgi"].linkback()
    g["config"] = configFile(g["config_file"]).recs()
    g["tl"] = tlFile(None, showUnknowns=True)
    g["db"] = bwDB(filename=g["config"]["db"], table=g["table_name"])
示例#3
0
def init():
    g['cgi'] = bwCGI()
    g['vars'] = g['cgi'].vars()
    g['config'] = configFile(g['config_file']).recs()
    g['db'] = bwDB(filename=g['config']['db'], table=g['table_name'])
示例#4
0
def init():
    g['cgi'] = bwCGI()
    g['vars'] = g['cgi'].vars()
    g['config'] = configFile(g['config_file']).recs()
    g['db'] = bwDB(filename = g['config']['db'], table = g['table_name'])
示例#5
0
def init():
    g["cgi"] = bwCGI()
    g["vars"] = g["cgi"].vars()
    g["config"] = configFile(g["config_file"]).recs()
    g["db"] = bwDB(filename=g["config"]["db"], table=g["table_name"])
示例#6
0
#!/usr/bin/python3
# cgi-test.py by Bill Weinman [http://bw.org/]
# Python versoin with bwCGI support
# Copyright 1995-2012 The BearHeart Group, LLC

import sys, os
import bwCGI

version = "5.4.1/py bwCGI/{}".format(bwCGI.__version__)
cgi = bwCGI.bwCGI()

for s in (
    "Content-type: text/plain", '',
    "BW Test version: {}".format(version),
    "Copyright 1995-2012 The BearHeart Group, LLC",
    "\nVersions:\n=================",
    "Python: {}".format(sys.version.split(' ')[0])
) :
    print(s)

form = cgi.vars()
if form :
    print("\nQuery Variables:\n=================")
    for k in sorted(form) :
        v = ']['.join(form.getlist(k))  # multiple items as [a][b][c]...
        print("{} [{}]".format(k, v))

print("\nEnvironment Variables:\n=================")
for k in sorted(os.environ.keys()) :
    v = os.environ[k]
    print("{} [{}]".format(k, v))