- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 21 Jan 2011 06:47:46 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/tools In directory hutz:/tmp/cvs-serv13986/tools Modified Files: generate-spec-source.xsl specgen.xsl Log Message: document the dropzone attribute Index: generate-spec-source.xsl =================================================================== RCS file: /sources/public/html5/markup/tools/generate-spec-source.xsl,v retrieving revision 1.299 retrieving revision 1.300 diff -u -d -r1.299 -r1.300 --- generate-spec-source.xsl 17 Dec 2010 13:01:43 -0000 1.299 +++ generate-spec-source.xsl 21 Jan 2011 06:47:43 -0000 1.300 @@ -452,6 +452,9 @@ <xsl:when test="$pattern='keylabellist'"> <h2 class="common-subhead"><dfn id="{@id}">list of key labels</dfn></h2> </xsl:when> + <xsl:when test="$pattern='dropzonevalue'"> + <h2 class="common-subhead"><dfn id="{@id}">dropzone value</dfn></h2> + </xsl:when> <xsl:when test="$pattern='default-style'"> <h2 class="common-subhead"><dfn id="{@id}">default-style name</dfn></h2> </xsl:when> @@ -787,7 +790,7 @@ <!-- * <xsl:text> </xsl:text> --> <p>This document incorporates a modified version of a <a - href="http://svn.webkit.org/repository/webkit/trunk/WebCore/css/html.css" + href="http://svn.webkit.org/repository/webkit/trunk/Source/WebCore/css/html.css" >CSS stylesheet from the WebKit source repository</a>, distributed with the following copyright notice and license statement:</p> @@ -801,7 +804,7 @@ distributed with the following copyright notice and license statement:</p> <xsl:text> </xsl:text> - <pre class="license"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts Institute of Technology">MIT</abbr></a>, <a href="http://www.ercim.eu/"><abbr title="European Research Consortium for Informatics and Mathematics">ERCIM</abbr></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</pre> + <p class="license"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts Institute of Technology">MIT</abbr></a>, <a href="http://www.ercim.eu/"><abbr title="European Research Consortium for Informatics and Mathematics">ERCIM</abbr></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p> <xsl:text> </xsl:text> </section> <!-- * <section id="schema-appendix"> --> @@ -3313,6 +3316,9 @@ <xsl:when test=".='keylabellist'"> <a href="{@href}">list of key labels</a> </xsl:when> + <xsl:when test=".='dropzonevalue'"> + <a href="{@href}">dropzone value</a> + </xsl:when> <xsl:when test=".='default-style'"> <a href="{@href}">default-style name</a> </xsl:when> Index: specgen.xsl =================================================================== RCS file: /sources/public/html5/markup/tools/specgen.xsl,v retrieving revision 1.93 retrieving revision 1.94 diff -u -d -r1.93 -r1.94 --- specgen.xsl 15 Dec 2010 05:52:10 -0000 1.93 +++ specgen.xsl 21 Jan 2011 06:47:44 -0000 1.94 @@ -320,6 +320,9 @@ </div> <div class='head'> <xsl:choose> + <xsl:when test="$maturity = 'ED'"> + <div><img src="HTML5_Badge_128.png" alt="5"/></div> + </xsl:when> <xsl:when test="$site = 'W3C' and not($maturity = 'ED')"> <div><a href="http://www.w3.org/"><img height="48" width="72" alt="W3C" src="http://www.w3.org/Icons/w3c_home"/></a></div> </xsl:when> @@ -360,7 +363,7 @@ <xsl:choose> <xsl:when test='$source and $maturity="ED"'> <dl> - <dt>Latest Editor’s Draft is also available:</dt> + <dt>Editor’s Draft is also available:</dt> <dd> <a id='latestED' href='{$source}'><xsl:value-of select='$source'/></a> <xsl:text> </xsl:text> @@ -377,7 +380,7 @@ <xsl:otherwise> <xsl:if test='not($latest = "")'> <dl class="ed-draft-link"> - <dt class="ed-draft-link">Latest Editor’s Draft is also available:</dt> + <dt class="ed-draft-link">Editor’s Draft is also available:</dt> <dd> <a id='latestED' href='{$source}'><xsl:value-of select='$source'/></a> <xsl:text> </xsl:text> @@ -409,6 +412,7 @@ </xsl:if> <xsl:if test="$person-nodeset"> + <dl> <dt>Editor<xsl:if test='count($person-nodeset) > 1'>s</xsl:if>:</dt> <xsl:for-each select='$person-nodeset'> <xsl:choose> @@ -436,6 +440,7 @@ </xsl:otherwise> </xsl:choose> </xsl:for-each> + </dl> </xsl:if> <p>The content of this document is also available as <xsl:choose>
Received on Friday, 21 January 2011 06:47:48 UTC