Re: xsltproc xalan:write problem

Nick Wellnhofer <[email protected]> Wed, 28 Feb 2018 21:16:24 +0100
Newsgroups gmane.comp.gnome.lib.xslt
Message-ID <[email protected]>
On 28/02/2018 16:01, Aaron Gray wrote:
> I needed the 'select' in order to allow XPath generation of filenames rather 
> than them being a set constant filename with 'href'.

The `href` attribute of xsl:document and exsl:document is interpreted as 
attribute value template. Strings in curly braces are evaluated as XPath 
expressions, for example

     <xsl:document href="{$directory}/{$file}.xml">

Nick