- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 15 Aug 2009 11:12:51 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv27550
Modified Files:
Overview.html
Log Message:
Drop cite= from <section> and <article>. (whatwg r3627)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2814
retrieving revision 1.2815
diff -u -d -r1.2814 -r1.2815
--- Overview.html 14 Aug 2009 23:27:42 -0000 1.2814
+++ Overview.html 15 Aug 2009 11:12:48 -0000 1.2815
@@ -175,7 +175,7 @@
<h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
<!--ZZZ:-->
<!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>-->
- <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 14 August 2009</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 15 August 2009</h2>
<!--:ZZZ-->
<dl><!-- ZZZ: update the month/day (twice), (un)comment out
<dt>This Version:</dt>
@@ -273,7 +273,7 @@
track.
<!--ZZZ:-->
<!--This specification is the 23 April 2009 Working Draft.-->
- This specification is the 14 August 2009 Editor's Draft.
+ This specification is the 15 August 2009 Editor's Draft.
<!--:ZZZ-->
</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. The two specifications are
identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to replace (be a new version of)
@@ -10794,33 +10794,15 @@
<dd><a href="#flow-content-0">Flow content</a>.</dd>
<dt>Content attributes:</dt>
<dd><a href="#global-attributes">Global attributes</a></dd>
- <dd><code title="attr-section-cite"><a href="#attr-section-cite">cite</a></code></dd>
<dt>DOM interface:</dt>
- <dd>
-<pre class="idl">interface <dfn id="htmlsectionelement">HTMLSectionElement</dfn> : <a href="#htmlelement">HTMLElement</a> {
- attribute DOMString <a href="#dom-section-cite" title="dom-section-cite">cite</a>;
-};</pre>
- </dd>
+ <dd>Uses <code><a href="#htmlelement">HTMLElement</a></code>.</dd>
</dl><p>The <code><a href="#the-section-element">section</a></code> element <a href="#represents">represents</a> a
generic document or application section. A section, in this context,
is a thematic grouping of content, typically with a heading, possibly
with a footer.<p class="example">Examples of sections would be chapters, the
various tabbed pages in a tabbed dialog box, or the numbered
sections of a thesis. A Web site's home page could be split into
- sections for an introduction, news items, contact information.<p>The <dfn id="attr-section-cite" title="attr-section-cite"><code>cite</code></dfn>
- attribute may be used if the content of the section was taken from
- another page (e.g. syndicating content from multiple sources on one
- page). The attribute, if present, must contain a <a href="#valid-url">valid
- URL</a> referencing the original source. <span class="impl">To
- obtain the corresponding citation link, the value of the attribute
- must be <a href="#resolve-a-url" title="resolve a url">resolved</a> relative to the
- element. User agents should allow users to follow such citation
- links.</span><div class="impl">
-
- <p>The <dfn id="dom-section-cite" title="dom-section-cite"><code>cite</code></dfn> DOM
- attribute must <a href="#reflect">reflect</a> the element's <code title="attr-section-cite"><a href="#attr-section-cite">cite</a></code> content attribute.</p>
-
- </div><p class="note">The <code><a href="#the-section-element">section</a></code> element is not a generic
+ sections for an introduction, news items, contact information.<p class="note">The <code><a href="#the-section-element">section</a></code> element is not a generic
container element. When an element is needed for styling purposes or
as a convenience for scripting, authors are encouraged to use the
<code><a href="#the-div-element">div</a></code> element instead. A general rule is that the
@@ -10966,12 +10948,10 @@
<dd><a href="#flow-content-0">Flow content</a>.</dd>
<dt>Content attributes:</dt>
<dd><a href="#global-attributes">Global attributes</a></dd>
- <dd><code title="attr-article-cite"><a href="#attr-article-cite">cite</a></code></dd>
<dd><code title="attr-article-pubdate"><a href="#attr-article-pubdate">pubdate</a></code></dd>
<dt>DOM interface:</dt>
<dd>
<pre class="idl">interface <dfn id="htmlarticleelement">HTMLArticleElement</dfn> : <a href="#htmlelement">HTMLElement</a> {
- attribute DOMString <a href="#dom-article-cite" title="dom-article-cite">cite</a>;
attribute DOMString <a href="#dom-article-pubdate" title="dom-article-pubDate">pubDate</a>;
};</pre>
</dd>
@@ -10989,22 +10969,13 @@
elements nested within the <code><a href="#the-article-element">article</a></code> element for the Web
log entry.<p>Author information associated with an <code><a href="#the-article-element">article</a></code>
element (q.v. the <code><a href="#the-address-element">address</a></code> element) does not apply to
- nested <code><a href="#the-article-element">article</a></code> elements.<p>The <dfn id="attr-article-cite" title="attr-article-cite"><code>cite</code></dfn>
- attribute may be used if the content of the article was taken from
- another page (e.g. syndicating content from multiple sources on one
- page). The attribute, if present, must contain a <a href="#valid-url">valid
- URL</a> referencing the original source. <span class="impl">To
- obtain the corresponding citation link, the value of the attribute
- must be <a href="#resolve-a-url" title="resolve a url">resolved</a> relative to the
- element. User agents should allow users to follow such citation
- links.</span><p>The <dfn id="attr-article-pubdate" title="attr-article-pubdate"><code>pubdate</code></dfn>
+ nested <code><a href="#the-article-element">article</a></code> elements.<p>The <dfn id="attr-article-pubdate" title="attr-article-pubdate"><code>pubdate</code></dfn>
attribute may be used to specify the time and date that the article
was first published. If present, the <code title="attr-article-pubdate"><a href="#attr-article-pubdate">pubdate</a></code> attribute must be a
<a href="#valid-global-date-and-time-string">valid global date and time string</a> value.<div class="impl">
- <p>The <dfn id="dom-article-cite" title="dom-article-cite"><code>cite</code></dfn> DOM
- attribute must <a href="#reflect">reflect</a> the element's <code title="attr-article-cite"><a href="#attr-article-cite">cite</a></code> content attribute. The <dfn id="dom-article-pubdate" title="dom-article-pubDate"><code>pubDate</code></dfn> DOM attribute
- must <a href="#reflect">reflect</a> the element's <code title="attr-article-pubdate"><a href="#attr-article-pubdate">pubdate</a></code> content attribute.</p>
+ <p>The <dfn id="dom-article-pubdate" title="dom-article-pubDate"><code>pubDate</code></dfn>
+ DOM attribute must <a href="#reflect">reflect</a> the element's <code title="attr-article-pubdate"><a href="#attr-article-pubdate">pubdate</a></code> content attribute.</p>
</div><h4 id="the-aside-element"><span class="secno">4.4.5 </span>The <dfn><code>aside</code></dfn> element</h4><dl class="element"><dt>Categories</dt>
<dd><a href="#flow-content-0">Flow content</a>.</dd>
@@ -40935,16 +40906,7 @@
<p>Establish the value of <var title="">id</var> and <var title="">has-alternate</var> from the first of the following to
apply:</p>
- <dl><dt>If the <var title="">article</var> node has a <code title="attr-article-cite"><a href="#attr-article-cite">cite</a></code> attribute that
- successfully <a href="#resolve-a-url" title="resolve a url">resolves</a>
- relative to the <var title="">article</var> node</dt>
-
- <dd>Let <var title="">id</var> be the <a href="#absolute-url">absolute URL</a>
- resulting from <a href="#resolve-a-url" title="resolve a url">resolving</a> the
- value of the <code title="attr-article-cite"><a href="#attr-article-cite">cite</a></code>
- relative to the <var title="">article</var> element. Let <var title="">has-alternate</var> be true.</dd>
-
- <dt>If the <var title="">article</var> node has a descendant
+ <dl><dt>If the <var title="">article</var> node has a descendant
<code><a href="#the-a-element">a</a></code> or <code><a href="#the-area-element">area</a></code> element with an <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href">href</a></code> attribute that
successfully <a href="#resolve-a-url" title="resolve a url">resolves</a>
relative to that descendant and a <code title="attr-a-rel">rel</code> attribute whose value includes
Received on Saturday, 15 August 2009 11:13:00 UTC