brotherton-erpnext/sitemap.xml
2012-02-07 13:29:31 +05:30

19 lines
442 B
XML
Executable File

#!/usr/bin/python
import cgi, cgitb, os, sys
cgitb.enable()
# import libs
sys.path.append('lib/py')
import webnotes
import webnotes.auth
if __name__=='__main__':
webnotes.http_request = webnotes.auth.HTTPRequest()
domain = os.environ.get('HTTP_HOST')
protocol = os.environ.get('HTTPS') and 'https://' or 'http://'
from webnotes.cms import sitemap
print 'Content-Type: text/xml'
print
print sitemap.generate(protocol + domain + '/')