- From: Jonathan Marsh via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 27 May 2007 15:00:15 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/test-suite/results/wsdl-xslt In directory hutz:/tmp/cvs-serv18823/test-suite/results/wsdl-xslt Modified Files: wsdl-component-model.xslt Log Message: Updated SAWSDL testcases to match latest versions. Fixed QName reference bug in swasdl:elementDeclarationExtension. Index: wsdl-component-model.xslt =================================================================== RCS file: /sources/public/2002/ws/desc/test-suite/results/wsdl-xslt/wsdl-component-model.xslt,v retrieving revision 1.37 retrieving revision 1.38 diff -C 2 -d -r1.37 -r1.38 *** wsdl-component-model.xslt 22 May 2007 17:54:04 -0000 1.37 --- wsdl-component-model.xslt 27 May 2007 15:00:12 -0000 1.38 *************** *** 1155,1159 **** <xsl:if test="$sawsdl-engaged"> <sawsdlcm:sawsdlElementDeclarationExtension> ! <xsl:variable name="type-local-name" select="substring-after(@type, ':')"/> <xsl:variable name="type-prefix" select="substring-before(@type, ':')"/> <xsl:variable name="type-namespace-name" select="namespace::*[local-name()=$type-prefix]"/> --- 1155,1168 ---- <xsl:if test="$sawsdl-engaged"> <sawsdlcm:sawsdlElementDeclarationExtension> ! <xsl:variable name="type-local-name"> ! <xsl:choose> ! <xsl:when test="contains(@type, ':')"> ! <xsl:value-of select="substring-after(@type, ':')"/> ! </xsl:when> ! <xsl:otherwise> ! <xsl:value-of select="@type"/> ! </xsl:otherwise> ! </xsl:choose> ! </xsl:variable> <xsl:variable name="type-prefix" select="substring-before(@type, ':')"/> <xsl:variable name="type-namespace-name" select="namespace::*[local-name()=$type-prefix]"/>
Received on Sunday, 27 May 2007 15:00:46 UTC