- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 31 Jul 2009 16:24:41 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/tools In directory hutz:/tmp/cvs-serv24203/tools Modified Files: generate-spec-source.xsl Log Message: pull upstream schema change that adds all global event-handler attributes, as well as those specific to the <body> element Index: generate-spec-source.xsl =================================================================== RCS file: /sources/public/html5/markup/tools/generate-spec-source.xsl,v retrieving revision 1.193 retrieving revision 1.194 diff -u -d -r1.193 -r1.194 --- generate-spec-source.xsl 31 Jul 2009 08:34:42 -0000 1.193 +++ generate-spec-source.xsl 31 Jul 2009 16:24:39 -0000 1.194 @@ -2230,8 +2230,13 @@ select="document('../src/attributes.html')//h:dd[preceding-sibling::h:dt[@id=$ref]]"/> </xsl:when> <xsl:otherwise> - <xsl:message>Missing description for:<xsl:text> </xsl:text><xsl:value-of select="$ref"/></xsl:message> - <dd><i class="TK">(detailed attribute description to come)</i></dd> + <dd> + <xsl:if test="not(starts-with($ref,'scripting.attr')) + and not(starts-with($ref,'body.attrs'))"> + <xsl:message>Missing description for:<xsl:text> </xsl:text><xsl:value-of select="$ref"/></xsl:message> + <i class="TK">(detailed attribute description to come)</i> + </xsl:if> + </dd> </xsl:otherwise> </xsl:choose> <xsl:text> </xsl:text>
Received on Friday, 31 July 2009 16:24:51 UTC