xsl-list
[Top] [All Lists]

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

2005-06-21 08:55:35
Hey Micheal,
I tried that. Didnt seem to work. I am gonna post this
maybe one last time and see if i am doing something
wrong. (If not maybe someone can direct me on if there
is a possiblity of 'telling' Fop to use Saxon to
transform to docs its passed).

### XML###
<Document>
...
 <include href="fbackground.xml"
nodes="fb/section1/*"/>
...
###new XSL###

<xsl:template match="include">
 <xsl:variable name="beginNode"
select="'document(@href)/Document/'"/>
 <xsl:variable name="exp" select="@nodes"/>  <!--
stores section/* --> 
 <xsl:variable name="concatNode"
select="concat($beginNode,$exp)"/> <!-- not used but
stores 'document(@href)/Document/fb/section1/*' which
is what i want to get into apply-templates; I output
this just to see what it 'should' apply-templates
to--> 

        <xsl:if test="@nodes">
         <xsl:for-each
select="document(@href)/Document"> <!-- should call
this once for every include-->
          <xsl:apply-templates
select="dyn:evaluate($exp)"/> 
         </xsl:for-each> 
        </xsl:if>

</xsl:template>



Thanks Again everyone for helping,
Arian




--- Michael Kay <mike(_at_)saxonica(_dot_)com> wrote:


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





                
____________________________________________________ 
Yahoo! Sports 
Rekindle the Rivalries. Sign up for Fantasy Football 
http://football.fantasysports.yahoo.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>
--~--