|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Comparing Node Text Content with a String Set
Hi,
> ie.. instead of having the following <if test> syntax
> all through my multiple xslt files:
>
> <xsl:if test="ACCTTYPE = 'AAA' or
> ACCTTYPE = 'BBB' or
> ACCTTYPE = 'CCC' or
> ACCTTYPE = 'DDD' or
> ACCTTYPE = 'EEE'">
>
> I am curious if there is a way to define this once in
> a common xslt file which is then imported into my many
> xslt files, so if new types are added or removed, it
> only has to be changed once?
The template that contains the test, you can put that into a named template and xsl:import that stylesheet. Create a file that contains the types, e.g.
<types>
<type>AAA</type>
<type>BBB</type>
<type>CCC</type>
<type>DDD</type>
</types>
and in your stylesheet test it with
<xsl:if test="document('test.xml')/types/type = ACCTTYPE">
…
</xsl:if>
Cheers,
Jarno
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








