- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 13 Feb 2012 07:21:55 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/tools In directory hutz:/tmp/cvs-serv15526/tools Modified Files: generate-spec-source.xsl Log Message: Fix bug 15761. Thanks Filipus Klutiero. Also define "non-empty string" and "string without breaks". Index: generate-spec-source.xsl =================================================================== RCS file: /sources/public/html5/markup/tools/generate-spec-source.xsl,v retrieving revision 1.312 retrieving revision 1.313 diff -u -d -r1.312 -r1.313 --- generate-spec-source.xsl 13 Feb 2012 06:34:49 -0000 1.312 +++ generate-spec-source.xsl 13 Feb 2012 07:21:53 -0000 1.313 @@ -515,6 +515,12 @@ <xsl:when test="$pattern='color'"> <h2 class="common-subhead"><dfn id="{@id}">simple color</dfn></h2> </xsl:when> + <xsl:when test="$pattern='nonemptystring'"> + <h2 class="common-subhead"><dfn id="{@id}">non-empty string</dfn></h2> + </xsl:when> + <xsl:when test="$pattern='stringwithoutlinebreaks'"> + <h2 class="common-subhead"><dfn id="{@id}">string without line breaks</dfn></h2> + </xsl:when> <xsl:when test="$pattern='rectangle'"> <h2 class="common-subhead"><dfn id="{@id}">rectangle coordinates</dfn></h2> </xsl:when> @@ -3411,6 +3417,12 @@ <xsl:when test=".='color'"> <a href="{@href}">simple color</a> </xsl:when> + <xsl:when test=".='nonemptystring'"> + <a href="{@href}">non-empty string</a> + </xsl:when> + <xsl:when test=".='stringwithoutlinebreaks'"> + <a href="{@href}">string without line breaks</a> + </xsl:when> <xsl:when test=".='rectangle'"> <a href="{@href}">rectangle coordinates</a> </xsl:when>
Received on Monday, 13 February 2012 07:21:57 UTC