- From: Hugo Haas via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 02 Aug 2005 09:54:15 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/wsdl20 In directory homer:/tmp/cvs-serv5243 Modified Files: wsdldefs.xsl Log Message: Doing internal links when possible Index: wsdldefs.xsl =================================================================== RCS file: /sources/public/2002/ws/desc/wsdl20/wsdldefs.xsl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** wsdldefs.xsl 29 Jul 2005 14:43:18 -0000 1.6 --- wsdldefs.xsl 2 Aug 2005 09:54:13 -0000 1.7 *************** *** 1,4 **** <?xml version="1.0" encoding="UTF-8"?> - <!-- --- 1,3 ---- *************** *** 28,31 **** --- 27,32 ---- version="1.0"> + <xsl:param name="spec"/> + <xsl:variable name="component-prefix">component-</xsl:variable> <xsl:variable name="property-prefix">property-</xsl:variable> *************** *** 110,115 **** <xsl:template name="map-src"> ! <xsl:param name="src"/> ! <xsl:value-of select="concat(substring-before($src,'.xml'),'.html')"/> </xsl:template> --- 111,123 ---- <xsl:template name="map-src"> ! <xsl:param name="src"/> ! <xsl:choose> ! <xsl:when test="concat($spec,'.xml') = $src"> ! </xsl:when> ! <xsl:otherwise> ! <xsl:value-of ! select="concat(substring-before($src,'.xml'),'.html')"/> ! </xsl:otherwise> ! </xsl:choose> </xsl:template>
Received on Tuesday, 2 August 2005 09:54:18 UTC