Re: [xsl] Locating Things Relative to Location of Style Sheet

Subject: Re: [xsl] Locating Things Relative to Location of Style Sheet
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 5 Dec 2002 18:39:28 GMT
> Is there a way using normal XSLT facilities to get or operate relative 
> to the location of the style sheet without passi

yes document() works relative to the stylesheet if you give it a string
rather than a node. (Given a node it works relative to the node's uri)
so you can just force the uri to be a string with string().

Or what I usually do as it's more obvious when you come back after
coffee is to explictly force the base uri to be the base uri of the
stylesheet by giving document('') as the second argument to document()

document(@src,document(''))
fetches the thing in @src relative to teh base uri of the stylesheet



David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread