mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 07:54:46 +00:00
added sitemap, rss feeds
This commit is contained in:
19
sitemap.xml
Executable file
19
sitemap.xml
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/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 + '/')
|
||||
Reference in New Issue
Block a user