Re: [xsl] Dynamic pipelining in XSLT 2.0 w/ Saxon extensions

Subject: Re: [xsl] Dynamic pipelining in XSLT 2.0 w/ Saxon extensions
From: "Andrew Welch" <andrew.j.welch@xxxxxxxxx>
Date: Tue, 19 Jun 2007 22:28:54 +0100
On 6/19/07, David Carlisle <davidc@xxxxxxxxx> wrote:


> currently if you have a call to doc('config.xml') in your compiled

ah but if you know that there's a top level variable of the form
<xsl:variable name="x" select="doc('config.xml')"/>
at the top level of the stylessheet (or even if you don't) you can run a
small transformation over the stylesheet document  that inlines this
transfoming it to
<xsl:variable name="x">
.. a copy of config.xml
<xsl:stylesheet>

then compile the modified stylesheet tree  and you've slurped up the
config file. Doesn't work (so easily) if you have to worry about base
URIs and things but in simple cases works well enough (I hope)

yes thats the manual equivalent :)


Current Thread