File:  [Public] / html5 / spec / get-all-annotations.py
Revision 1.1: download - view: text, annotated - select for diffs
Mon Jul 27 10:38:17 2009 UTC (15 years, 9 months ago) by mike
Branches: MAIN
CVS tags: HEAD
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()

Webmaster