Subject: Re: Applying external XML
From: Rob Belics <rob_belics@xxxxxxxxxxx>
Date: Tue, 02 Feb 2010 14:59:18 -0600
|
On Tue, 2010-02-02 at 20:40 +0200, Israel Viente wrote:
> Try to use absolute paths in menu.xml or do something like:
>
> <xsl:for-each select="item-uri">
> <xsl:variable name="fileName" select="normalize-space(.)"/>
> <xsl:variable name="infile"
> select="concat('file:///',$infilepathname, '/', $fileName)" />
> <xsl:apply-templates select="doc($infile)"/>
> </xsl:for-each>
>
> Israel
>
Thanks but I should have said this will take place client side in a
browser so I can't use xslt2 or fo.
|