|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: dynamic document() template problem (with Xalan)
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@xxxxxxxxxxxx> 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/
>
>
____________________________________________________
Yahoo! Sports
Rekindle the Rivalries. Sign up for Fantasy Football
http://football.fantasysports.yahoo.com
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








