[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Getting the path to the stylesheet [RETRY]

Subject: Re: Getting the path to the stylesheet [RETRY]
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Thu, 05 Jul 2012 21:51:40 -0400
Re:  Getting the path to the stylesheet [RETRY]
At 2012-07-05 15:22 +0100, Ihe Onwuka wrote:
On Thu, Jul 5, 2012 at 3:06 PM, Michael Kay <mike@xxxxxxxxxxxx> wrote:
>
> On 05/07/2012 15:00, Ihe Onwuka wrote:
>>
>> What is the standard way of getting the absolute path to a stylesheet
>> so that references in the result tree can be resolved relative to it.
>>
>>
>
> Call the static-base-uri() function.
>

Sorry for not clarifyingl, does that work for XSLT 1.0, if not what does.

The example below shows you get the base URI of the stylesheet when using XSLT 1.0. I've needed this when working with the OASIS specification stylesheets.


I hope this helps.

. . . . . . . . . . Ken

~/t/ftemp $ pwd
/Users/admin/t/ftemp
~/t/ftemp $ xslt ihe.xml ihe.xsl

Stylesheet URI: file:/Users/admin/t/ftemp/ihe.xsl

~/t/ftemp $ cat ihe.xsl
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xsl:stylesheet
[
<!NOTATION xsl SYSTEM "">
<!ENTITY static-base-uri SYSTEM "" NDATA xsl>
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

<xsl:output method="text"/>

<xsl:template match="/">
  <xsl:variable name="static-base-uri">
    <xsl:for-each select="document('')">
      <xsl:value-of select="unparsed-entity-uri('static-base-uri')"/>
    </xsl:for-each>
  </xsl:variable>
Stylesheet URI: <xsl:value-of select="$static-base-uri"/>
  <xsl:text>&#xa;&#xa;</xsl:text>
</xsl:template>

</xsl:stylesheet>
~/t/ftemp $ cat ihe.xml
<?xml version="1.0" encoding="UTF-8"?>
<doc/>
~/t/ftemp $


-- Public XSLT, XSL-FO, UBL and code list classes in Europe -- Oct 2012 Contact us for world-wide XML consulting and instructor-led training Free 5-hour lecture: http://www.CraneSoftwrights.com/links/udemy.htm Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Google+ profile: https://plus.google.com/116832879756988317389/about Legal business disclaimers: http://www.CraneSoftwrights.com/legal

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.