xsl-list
[Top] [All Lists]

RE: dynamic document() template problem (with Xalan)

2005-06-21 07:47:33

I have access to the EXSLT dyn:evaluate() function...
I tried doing something using this to no avail.

<xsl:apply-templates
select="document(@href)/Document/dyn:evaluate(current()/@nodes)"/>



If you're using a 1.0 processor then you can't use a function call as a step
in a path. You need to do something like

<xsl:variable name="exp" select="@nodes"/>
<xsl:for-each select="document(@href)/Document">
  <xsl:apply-templates select="dyn:evaluate($exp)"/>
</xsl:for-each>

Michael Kay
http://www.saxonica.com/



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