Automatically exported from code.google.com/p/planningalerts
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

30 lignes
733 B

  1. # This is the parser for %(authority_name)s.
  2. # it is generated from the file CGITemplate
  3. import cgi
  4. import cgitb
  5. #cgitb.enable(display=0, logdir="/tmp")
  6. form = cgi.FieldStorage()
  7. day = form.getfirst('day')
  8. month = form.getfirst('month')
  9. year = form.getfirst('year')
  10. authority_name = "%(authority_name)s"
  11. authority_short_name = "%(authority_short_name)s"
  12. base_url = "%(base_url)s"
  13. import PublicAccess
  14. parser = PublicAccess.PublicAccessParser(authority_name,
  15. authority_short_name,
  16. base_url)
  17. xml = parser.getResults(day, month, year)
  18. print "Content-Type: text/xml" # XML is following
  19. print
  20. print xml # print the xml