|
- # This is the parser for %(authority_name)s.
- # it is generated from the file CGITemplate
-
- import cgi
- import cgitb
- #cgitb.enable(display=0, logdir="/tmp")
-
-
- form = cgi.FieldStorage()
- day = form.getfirst('day')
- month = form.getfirst('month')
- year = form.getfirst('year')
-
-
- authority_name = "%(authority_name)s"
- authority_short_name = "%(authority_short_name)s"
- base_url = "%(base_url)s"
-
- #print "Content-Type: text/html" # HTML is following
- #print
-
- import %(module)s
-
- parser = %(module)s.%(parser)s(authority_name, authority_short_name, base_url)
-
- xml = parser.getResults(day, month, year)
-
-
- print "Content-Type: text/xml; charset=utf-8" # XML is following
- print
- print xml.encode("utf-8") # print the xml
|