- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 08 Feb 2010 10:17:29 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/tools
In directory hutz:/tmp/cvs-serv7302/tools
Modified Files:
generate-spec-source.xsl
Log Message:
checkpointing
Index: generate-spec-source.xsl
===================================================================
RCS file: /sources/public/html5/markup/tools/generate-spec-source.xsl,v
retrieving revision 1.235
retrieving revision 1.236
diff -u -d -r1.235 -r1.236
--- generate-spec-source.xsl 8 Feb 2010 06:49:37 -0000 1.235
+++ generate-spec-source.xsl 8 Feb 2010 10:17:27 -0000 1.236
@@ -2492,12 +2492,16 @@
</xsl:choose>
</span>
<xsl:text> </xsl:text>
- <xsl:if test="not($name='') and document(concat('../elements/',$name,'.html'))//*[@id=$ref][contains(@class,'new')]">
+ <xsl:if test="not($name='') and document(concat('../elements/',$name,'.html'))//*[@id=$ref][contains(@class,'new')]
+ or document('../src/attributes.html')//*[@id=$ref][contains(@class,'new')]
+ ">
<span class="new-feature"
title="This markup feature is newly added in HTML5."
>NEW</span>
</xsl:if>
- <xsl:if test="not($name='') and document(concat('../elements/',$name,'.html'))//*[@id=$ref][contains(@class,'changed')]">
+ <xsl:if test="not($name='') and document(concat('../elements/',$name,'.html'))//*[@id=$ref][contains(@class,'changed')]
+ or document('../src/attributes.html')//*[@id=$ref][contains(@class,'changed')]
+ ">
<span class="changed-feature"
title="The meaning or purpose of this markup feature has changed in HTML5."
>CHANGED</span>
Received on Monday, 8 February 2010 10:17:32 UTC