html5/spec-author-view spec.html,1.1622,1.1623 spec.preprocessed.html,1.475,1.476

Update of /sources/public/html5/spec-author-view
In directory hutz:/tmp/cvs-serv12880

Modified Files:
	spec.html spec.preprocessed.html 
Log Message:
Attempt to reorganise the rendering section to make it more usable for implementors (whatwg r6276)

[updated by splitter]


Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.html,v
retrieving revision 1.1622
retrieving revision 1.1623
diff -u -d -r1.1622 -r1.1623
--- spec.html	5 Jul 2011 17:23:51 -0000	1.1622
+++ spec.html	6 Jul 2011 03:55:09 -0000	1.1623
@@ -1,63956 +0,0 @@
-<!doctype html>
-<html lang="en-US-x-Hixie"><head><meta content="text/html; charset=utf-8" http-equiv="Content-Type"><title>HTML5: Edition for Web Authors</title><link href="whatwg.css" rel="stylesheet"><style type="text/css">
-   pre { margin-left: 2em; white-space: pre-wrap; }
-   h2 { margin: 3em 0 1em 0; }
-   h3 { margin: 2.5em 0 1em 0; }
-   h4 { margin: 2.5em 0 0.75em 0; }
-   h5, h6 { margin: 2.5em 0 1em; }
-   h1 + h2, h1 + h2 + h2 { margin: 0.75em 0 0.75em; }
-   h2 + h3, h3 + h4, h4 + h5, h5 + h6 { margin-top: 0.5em; }
-   p { margin: 1em 0; }
-   hr:not(.top) { display: block; background: none; border: none; padding: 0; margin: 2em 0; height: auto; }
[...63925 lines suppressed...]
-  for their useful comments, both large and small, that have led to
-  changes to this specification over the years.</p><p>Thanks also to everyone who has ever posted about HTML to their
-  blogs, public mailing lists, or forums, including all the
-  contributors to the <a href="http://www.w3.org/html/wg/lists/">various W3C HTML WG
-  lists</a> and the <a href="http://www.whatwg.org/mailing-list">various WHATWG lists</a>.
-
-  </p><p>Special thanks to Richard Williamson for creating the first
-  implementation of <code><a href="#the-canvas-element" id="canvas_27">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
-  features first widely deployed by the Windows Internet Explorer
-  browser.</p><p>Thanks to the SubRip community, including in particular Zuggy and
-  ai4spam, for their work on the SubRip software program whose SRT
-  file format was used as the basis for the WebVTT text track file
-  format.</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,
-  to the attendees of the W3C Workshop on Web Applications and
-  Compound Documents for inspiration, to the #mrt crew, the #mrt.no
-  crew, and the #whatwg crew, and to Pillar and Hedral for their ideas
-  and support.</p></body></html>

Index: spec.preprocessed.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.preprocessed.html,v
retrieving revision 1.475
retrieving revision 1.476
diff -u -d -r1.475 -r1.476
--- spec.preprocessed.html	5 Jul 2011 16:53:26 -0000	1.475
+++ spec.preprocessed.html	6 Jul 2011 03:55:15 -0000	1.476
@@ -1737,7 +1737,16 @@
   two strings as matches of each other.</p><h3 id="common-microsyntaxes"><span class="secno">2.5 </span>Common microsyntaxes</h3><p>There are various places in HTML that accept particular data
   types, such as dates or numbers. This section describes what the
   conformance criteria for content in those formats is, and how to
-  parse them.</p><h4 id="boolean-attributes"><span class="secno">2.5.2 </span>Boolean attributes</h4><p>A number of attributes are <dfn id="boolean-attribute" role="button" tabindex="0" aria-haspopup="true">boolean
+  parse them.</p><div><h4 id="common-parser-idioms"><span class="secno">2.5.1 </span>Common parser idioms</h4><p>The <dfn id="space-character" title="space character">space characters</dfn>, for the
+  purposes of this specification, are U+0020 SPACE, U+0009 CHARACTER
+  TABULATION (tab), U+000A LINE FEED (LF), U+000C FORM FEED (FF), and
+  U+000D CARRIAGE RETURN (CR).</p><p>The <dfn id="white_space" title="White_Space">White_Space characters</dfn> are
+  those that have the Unicode property "White_Space" in the Unicode
+  <code title="">PropList.txt</code> data file. <a href="#refsUNICODE">[UNICODE]</a></p><p class="note">This should not be confused with the "White_Space"
+  value (abbreviated "WS") of the "Bidi_Class" property in the <code title="">Unicode.txt</code> data file.</p><p>The <dfn id="alphanumeric-ascii-characters">alphanumeric ASCII characters</dfn> are those in the
+  ranges U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), U+0041 LATIN
+  CAPITAL LETTER A to U+005A LATIN CAPITAL LETTER Z, U+0061 LATIN
+  SMALL LETTER A to U+007A LATIN SMALL LETTER Z.</p></div><h4 id="boolean-attributes"><span class="secno">2.5.2 </span>Boolean attributes</h4><p>A number of attributes are <dfn id="boolean-attribute" role="button" tabindex="0" aria-haspopup="true">boolean
   attributes</dfn>. The presence of a boolean attribute on an element
   represents the true value, and the absence of the attribute
   represents the false value.</p><p>If the attribute is present, its value must either be the empty

Received on Wednesday, 6 July 2011 03:55:20 UTC