- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 27 Jul 2009 10:38:19 +0000
- To: public-html-commits@w3.org
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