Automatically exported from code.google.com/p/planningalerts
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

32 строки
786 B

  1. #!/usr/local/bin/python
  2. # This is the parser for Milton Keynes Council.
  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. authority_name = "Milton Keynes Council"
  12. authority_short_name = "Milton Keynes"
  13. base_url = "http://publicaccess.milton-keynes.gov.uk/tdc/"
  14. import PublicAccess
  15. parser = PublicAccess.PublicAccessParser(authority_name,
  16. authority_short_name,
  17. base_url)
  18. xml = parser.getResults(day, month, year)
  19. print "Content-Type: text/xml" # XML is following
  20. print
  21. print xml # print the xml