- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 20 Apr 2011 11:44:12 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view In directory hutz:/tmp/cvs-serv30785 Modified Files: Makefile spec.html Log Message: Rework MediaController so that it exposes more events so that you can keep track of the overall state. (whatwg r6018) [updated by splitter] Index: spec.html =================================================================== RCS file: /sources/public/html5/spec-author-view/spec.html,v retrieving revision 1.1355 retrieving revision 1.1356 diff -u -d -r1.1355 -r1.1356 --- spec.html 20 Apr 2011 00:54:16 -0000 1.1355 +++ spec.html 20 Apr 2011 11:44:08 -0000 1.1356 @@ -599,26 +599,26 @@ <ol><li><a href="#documents"><span class="secno">3.1 </span>Documents</a> <ol><li><a href="#documents-in-the-dom"><span class="secno">3.1.1 </span>Documents in the DOM</a></li> <li><a href="#security-document"><span class="secno">3.1.2 </span>Security</a></li> - <li><a href="#resource-metadata-management" id="x3.1.3-resource-metadata-management"><span class="secno">3.1.3 </span>Resource metadata management</a></li> - <li><a href="#dom-tree-accessors" id="x3.1.4-dom-tree-accessors"><span class="secno">3.1.4 </span>DOM tree accessors</a></li> + <li><a href="#resource-metadata-management"><span class="secno">3.1.3 </span>Resource metadata management</a></li> + <li><a href="#dom-tree-accessors"><span class="secno">3.1.4 </span>DOM tree accessors</a></li> <li><a href="#creating-documents"><span class="secno">3.1.5 </span>Creating documents</a></li> <li><a href="http://dev.w3.org/html5/spec/dom.html#loading-xml-documents" class="full-spec-link" title='Read about this "3.1.6 Loading XML documents" reference in the full HTML5 spec.'><span class="secno">3.1.6 </span>Loading XML documents</a></li></ol></li> <li><a href="#elements"><span class="secno">3.2 </span>Elements</a> <ol><li><a href="#semantics-0"><span class="secno">3.2.1 </span>Semantics</a></li> [...52572 lines suppressed...] -<a href="#index-terms_V">V</a> -<a href="#index-terms_W">W</a> -<a href="#index-terms_X">X</a> -<a href="#index-terms_end">end</a> -</p> -</div> -</div><!--end-index-terms--><h2 class="no-num" id="references">References</h2><p>All references are normative unless marked "Non-normative".</p><dl><dt id="refsABNF">[ABNF]</dt> + and <a href="#dndevents">drag-and-drop events</a>.</p><h2 class="no-num" id="index-of-terms">Index of terms</h2><!--index-terms--><h2 class="no-num" id="references">References</h2><p>All references are normative unless marked "Non-normative".</p><dl><dt id="refsABNF">[ABNF]</dt> <dd><cite><a href="http://www.ietf.org/rfc/std/std68.txt">Augmented BNF for Syntax Specifications: ABNF</a></cite>, D. Crocker, P. Overell. IETF.</dd> @@ -55674,7 +29236,7 @@ </p><p>Special thanks to Richard Williamson for creating the first implementation of <code><a href="#the-canvas-element">canvas</a></code> in Safari, from which the canvas feature was designed.</p><p>Special thanks also to the Microsoft employees who first - implemented the event-based drag-and-drop mechanism, <code title="attr-contenteditable"><a href="#attr-contenteditable" id="contenteditable-3">contenteditable</a></code>, and other + implemented the event-based drag-and-drop mechanism, <code title="attr-contenteditable"><a href="#attr-contenteditable">contenteditable</a></code>, and other features first widely deployed by the Windows Internet Explorer browser.</p><p>Thanks to the many sources that provided inspiration for the examples used in the specification.</p><p>Thanks also to the Microsoft blogging community for some ideas, Index: Makefile =================================================================== RCS file: /sources/public/html5/spec-author-view/Makefile,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- Makefile 19 Aug 2010 22:24:01 -0000 1.35 +++ Makefile 20 Apr 2011 11:44:08 -0000 1.36 @@ -18,8 +18,8 @@ HTML5=../spec SPLITTER=html5-tools/spec-splitter/spec-splitter.py -#SPLITTERFLAGS=--w3c --html5lib-serialiser -SPLITTERFLAGS=--w3c --html5lib-serialiser --make-index-of-terms +#SPLITTERFLAGS=--w3c --html5lib-serialiser --make-index-of-terms +SPLITTERFLAGS=--w3c --html5lib-serialiser WHATWGSTYLE = whatwg.css # http://mercurial.selenic.com/wiki/ @@ -37,9 +37,14 @@ $(HTML5)/Overview.html > $@ spec.html: spec.preprocessed.html tools/postprocess.xsl +# $(PYTHON) anolis/anolis \ +# --parser=lxml.html \ +# --enable terms \ +# --filter=.impl \ +# --output-encoding="ascii" \ +# $< $@.tmp $(PYTHON) anolis/anolis \ --parser=lxml.html \ - --enable terms \ --filter=.impl \ --output-encoding="ascii" \ $< $@.tmp
Received on Wednesday, 20 April 2011 11:44:18 UTC