- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 20 Jul 2009 22:44:26 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/src
In directory hutz:/tmp/cvs-serv10469/src
Modified Files:
documents.html intro-scope.html references.html
Log Message:
added Namespaces in XML 1.0 spec to h:tml References
Index: documents.html
===================================================================
RCS file: /sources/public/html5/markup/src/documents.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- documents.html 15 Jul 2009 07:02:12 -0000 1.2
+++ documents.html 20 Jul 2009 22:44:23 -0000 1.3
@@ -11,15 +11,16 @@
described in this specification; it is an abstract language that
applications can potentially represent in memory in any number
of possible ways, and that can be transmitted using any number
- of possible concrete syntaxes. This specification makes
+ of possible concrete syntaxes.</p>
+ <p>This specification makes
reference to two particular concrete syntaxes for the
<a href="#html-language">HTML language</a>: One syntax which
is referred to throughout this specification as
<a href="#html-syntax">the HTML syntax</a>,
and another syntax, which is referred to throughout this
specification as
- <a href="#xml-syntax">the XML syntax</a>.</p>
- <p>Web browsers typically implement two separate parsers for
+ <a href="#xml-syntax">the XML syntax</a>.
+ Web browsers typically implement two separate parsers for
processing documents: an
<dfn id="html-parser">HTML parser</dfn>
which is invoked when processing documents in the
@@ -31,13 +32,19 @@
title="html-syntax"
>HTML syntax</dfn>
is the syntax described in the
- “HTML syntax” section of this specification.
- The
+ “HTML syntax” section of this specification.</p>
+ <p>The
<dfn id="xml-syntax"
title="xml-syntax"
>XML syntax</dfn>
is defined by rules in the XML specification
- <a href="#refsXML">[XML]</a>.</p>
+ <a href="#refsXML">[XML]</a>
+ and in the Namespaces in XML 1.0 specification
+ <a href="#refsXML">[XMLNS]</a>.
+ Beyond the requirements defined in those specifications,
+ this specification does not define any additional syntax-level
+ requirements for
+ <a href="#syntax-document-xml">documents in the XML syntax</a>.</p>
<section id="mime-types">
<h2>The HTML namespace and MIME types</h2>
<p>The
@@ -82,7 +89,7 @@
<a href="#syntax-comments">comments</a> and
<a href="#space">space characters</a>.</li>
<li>The root element, in the form of an
- <a href="#html">html</a> element.</li>
+ <a href="#html" class="element">html</a> element.</li>
<li>Any number of
<a href="#syntax-comments">comments</a> and
<a href="#space">space characters</a>.</li>
@@ -101,17 +108,23 @@
<li>Any number of comments and space characters, as defined
in the XML specification <a href="#refsXML">[XML]</a>.</li>
<li>The root element, in the form of an
- <a href="#html">html</a> element.</li>
+ <a href="#html" class="element">html</a> element.</li>
<li>Any number of comments and space characters, as defined
in the XML specification <a href="#refsXML">[XML]</a>.</li>
</ol>
<p>Documents in the XML syntax must conform to XML constraints
- as defined in the XML specification <a
- href="#refsXML">[XML]</a> — including XML well-formedness
- constraints — and must not make use of any features of the <a
- href="#html-syntax">HTML syntax</a> that do not follow XML
+ as defined in the XML specification
+ <a href="#refsXML">[XML]</a>
+ and in the Namespaces in XML 1.0 specification
+ <a href="#refsXML">[XMLNS]</a>
+ — including XML well-formedness constraints — and must not
+ make use of any features of the
+ <a href="#html-syntax">HTML syntax</a>
+ that do not follow XML
well-formedness constraints (for example, documents in the XML
- syntax must not use <a href="#syntax-attr-unquoted">unquoted attribute
- value syntax</a> and must not <a href="#omitted">omit tags</a>).</p>
+ syntax must not use
+ <a href="#syntax-attr-unquoted">unquoted attribute value syntax</a>
+ and must not
+ <a href="#omitted">omit tags</a>).</p>
</section>
</section>
Index: references.html
===================================================================
RCS file: /sources/public/html5/markup/src/references.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- references.html 13 Jun 2009 09:12:01 -0000 1.9
+++ references.html 20 Jul 2009 22:44:24 -0000 1.10
@@ -103,5 +103,11 @@
>Extensible Markup Language (XML) 1.0 (Fourth
Edition)</a></cite>. Tim Bray, Jean Paoli, C. M.
Sperberg-McQueen, Eve Maler, François Yergeau. 16 August 2006.</dd>
+ <dt><dfn id="refsXML">[XMLNS]</dfn></dt>
+ <dd><cite><a href="http://www.w3.org/TR/2006/REC-xml-names-20060816/"
+ >Namespaces in XML 1.0 (Second Edition)</a></cite>.
+ Tim Bray, Dave Hollander, Andrew Layman, Richard Tobin.
+ 16 August 2006.
+ </dd>
</dl>
</section>
Index: intro-scope.html
===================================================================
RCS file: /sources/public/html5/markup/src/intro-scope.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- intro-scope.html 24 Mar 2009 07:30:43 -0000 1.8
+++ intro-scope.html 20 Jul 2009 22:44:24 -0000 1.9
@@ -25,10 +25,8 @@
<ul>
<li>to describe the syntax, structure, and
semantics of the HTML language</li>
- <li>to be minimal; that is, to keep its
- descriptions as short as necessary to precisely
- define the HTML language, without being so
- short as to be unclear or ambiguous</li>
+ <li>to be clear and unambiguous</li>
+ <li>to be as concise and readable as possible</li>
<li>…</li>
</ul>
</section>
@@ -42,7 +40,7 @@
other user agents process documents</li>
<li>does not define any APIs related to processing
of HTML content by HTML consumers.</li>
- <li>does not attempt to be a “tutorial” or “how
+ <li>does not attempt to be a tutorial or “how
to” authoring guide</li>
</ul>
</section>
Received on Monday, 20 July 2009 22:44:41 UTC