moved index to webnotes/cms

This commit is contained in:
Rushabh Mehta 2012-02-07 13:31:09 +05:30
parent 518533fde0
commit 8ebf4e27ef

View File

@ -32,11 +32,11 @@ def respond():
if 'cmd' in webnotes.form_dict:
webnotes.handler.handle()
else:
import webnotes.index
import webnotes.cms.index
print "Content-Type: text/html"
webnotes.handler.print_cookies()
print
print webnotes.index.get()
print webnotes.cms.index.get()
if __name__=="__main__":
init()