- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 05 Jan 2012 02:33:29 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec/tools In directory hutz:/tmp/cvs-serv27048/tools Modified Files: spec-splitter.py Log Message: Make the <input type> values for the various states more obvious. (whatwg r6878) [updated by splitter] Index: spec-splitter.py =================================================================== RCS file: /sources/public/html5/spec/tools/spec-splitter.py,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- spec-splitter.py 10 Dec 2011 12:19:42 -0000 1.10 +++ spec-splitter.py 5 Jan 2012 02:33:27 -0000 1.11 @@ -171,7 +171,8 @@ # Create an empty body, for the page content to be added into later default_body = etree.Element('body') if original_body.get('class'): default_body.set('class', original_body.get('class')) -if original_body.get('onload'): default_body.set('onload', 'fixBrokenLink(); %s' % original_body.get('onload')) +default_body.set('onload', 'fixBrokenLink(); %s' % original_body.get('onload')) +#if original_body.get('onload'): default_body.set('onload', 'fixBrokenLink(); %s' % original_body.get('onload')) original_body.getparent().replace(original_body, default_body) # Extract the header, so we can reuse it in every page
Received on Thursday, 5 January 2012 02:35:36 UTC