RE: [xsl] XSLT/XPath 2.0 (was "Identifying two tags...")

Subject: RE: [xsl] XSLT/XPath 2.0 (was "Identifying two tags...")
From: "bryan" <bry@xxxxxxxxxx>
Date: Tue, 14 May 2002 19:41:31 +0200
 I wrote
>
> <xsl:template match="Customers">
> <xsl:variable name="checkV" select="getValidator(Customer/@CustID)"/>
> <xsl:variable name="checkI">
> <xsl:choose>
> <xsl:when test="Customer/@CustID + 1 ='NaN'">
> Not a Number 
> </xsl:when>
> <xsl:when test=" Customer/@CustID = ' '">
> blank
> </xsl:when>
> </xsl:variable>
> <xsl:if test="valid() = 'NotValid'">
> <xsl:text>your entry for Customer ID was non-valid, according to our
> records you entered <xsl:value-of select="Customer/@CustID"/> a value
> that was <xsl:value-of select="$check1"/>
> please retry your entry again and enter a value of type <xsl:value-of
> select="$checkV/xsd:attribute/@type"/>
> </xsl:text>
>
> </xsl:if>
> <xsl:apply-templates/>
>
> </xsl:template>

with the xsl:text made bad error, memory was telling me that one could
have further processing inside of xsl:text in xslt 2.0? I could swear I
read something about that in first draft on spec, but just now in
looking over spec for other stuff saw it did not apply.




 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread