- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 30 Jan 2010 03:12:25 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/md In directory hutz:/tmp/cvs-serv20125 Modified Files: Overview.html Log Message: Change <figure> and <details> to use <figcaption> and <summary> rather than <dt>/<dd> or <legend>. (whatwg r4636) Index: Overview.html =================================================================== RCS file: /sources/public/html5/md/Overview.html,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- Overview.html 29 Jan 2010 11:54:33 -0000 1.31 +++ Overview.html 30 Jan 2010 03:12:23 -0000 1.32 @@ -262,7 +262,7 @@ <h1>HTML Microdata</h1> <h2 class="no-num no-toc" id="generatedID"></h2> - <h2 class="no-num no-toc" id="editor-s-draft-29-january-2010">Editor's Draft 29 January 2010</h2> + <h2 class="no-num no-toc" id="editor-s-draft-30-january-2010">Editor's Draft 30 January 2010</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/md/">http://www.w3.org/TR/md/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -359,7 +359,7 @@ specification's progress along the W3C Recommendation track. - This specification is the 29 January 2010 Editor's Draft. + This specification is the 30 January 2010 Editor's Draft. </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 part of <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">a larger specification</a> being produced by the <a href="http://www.whatwg.org/">WHATWG</a>, which is available under a license that permits reuse of the specification text.</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) --><!-- (this text is from the RDFa+HTML spec --><p>This specification is an extension to the HTML5 language. All @@ -713,14 +713,14 @@ following two examples:</p> <pre><figure> - <dd><img src="castle.jpeg"> - <dt><span itemscope><span itemprop="name">The Castle</span></span> (1986) + <img src="castle.jpeg"> + <figcaption><span itemscope><span itemprop="name">The Castle</span></span> (1986)</figcaption> </figure></pre> <pre><span itemscope><meta itemprop="name" content="The Castle"></span> <figure> - <dd><img src="castle.jpeg"> - <dt>The Castle (1986) + <img src="castle.jpeg"> + <figcaption>The Castle (1986)</figcaption> </figure></pre> <p>Both have a figure with a caption, and both, completely @@ -4058,8 +4058,8 @@ simultaneously.</p> <pre><figure <strong>itemscope itemtype="http://n.whatwg.org/work"</strong>> - <dd><img <strong>itemprop="work"</strong> src="mypond.jpeg"> - <dt> + <img <strong>itemprop="work"</strong> src="mypond.jpeg"> + <figcaption> <p><cite <strong>itemprop="title"</strong>>My Pond</cite></p> <p><small>Licensed under the <a <strong>itemprop="license"</strong> href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative @@ -4067,6 +4067,7 @@ and the <a <strong>itemprop="license"</strong> href="http://www.opensource.org/licenses/mit-license.php">MIT license</a>.</small> + </figcaption> </figure></pre> </div><div class="impl">
Received on Saturday, 30 January 2010 03:12:27 UTC