- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 29 Mar 2010 18:46:46 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/tools In directory hutz:/tmp/cvs-serv3285/tools Modified Files: generate-spec-source.xsl specgen.xsl Log Message: add an admonition about link/@urn being obsolete Index: generate-spec-source.xsl =================================================================== RCS file: /sources/public/html5/markup/tools/generate-spec-source.xsl,v retrieving revision 1.250 retrieving revision 1.251 diff -u -d -r1.250 -r1.251 --- generate-spec-source.xsl 29 Mar 2010 15:08:01 -0000 1.250 +++ generate-spec-source.xsl 29 Mar 2010 18:46:43 -0000 1.251 @@ -1177,25 +1177,6 @@ </xsl:otherwise> </xsl:choose> </span> - <xsl:text> </xsl:text> - <xsl:if test='not($obsoleted="")'> - <xsl:text> </xsl:text> - <span class="obsoleted-feature" - title="This markup feature has been obsoleted in HTML5." - >OBSOLETE</span> - </xsl:if> - <xsl:if test='not($changed="")'> - <xsl:text> </xsl:text> - <span class="changed-feature" - title="The meaning, structure, or purpose of this markup feature has changed in HTML5." - >CHANGED</span> - </xsl:if> - <xsl:if test='not($new="")'> - <xsl:text> </xsl:text> - <span class="new-feature" - title="This markup feature is newly added in HTML5." - >NEW</span> - </xsl:if> <xsl:if test="not(contains($name,'.'))"> <xsl:variable name="target"> <xsl:choose> @@ -1228,6 +1209,25 @@ href="http://dev.w3.org/html5/spec-author-view/#{$target}">ⓘ</a> </span> </xsl:if> + <xsl:text> </xsl:text> + <xsl:if test='not($obsoleted="")'> + <xsl:text> </xsl:text> + <span class="obsoleted-feature" + title="This markup feature has been obsoleted in HTML5." + >OBSOLETE</span> + </xsl:if> + <xsl:if test='not($changed="")'> + <xsl:text> </xsl:text> + <span class="changed-feature" + title="The meaning, structure, or purpose of this markup feature has changed in HTML5." + >CHANGED</span> + </xsl:if> + <xsl:if test='not($new="")'> + <xsl:text> </xsl:text> + <span class="new-feature" + title="This markup feature is newly added in HTML5." + >NEW</span> + </xsl:if> </h2> <xsl:text> </xsl:text> <xsl:variable name="space-name"> Index: specgen.xsl =================================================================== RCS file: /sources/public/html5/markup/tools/specgen.xsl,v retrieving revision 1.64 retrieving revision 1.65 diff -u -d -r1.64 -r1.65 --- specgen.xsl 5 Mar 2010 02:19:42 -0000 1.64 +++ specgen.xsl 29 Mar 2010 18:46:43 -0000 1.65 @@ -622,6 +622,7 @@ [not(contains(@class,"obsoleted-feature"))] [not(contains(@class,"changed-feature"))] [not(contains(@class,"new-feature"))] + [not(contains(@class,"spec-link"))] '> <xsl:copy-of select='.'/> </xsl:for-each>
Received on Monday, 29 March 2010 18:46:47 UTC