Annotation of html5/spec/get-all-annotations.py, revision 1.1

1.1     ! mike        1: #!/usr/bin/python
        !             2: import cgi
        !             3: import cgitb
        !             4: import urllib
        !             5: cgitb.enable()
        !             6: f = urllib.urlopen("http://www.whatwg.org/specs/web-apps/current-work/status.cgi?action=get-all-annotations")
        !             7: print "Content-Type: application/xml"
        !             8: print
        !             9: print f.read()
        !            10: f.close()

Webmaster