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

defining namespace / functions (XSLT 1)

Subject: defining namespace / functions (XSLT 1)
From: Kaleb Pederson <kpederson@xxxxxxxxxxxx>
Date: Mon, 23 Feb 2004 10:03:17 -0800
namespace function
I currently have some stylesheets that make use of various extension 
functions, but I would like to hide them in a namespace/function so I can 
simply call a single function that will handle the implementation details.  
What would be the best way of going about this?

I'm fairly new to XSLT, but think the following would work:

<xsl:template name="my:node-set">
	<xsl:param name="inval"/>
	<xsl:if test="$inval != ''">
		... choose the right extension / function ...
		... pass $inval as parameter ...
	</xsl:if>
</xsl:template>

If I were to do this, and in the case that I return a node-set, would I still 
be able to perform all the standard XPath queries on it or would it somehow 
get converted to a result set?  This implementation seems to have its 
limitations, but is better than having many identical xsl:choose statements 
in there.

I've found some archived messages by Jeni and others indicating that some 
discussions were in place (about three years ago) to allow the creation of 
functions?

Any suggestions? Any good links?

Thanks for the help.

--Kaleb
PS: a sample of one of my current methodologies follows

///////// my stylesheet currently has something like ////////////
<xsl:choose>
	<!-- search for the various node-set functions -->
	<xsl:when test="function-available('msxsl:node-set')">
		<xsl:apply-templates
			select="msxsl:node-set($sorted-pages)/site-indexed-content" />
	</xsl:when>
	<xsl:when test="function-available('xalan:nodeset')">
		<xsl:apply-templates 
			select="xalan:nodeset($sorted-pages)/site-indexed-content" />
	</xsl:when>
	<xsl:when test="function-available('exsl:node-set')">
		<xsl:apply-templates
			select="exsl:node-set($sorted-pages)/site-indexed-content" />
	</xsl:when>
	<xsl:otherwise>
		<xsl:text>The XML implementation in use is not supported</xsl:text>
	</xsl:otherwise>
</xsl:choose>

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


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.