- From: Philippe Le Hegaret via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 06 Feb 2007 16:37:39 +0000
- To: public-ws-addressing-eds@w3.org
Update of /sources/public/2004/ws/addressing
In directory hutz:/tmp/cvs-serv13350
Modified Files:
xmlspec.xsl
Log Message:
Partial merge with the official xmlspec.xsl. Removed support for shorttoc. Fixed warnings on table/caption and child axis starting at an attribute() node
Index: xmlspec.xsl
===================================================================
RCS file: /sources/public/2004/ws/addressing/xmlspec.xsl,v
retrieving revision 1.12
retrieving revision 1.13
diff -C 2 -d -r1.12 -r1.13
*** xmlspec.xsl 30 Jan 2007 15:47:59 -0000 1.12
--- xmlspec.xsl 6 Feb 2007 16:37:37 -0000 1.13
***************
*** 1,23 ****
<?xml version="1.0"?>
! <!-- Version: $Id$ -->
! <!-- Stylesheet for XMLspec -->
! <!-- Author: Norman Walsh (Norman.Walsh@East.Sun.COM) -->
! <!-- Author: Chris Maden (crism@lexica.net) -->
! <!-- Author: Ben Trafford (ben@legendary.org) -->
! <!-- Author: Eve Maler (eve.maler@east.sun.com) -->
! <!-- Date Created: 1999.09.07 -->
[...2470 lines suppressed...]
</xsl:variable>
<xsl:if test="$conditional = 0 or $node/@id">
! <a name="{$id}"/>
</xsl:if>
</xsl:template>
--- 2909,2922 ----
<xsl:param name="node" select="."/>
<xsl:param name="conditional" select="1"/>
+ <xsl:param name="default.id" select="''"/>
+
<xsl:variable name="id">
<xsl:call-template name="object.id">
<xsl:with-param name="node" select="$node"/>
+ <xsl:with-param name="default.id" select="$default.id"/>
</xsl:call-template>
</xsl:variable>
<xsl:if test="$conditional = 0 or $node/@id">
! <a name="{$id}" id="{$id}"/>
</xsl:if>
</xsl:template>
Received on Tuesday, 6 February 2007 16:37:49 UTC