xsl-list
[Top] [All Lists]

Re: Math: Removing X number of zeroes from number Y.

2005-06-07 16:57:29


I am handicaped by the fact that XSLT 2.0 does not
have a construct like xsl:call-function (similar to
xsl:call-template) .. 

you don't need a call-function instructuction. Functions are called just
by following their names with (...) in an XPath expression.

If you change <xsl:template name="x:f"> to <xsl:function name="x:f">
then change <xsl:call-template name="x:f"/> to
<xsl:sequence select="x:f()"/>


David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--