![]() ![]() | ![]() |
added proxy script for retrieving annotations
#!/usr/bin/python import cgi import cgitb import urllib cgitb.enable() f = urllib.urlopen("http://www.whatwg.org/specs/web-apps/current-work/status.cgi?action=get-all-annotations") print "Content-Type: application/xml" print print f.read() f.close()