xsl-list
[Top] [All Lists]

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

2007-06-19 14:36:20
On 6/19/07, David Carlisle <davidc(_at_)nag(_dot_)co(_dot_)uk> 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 :)

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