[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: use-when

Subject: Re: use-when
From: Andriy Gerasika <andriy.gerasika@xxxxxxxxx>
Date: Fri, 17 Dec 2010 00:23:36 +0200
Re:  use-when
On 12/10/2010 01:55 AM, G. Ken Holman wrote:
At 2010-12-10 01:43 +0200, Andriy Gerasika wrote:
I cannot figure out how to use use-when attribute, beyond standard
"system-property('file-separator')" example.

That is the only context of using it, as those are the only properties defined when the use-when= attributes are evaluated.

Have you yet tried using modes for your problem?


Yes, I use modes extensively http://www.gerixsoft.com/blog/xslt/pipeline http://www.gerixsoft.com/blog/xslt/include-mode-new

but what I need, is to separate static portion of xpath to use-when, both for speed and readability purposes, conditions can be quite complex:
<xsl:template match="some-xpath1" use-when="$first-config-option=('A','B') or $another-config-option='C'">


where config options are set on TransformerFactory level

any ideas?

<xsl:choose>
<xsl:when test="$file-set='A'">
<xsl:apply-templates mode="file-set-A"/>
</xsl:when>
<xsl:when test="$file-set='B'">
<xsl:apply-templates mode="file-set-B"/>
</xsl:when>
<xsl:when test="$file-set='C'">
<xsl:apply-templates mode="file-set-C"/>
</xsl:when>
</xsl:choose>

...

<xsl:template match="some-xpath1" mode="file-set-A">
<xsl:template match="some-xpath2" mode="file-set-B">
<xsl:template match="some-xpath3" mode="file-set-C">

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.