html5/spec get-all-annotations.py,NONE,1.1

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv25062

Added Files:
	get-all-annotations.py 
Log Message:
added proxy script for retrieving annotations


--- NEW FILE: get-all-annotations.py ---
#!/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()

Received on Monday, 27 July 2009 10:38:30 UTC