xsl-list
[Top] [All Lists]

dynamic variable name/implementation question

2005-08-25 11:17:06
Hi-
I'm trying to find a workaround or alternate implementation for a
particular problem I'm tring to solve.  I have various parameters that
are passed into the processor, and I would like to use their values in
the stylesheet.  However, I've found that XSLT 1.0 does not support
dynamic variables.
I would like to do the following:

XML:
...
<text-block>
   this is some text. Folowing is dynamic- <external-value
parameter="someParam"/> -preceding was dynamic
</text-block>
...

XSL:
...
<xsl:template match="external-vaue">
    <xsl:value-of select="$(_at_)parameter"/> <!-- this won't work -->
</xsl:template>
...

where there is a parameter "someParam" passed into the stylesheet - say
someParam="foo".  My output would be:
...
 this is some text. Folowing is dynamic- foo -preceding was dynamic
...

Has anybody else ever needed this fuctionality?



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