#!/usr/local/bin/python # Feeping Creaturism # # Douglas Thrift # # $Id$ import cgi import cgitb import sys import os cgitb.enable() form = cgi.FieldStorage() args = sys.argv if form.getfirst('include') in ('true', '1'): args.append('include') relative = form.getfirst('relative') if relative is not None: args += ('relative', relative) os.execv(os.path.join(os.path.dirname(__file__), 'FeepingCreaturism'), args)