This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]