CVS html5/html-xhtml-author-guide

Update of /sources/public/html5/html-xhtml-author-guide
In directory roscoe:/tmp/cvs-serv30760/html-xhtml-author-guide

Modified Files:
	html-xhtml-authoring-guide.html 
Log Message:
Updated editor’s working draft to match the changes that was applied in the Heartbeat draft of 8th of october 2013(http://htmlwg.org/heartbeat/WD-html-polyglot-20131008/)

--- /sources/public/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html	2013/09/26 16:17:08	1.137
+++ /sources/public/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html	2013/10/08 17:37:14	1.138
@@ -8,14 +8,15 @@
         var respecConfig = {
             specStatus:   "ED",
             shortName:    "html-polyglot",
-            publishDate:  "2013-09-26",
+            publishDate:  "2013-10-08",
             previousPublishDate:  "2010-10-19",
-            previousMaturity:  "WD",
+            // previousDiffURI:  "http://htmlwg.org/heartbeat/WD-html-polyglot-20131008/",
+previousMaturity:  "WD",
             edDraftURI:           "http://dev.w3.org/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html",
             // lcEnd: "2009-08-05",
             editors:  [
                 { name: "Eliot Graff", company: "Microsoft Corporation" },
-                { name: "Leif H. Silli", company: "&METODIUS DA"}
+                { name: "Leif H. Silli", company: "<small>&amp;</small>ᴍᴇᴛᴏᴅɪᴜꜱ ᴅᴀ"}
             ],
             wg:           "HTML working group",
             wgURI:        "http://www.w3.org/html/wg/",
@@ -624,7 +625,7 @@
         <p>
             Note that other specifications, such as RDFa, may place additional restrictions on the allowed values of certain attributes.
         </p>
-        <!--End section: Attribute Values-->
+        <!--End section: Attribute values-->
     </section>
     <!--End section: Case-Sensitivity-->
 </section>
@@ -739,7 +740,7 @@
         aware of the <a>safe content</a> limitations or because the code is inserted by a tool that is unable to
         guarantee that the content is <a title="safe content">safe</a>.</p>
 
-    <section id="safe-content">
+    <section id="safe-text-content">
         <h5>The safe text content option</h5>
         <p>The <dfn>safe text content</dfn> option comes in two variants:</p>
         <ul>
@@ -822,7 +823,7 @@
             <p>The <code>&lt;![CDATA[</code> string can be handled in 3 ways:</p>
             <ol>
                 <li><code>&lt;![CDATA[</code> - without commenting it out.
-                    <pre class="example highlight">&lt;script type="not-CSS-and-not-JS">&lt;![CDATA[foo]]&lt;&lt;/script></pre>
+                    <pre class="example highlight">&lt;script type="not-CSS-and-not-JS">&lt;![CDATA[foo]]&gt;&lt;/script></pre>
                     <ul>
                         <li> Important: Unpermitted for 'text/css' and 'text/javascript'!</li>
                         <li> Advantage: Can be useful for type="text/html" and templating in general. Svelte - saves bytes. Puristic.</li>
@@ -923,7 +924,7 @@
         </p>
     </div>
     <p>
-        See also <a href="#attribute-values">Attribute Values</a>.
+        See also <a href="#attribute-values">Attribute values</a>.
     </p>
 
     <section id="disallowed-attributes" class="section">
@@ -1111,14 +1112,18 @@
   &lt;head>
     &lt;title>A Sample Page Using Polglot Markup&lt;/title>
     &lt;meta charset='utf-8' />
-	&lt;!-- The link element is self-closing as described in <a href="http://www.w3.org/TR/html-polyglot/#empty-elements">Section 6.4 Void Elements</a> -->
+        &lt;!-- The HTML encoding declaration (<code>meta</code> element with the <code>charset</code>
+             attribute) is used to declare the encoding ofor HTML parsers, in line with the section on
+             <a href="#character-encoding">Specifying a document’s character encoding</a> -->
+	&lt;!-- The <code>link</code> element is self-closing as described in the section on <a href="#empty-elements">Void Elements</a> -->
 	&lt;!-- Style commands are included by linking to an external file rather than including them in-line,
-	  as described in <a href="http://www.w3.org/TR/html-polyglot/#script-and-style">Section 9. Script and Style</a> -->
+	     as described in the section on <a href="#safe-text-content">The safe text content option</a> for <code>script</code> and <code>style</code> elements.  -->
 	&lt;link type="text/css" rel="stylesheet" href="Sample.css"/>
   &lt;/head>
 
   &lt;body>
-&lt;nav>&lt;p>&lt;strong>NB:&lt;/strong> These bytes are available served as &lt;a href="SamplePage.xhtml"><a href="SamplePage.xhtml">XHTML</a>&lt;/a> and as &lt;a href="SamplePage.html"><a href="SamplePage.html">HTML</a>&lt;/a>&lt;/p>&lt;/nav>
+&lt;nav>&lt;p>&lt;strong>NB:&lt;/strong> These bytes are available served as &lt;a href=&quot;SamplePage.xhtml&quot;><a href="SamplePage.xhtml">XHTML</a>&lt;/a>
+             and as &lt;a href=&quot;SamplePage.html&quot;><a href="SamplePage.html">HTML</a>&lt;/a>&lt;/p>&lt;/nav>
 
     &lt;h1>Sample Page Using Polyglot Markup&lt;/h1>
     &lt;p>
@@ -1134,7 +1139,8 @@
       The following shapes use SVG elements.
       &lt;a href="#sampleDef">Polyglot markup&lt;/a> introduces undeclared (native) default namespaces
       for the the root SVG element (&lt;code>svg&lt;/code>) and respects the mixed-case element names and values
-      when appropriate, as described in the sections <a href="http://dev.w3.org/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html#element-level-namespaces">5.1 Element-Level Namespaces</a>, <a href="http://dev.w3.org/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html#element-names">6.3.1 Element Names</a>, and <a href="http://dev.w3.org/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html#attribute-values">6.3.3 Attribute Values</a>.
+      when appropriate, as described in the section on <a href="#element-level-namespaces">Element-Level Namespaces</a>, the section on <a href="#element-names">Element Names</a>
+      and the section on <a href="#attribute-values">Attribute values</a>.
     &lt;/p>
 
     &lt;!-- &lt;a href="#sampleDef">Polyglot markup&lt;/a> declares the xlink: namespace on the &lt;svg> element to maintain XML-compatibility  -->
@@ -1184,14 +1190,14 @@
     &lt;/p>
     &lt;img height="48" width="72" alt="W3C" src="http://www.w3.org/Icons/w3c_home"/>
     &lt;p>
-      For more information, see <a href="http://dev.w3.org/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html#empty-elements">Section 6.4 Void Elements</a>.
+      For more information, see the <a href="#empty-elements">Void Elements</a> section.
     &lt;/p>
 
 
     &lt;h2>Required Elements&lt;/h2>
     &lt;p>
-      The following table uses the required &lt;code>tbody&lt;/code> element, as described in
-      <a href="http://dev.w3.org/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html#required-elements">Section 6.1 Required Elements</a>.
+      The following table uses the required &lt;code>tbody&lt;/code> element, as described in the
+      <a href="#required-elements">Required elements and tags</a> section.
     &lt;/p>
     &lt;table>
       &lt;tbody>
@@ -1215,8 +1221,7 @@
     &lt;/table>
 
     &lt;p>
-      The following table uses the required &lt;code>colgroup&lt;/code> element, as described in
-      <a href="http://dev.w3.org/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html#required-elements">Section 6.1 Required Elements</a>.
+      The following table makes use of the &lt;code>col&gt;/code> element and therefore uses the then required &lt;code>colgroup&lt;/code> element as &lt;code>col&lt;/code> element wrapper for, as described in the <a href="#required-elements">Required elements and tags</a> section.
     &lt;/p>
     &lt;table>
       &lt;colgroup>
@@ -1246,7 +1251,7 @@
     &lt;h2>Named Entity References&lt;/h2>
     &lt;p>
       The paragraph you now read, uses the string &lt;code>&amp;amp;amp;&lt;/code> for ampersands (“&amp;amp;”) and uses,
-      as described in <a href="http://dev.w3.org/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html#named-entity-references">Section 8. Named Entity References</a>, the string &lt;code>&amp;amp;#xA0;&lt;/code>
+      as described in the section on <a href="#named-entity-references">Named entity references</a>, the string &lt;code>&amp;amp;#xA0;&lt;/code>
       for a non-breaking space between the following two words: &lt;i>“&lt;a href="#sampleDef">polyglot&amp;#xA0;markup&lt;/a>”&lt;/i>.
     &lt;/p>
   &lt;/body>

Received on Tuesday, 8 October 2013 17:37:17 UTC