On 14/12/2011 11:49, Clint Redwood wrote:
Hi,
I've been looking at the xsl functions for some way of gaining the base output
uri, or better still, the output document name. I can find how to get the input
document, the static context, but not the output document name.
I'm using Saxon with the -o parameter, so I could add an extra parameter to my stylesheet
such as "outputURI=x", but that would seem messy.
I'm sure it's really obvious, but I've not found anything yet.
Thanks in advance.
Clint.
There's no packaged way of doing this in the standard function library
or in Saxon, but you can write an extension function easily enough.
Starting from "context" as the XPathContext object, it's just
context.getController().getBaseOutputURI();
which returns the base output URI as a string.
Michael Kay
Saxonica
--~------------------------------------------------------------------
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>
--~--