brotherton-erpnext/index.cgi

41 lines
803 B
Plaintext
Raw Normal View History

2011-09-05 13:13:09 +00:00
#!/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
2012-02-01 09:17:29 +00:00
import webnotes.handler
import webnotes.auth
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
2012-02-06 09:58:48 +00:00
try:
webnotes.http_request = webnotes.auth.HTTPRequest()
except webnotes.AuthenticationError, e:
pass
2012-02-01 09:17:29 +00:00
def respond():
import webnotes
if 'cmd' in webnotes.form_dict:
webnotes.handler.handle()
else:
2012-02-07 08:01:09 +00:00
import webnotes.cms.index
2012-02-01 09:17:29 +00:00
print "Content-Type: text/html"
webnotes.handler.print_cookies()
print
2012-02-07 08:01:09 +00:00
print webnotes.cms.index.get()
2012-02-01 09:17:29 +00:00
if __name__=="__main__":
init()
2012-02-06 09:58:48 +00:00
respond()