blob: f69724b493cf35dcaf563ec167c64bc6e6bd5abf [file] [log] [blame]
Rushabh Mehta518533f2012-02-07 13:29:31 +05301#!/usr/bin/python
2
3import cgi, cgitb, os, sys
4cgitb.enable()
5
6# import libs
7sys.path.append('lib/py')
8
9import webnotes
10import webnotes.auth
11
12if __name__=='__main__':
13 webnotes.http_request = webnotes.auth.HTTPRequest()
14 from webnotes.cms import feed
15 xml = feed.generate()
16 print 'Content-Type: text/xml'
17 print
18 print xml