Subject: RE: xsl:include - problem setting relative path using href="file://...."
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Fri, 4 May 2001 10:13:59 +0100
|
> I am having a problem setting a relative path to xsl:include.
>
> I have tried using the following xsl:include:
> 1st scenario: <xsl:include href="file://globalVar.xsl"/>
> 2nd scenario: <xsl:include href="file:globalVar.xsl"/>
> In either scenario, the processor does not
> recognize that I am looking for a relative path.
Nor should it. A URL that begins with "file:" is by definition an absolute
URL.
>
> Is there not a way to use relative path in the href?
>
> I have tried just using the following code:
> <xsl:include href="globalVar.xsl"/>
That should work, provided the base URI (system ID) of your stylesheet is
known, and is itself an absolute URI.
Mike Kay
Software AG
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|