html5/spec-author-view Overview.html,1.772,1.773 acknowledgements.html,1.584,1.585 grouping-content.html,1.22,1.23 spec.html,1.778,1.779

Update of /sources/public/html5/spec-author-view
In directory hutz:/tmp/cvs-serv11090

Modified Files:
	Overview.html acknowledgements.html grouping-content.html 
	spec.html 
Log Message:
Add example of marking up a FAQ. (whatwg r4844)

[updated by splitter]


Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/Overview.html,v
retrieving revision 1.772
retrieving revision 1.773
diff -u -d -r1.772 -r1.773
--- Overview.html	12 Mar 2010 01:07:32 -0000	1.772
+++ Overview.html	12 Mar 2010 23:57:02 -0000	1.773
@@ -306,7 +306,7 @@
    </dl><p>This specification is available in the following formats: 
     <a href="spec.html">single page HTML</a>,
     <a href="Overview.html">multipage HTML</a>.
-This is revision 1.3879.
+This is revision 1.3880.
    </p> 
    <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &#169; 2010 <a href="http://www.w3.org/"><abbr title="World Wide

Index: grouping-content.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/grouping-content.html,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- grouping-content.html	4 Mar 2010 07:16:13 -0000	1.22
+++ grouping-content.html	12 Mar 2010 23:57:03 -0000	1.23
@@ -892,7 +892,25 @@
   (<code><a href="#the-dl-element">dl</a></code> element).</p><p class="note">The <code><a href="#the-dt-element">dt</a></code> element itself, when used in a
   <code><a href="#the-dl-element">dl</a></code> element, does not indicate that its contents are a
   term being defined, but this can be indicated using the
-  <code><a href="text-level-semantics.html#the-dfn-element">dfn</a></code> element.</p><h4 id="the-dd-element"><span class="secno">4.5.11 </span>The <dfn><code>dd</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
+  <code><a href="text-level-semantics.html#the-dfn-element">dfn</a></code> element.</p><div class="example">
+
+   <p>This example shows a list of frequently asked questions (a FAQ)
+   marked up using the <code><a href="#the-dt-element">dt</a></code> element for questions and the
+   <code><a href="#the-dd-element">dd</a></code> element for answers.</p>
+
+   <pre>&lt;article&gt;
+ &lt;h1&gt;FAQ&lt;/h1&gt;
+ &lt;dl&gt;
+  &lt;dt&gt;What do we want?&lt;/dt&gt;
+  &lt;dd&gt;Our data.&lt;/dd&gt;
+  &lt;dt&gt;When do we want it?&lt;/dt&gt;
+  &lt;dd&gt;Now.&lt;/dd&gt;
+  &lt;dt&gt;Where is it?&lt;/dt&gt;
+  &lt;dd&gt;We are not sure.&lt;/dd&gt;
+ &lt;/dl&gt;
+&lt;/article&gt;</pre>
+
+  </div><h4 id="the-dd-element"><span class="secno">4.5.11 </span>The <dfn><code>dd</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
    <dd>None.</dd>
    <dt>Contexts in which this element may be used:</dt>
    <dd>After <code><a href="#the-dt-element">dt</a></code> or <code><a href="#the-dd-element">dd</a></code> elements inside <code><a href="#the-dl-element">dl</a></code> elements.</dd>

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.html,v
retrieving revision 1.778
retrieving revision 1.779
diff -u -d -r1.778 -r1.779
--- spec.html	12 Mar 2010 01:07:32 -0000	1.778
+++ spec.html	12 Mar 2010 23:57:03 -0000	1.779
@@ -304,7 +304,7 @@
    </dl><p>This specification is available in the following formats: 
     <a href=spec.html>single page HTML</a>,
     <a href=Overview.html>multipage HTML</a>.
-This is revision 1.3879.
+This is revision 1.3880.
    </p> 
    <p class=copyright><a href=http://www.w3.org/Consortium/Legal/ipr-notice#Copyright>Copyright</a>
    © 2010 <a href=http://www.w3.org/><abbr title="World Wide
@@ -7040,7 +7040,25 @@
   (<code><a href=#the-dl-element>dl</a></code> element).</p><p class=note>The <code><a href=#the-dt-element>dt</a></code> element itself, when used in a
   <code><a href=#the-dl-element>dl</a></code> element, does not indicate that its contents are a
   term being defined, but this can be indicated using the
-  <code><a href=#the-dfn-element>dfn</a></code> element.</p><h4 id=the-dd-element><span class=secno>4.5.11 </span>The <dfn><code>dd</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class=element><dt>Categories</dt>
+  <code><a href=#the-dfn-element>dfn</a></code> element.</p><div class=example>
+
+   <p>This example shows a list of frequently asked questions (a FAQ)
+   marked up using the <code><a href=#the-dt-element>dt</a></code> element for questions and the
+   <code><a href=#the-dd-element>dd</a></code> element for answers.</p>
+
+   <pre>&lt;article&gt;
+ &lt;h1&gt;FAQ&lt;/h1&gt;
+ &lt;dl&gt;
+  &lt;dt&gt;What do we want?&lt;/dt&gt;
+  &lt;dd&gt;Our data.&lt;/dd&gt;
+  &lt;dt&gt;When do we want it?&lt;/dt&gt;
+  &lt;dd&gt;Now.&lt;/dd&gt;
+  &lt;dt&gt;Where is it?&lt;/dt&gt;
+  &lt;dd&gt;We are not sure.&lt;/dd&gt;
+ &lt;/dl&gt;
+&lt;/article&gt;</pre>
+
+  </div><h4 id=the-dd-element><span class=secno>4.5.11 </span>The <dfn><code>dd</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class=element><dt>Categories</dt>
    <dd>None.</dd>
    <dt>Contexts in which this element may be used:</dt>
    <dd>After <code><a href=#the-dt-element>dt</a></code> or <code><a href=#the-dd-element>dd</a></code> elements inside <code><a href=#the-dl-element>dl</a></code> elements.</dd>
@@ -29364,6 +29382,7 @@
   Edward Welbourne,
   Edward Z. Yang,
   Eira Monstad,
+  Eitan Adler,
   Eliot Graff,
   Elizabeth Castro,
   Elliott Sprehn,

Index: acknowledgements.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/acknowledgements.html,v
retrieving revision 1.584
retrieving revision 1.585
diff -u -d -r1.584 -r1.585
--- acknowledgements.html	12 Mar 2010 01:07:32 -0000	1.584
+++ acknowledgements.html	12 Mar 2010 23:57:03 -0000	1.585
@@ -460,6 +460,7 @@
   Edward Welbourne,
   Edward Z. Yang,
   Eira Monstad,
+  Eitan Adler,
   Eliot Graff,
   Elizabeth Castro,
   Elliott Sprehn,

Received on Friday, 12 March 2010 23:57:08 UTC