blob: d618250ae476d3e93d37a3179a3a61a77db9c626 [file] [log] [blame]
#!/usr/bin/python
# main handler file
import cgi, cgitb, os, sys
cgitb.enable()
# import libs
sys.path.append('lib/py')
sys.path.append('erpnext')
import webnotes
import webnotes.handler
import webnotes.auth
import webnotes.defs
def init():
# make the form_dict
webnotes.form = cgi.FieldStorage(keep_blank_values=True)
for key in webnotes.form.keys():
webnotes.form_dict[key] = webnotes.form.getvalue(key)
# init request
try:
webnotes.http_request = webnotes.auth.HTTPRequest()
except webnotes.AuthenticationError, e:
pass
except webnotes.defs.IllegalDomainException, e:
print "Location: " + (webnotes.defs.redirect_404)
def respond():
import webnotes
if 'cmd' in webnotes.form_dict:
webnotes.handler.handle()
else:
import webnotes.cms.index
print "Content-Type: text/html"
webnotes.handler.print_cookies()
print
print webnotes.cms.index.get()
if __name__=="__main__":
init()
respond()