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

Re: variable in xsl:template match

Subject: Re: variable in xsl:template match
From: Abel Braaksma <abel.online@xxxxxxxxx>
Date: Thu, 26 Apr 2007 17:10:59 +0200
Re:  variable in xsl:template match
Abel Braaksma wrote:
Garvin Riensche wrote:
Hello,

Im am wondering if it is possible to pass an xpath expression (or part of it) from the commandline to the match attribute of a template.

If you do care about namespaces, you can do: <xsl:param name="target" as="xs:QName" select="xs:QName('ns:position') />

<xsl:template match="/root/*[local-name-from-QName($targer) = local-name() and namespace-uri-from-QName($target) = namespace-uri()]/child" >....



Hmm, that was a little verbose. This also works well and is easier to read and understand, and now the parameter can be a simple string (but make sure the prefix is the same as the in-scope prefix of the element you are testing, which in turn means that you must choose your prefixes wisely):

<xsl:param name="target" as="xs:string" select=" 't:child1' " />
<xsl:template match="/root/*[resolve-QName($target, .) = resolve-QName(name(), .)]/child" >....


(I am not really accustomed with these functions, not sure what pitfalls you should be aware of before applying this in a stable environment)

Cheers,
-- Abel Braaksma

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-2007 All Rights Reserved.