xsl-list
[Top] [All Lists]

[xsl] Error when params are in Xpath expression

2009-05-12 07:07:49
<!-- get translation of a string -->
    <xsl:template name="translateString">
        <xsl:param name="str" select="'recent_albums'"/>
        <xsl:param name="toLang"/>
        <xsl:param name="fallback" select="'en'"/>
                
        <xsl:choose>
            <xsl:when test="true()">

                                <xsl:value-of
select="document('')/*/trans:tr/tr_string[(_at_)str=$str]/$toLang"/>
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="'not found'"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>


I get errors when running this template.
If I manually replace the $str and $toLang, then I am getting the
correct result.

<xsl:value-of 
select="document('')/*/trans:tr/tr_string[(_at_)str='recent_images']/ru"/>

What is wrong with my syntax that uses params? Are params allowed in
Xpath expression?

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--