xsl-list
[Top] [All Lists]

[xsl] can a variable hold a node set?

2009-05-12 09:37:01
I made a template for replacing strings with translated value using
the lookup table. The lookup table is included in the template, so I
can access it with
document('')

But since there usually over 10 strings that have to be translated on
a single page, I think it's not efficient to call document('') 10
times.
Is there a way to copy the value of document('')/*/trans:tr to a
variable and then access that variable 10 times?
Can a variable hold the node set?
Would this make sense?

If yes, then how can I change this template? By the way, this template
is not completely finished yet, I still have to put
a real test condition instead of testing for true()


    <xsl:template name="translateString">
        <xsl:param name="str"/>
        <xsl:param name="toLang"/>
        <xsl:param name="fallback" select="'en'"/>
                
        <xsl:choose>
            <xsl:when test="true()">
                <!-- <xsl:value-of select="$fallback"/> -->
                                <xsl:value-of
select="document('')/*/trans:tr/tr_string[(_at_)str=$str]/*[name()=$toLang]"/>
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="'not found'"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>