Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We are using Xalan XSLT 1.0 in Java and we want to pass a variable to a template match to avoid hard-coding element names in the XSL file. The style sheet compiles, but the date returned is wrong. Are we using the correct syntax?

Possible XML inputs...

 <books>   
    <book/>
    <book/>
 </books>

 <dvds>
     <dvd/>
     <dvd/>
 </dvds>


<xsl:variable name="matchElement" select="'book'"/>
<!-- OR -->
<xsl:variable name="matchElement" select="'dvd'"/>

<xsl:template match="/*[local-name() = $matchElement]">  
share|improve this question

2 Answers

up vote 1 down vote accepted

This xsl:template:

<xsl:template match="/*[local-name() = $matchElement]"> 

is matching from root.

Either remove the / from /* or change it to //* (depending on how the rest of your stylesheet is designed).

Also, if you use xsl:param instead of xsl:variable, you can set the value from the command line.

share|improve this answer
What's the syntax for supplying arguments from the command line to the xslt processor? – Raffian Nov 7 '11 at 20:54
-PARAM name expression See xml.apache.org/xalan-j/commandline.html – Daniel Haley Nov 7 '11 at 21:12
I switched to * instead of /, worked great, thanks! – Raffian Nov 7 '11 at 22:42
Can someone please explain the downvote? – Daniel Haley Nov 8 '11 at 6:33
not sure who down-voted it, but it worked for me, don't lose sleep over a down vote, there are greater tragedies in the world :-) – Raffian Nov 8 '11 at 19:49
show 1 more comment

Your variable syntax is correct, but note that it is technically illegal to use variable or parameter references in XSLT 1.0 match patterns. It is possible, however, that Xalan has implemented this behavior outside of the standard. (@DevNull's comment about your expression also applies.)

share|improve this answer
Yes, I believe this is correct. Variable references in match patterns are not allowed by XSLT 1.0, but they are allowed in XSLT 2.0, and they are allowed in Xalan, despite the fact that in all (most?) other respects it implements XSLT 1.0. – Michael Kay Nov 7 '11 at 23:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.