RE: External Function Calls From Style Sheets

Subject: RE: External Function Calls From Style Sheets
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Thu, 13 Apr 2000 10:06:29 +0100
> I am looking for some examples of using XSLT style sheets that makes
> a call to an external function to perform part of its transformation.

The following example will work in both Saxon and xt. For Xalan and Oracle
you will have to make minor changes, e.g. to the namespace URI.

<xsl:stylesheet
  version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  xmlns:date="http://www.jclark.com/xt/java/java.util.Date";>

<xsl:template match="/">
  <html>
    <xsl:if test="function-available('date:to-string')
                  and function-available('date:new')">
      <p><xsl:value-of select="date:to-string(date:new())"/></p>
    </xsl:if>
  </html>
</xsl:template>

</xsl:stylesheet>


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


Current Thread