xsl-list
[Top] [All Lists]

Re: [xsl] xml:base URI ignored by document()

2010-07-27 02:44:12
According to the XSLT 2.0 spec, "The second argument [to document()], if
present, is a node whose base URI is used to resolve any relative URI
references contained in the first argument."
So I construct a node whose base URI is set to the parameter $base-uri:
       <xsl:variable name="base-uri-node">
           <dummy xml:base="{$base-uri}" />
       </xsl:variable>

:) I don't know if that would work or not, but its an interesting way
of approaching it...

I think you really want the resolve-uri() function:

http://www.w3.org/TR/xpath-functions/#func-resolve-uri

cheers
andrew
-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

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