Automatically exported from code.google.com/p/planningalerts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
727 B

  1. #!/usr/bin/env python
  2. # This is the parser for %(full_name)s.
  3. # it is generated from the file CGITemplate
  4. import cgi
  5. import cgitb
  6. #cgitb.enable(display=0, logdir="/tmp")
  7. form = cgi.FieldStorage()
  8. day = form.getfirst('day')
  9. month = form.getfirst('month')
  10. year = form.getfirst('year')
  11. full_name = "%(full_name)s"
  12. short_name = "%(short_name)s"
  13. base_url = "%(base_url)s"
  14. #print "Content-Type: text/html" # HTML is following
  15. #print
  16. print "Content-Type: text/xml; charset=utf-8" # XML is following
  17. print
  18. import %(python_module)s
  19. parser = %(python_module)s.%(parser_class)s(full_name, short_name, base_url)
  20. xml = parser.getResults(day, month, year)
  21. print xml.encode("utf-8") # print the xml