- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 21 Oct 2009 07:38:40 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv365
Modified Files:
Overview.html
Log Message:
Introduce <meta name=author>; specify that name=application-name and name=description can't be duplicated; minor editorial tweaks. (whatwg r4237)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3382
retrieving revision 1.3383
diff -u -d -r1.3382 -r1.3383
--- Overview.html 21 Oct 2009 07:31:44 -0000 1.3382
+++ Overview.html 21 Oct 2009 07:38:36 -0000 1.3383
@@ -9778,31 +9778,39 @@
</div><h5 id="standard-metadata-names"><span class="secno">4.2.5.1 </span>Standard metadata names</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><p>This specification defines a few names for the <code title="attr-meta-name"><a href="#attr-meta-name">name</a></code> attribute of the
<code><a href="#meta">meta</a></code> element.<p>Names are case-insensitive<span class="impl">, and must be compared
- in an <a href="#ascii-case-insensitive">ASCII case-insensitive</a> manner</span>.<dl><dt><dfn id="meta-application-name" title="meta-application-name">application-name</dfn></dt>
+ in an <a href="#ascii-case-insensitive">ASCII case-insensitive</a> manner</span>.<dl><dt><dfn id="meta-application-name" title="meta-application-name"><code>application-name</code></dfn></dt>
<dd><p>The value must be a short free-form string giving the name
of the Web application that the page represents. If the page is not
a Web application, the <code title="meta-application-name"><a href="#meta-application-name">application-name</a></code> metadata name
- must not be used. <span class="impl">User agents may use the
- application name in UI in preference to the page's
- <code><a href="#the-title-element-0">title</a></code>, since the title might include status messages
- and the like relevant to the status of the page at a particular
- moment in time instead of just being the name of the
- application.</span></dd>
+ must not be used. There must not be more than one <code><a href="#meta">meta</a></code>
+ element with its <code title="attr-meta-name"><a href="#attr-meta-name">name</a></code> attribute
+ set to the value <code title="meta-application-name"><a href="#meta-application-name">application-name</a></code> per
+ document. <span class="impl">User agents may use the application
+ name in UI in preference to the page's <code><a href="#the-title-element-0">title</a></code>, since
+ the title might include status messages and the like relevant to
+ the status of the page at a particular moment in time instead of
+ just being the name of the application.</span></dd>
- <dt><dfn id="meta-description" title="meta-description">description</dfn></dt>
+ <dt><dfn id="meta-author" title="meta-author"><code>author</code></dfn></dt>
+
+ <dd><p>The value must be a free-form string giving the name of one
+ of the page's authors.</dd>
+
+ <dt><dfn id="meta-description" title="meta-description"><code>description</code></dfn></dt>
<dd><p>The value must be a free-form string that describes the
page. The value must be appropriate for use in a directory of
- pages, e.g. in a search engine.</dd>
+ pages, e.g. in a search engine. There must not be more than one
+ <code><a href="#meta">meta</a></code> element with its <code title="attr-meta-name"><a href="#attr-meta-name">name</a></code> attribute set to the value <code title="meta-description"><a href="#meta-description">description</a></code> per document.</dd>
- <dt><dfn id="meta-generator" title="meta-generator">generator</dfn></dt>
+ <dt><dfn id="meta-generator" title="meta-generator"><code>generator</code></dfn></dt>
<dd>
- <p>The value must be a free-form string that identifies the
- software used to generate the document. This value must not be
- used on hand-authored pages.</p>
+ <p>The value must be a free-form string that identifies one of the
+ software packages used to generate the document. This value must
+ not be used on hand-authored pages.</p>
<div class="example">
Received on Wednesday, 21 October 2009 07:38:42 UTC