XSLT Module

From BaseX Documentation
Jump to navigation Jump to search

This module contains XQuery functions and variables to perform XSLT transformations. All functions are preceded by the xslt: prefix, which is linked to the http://www.basex.org/xslt namespace. By default, this module relies on the internal XSLT 1.0 implementation of Java. If Saxon is found in the classpath, however, XSLT 2.0 is used.

Note that this module has been introduced with Version 6.7.1 of BaseX.

$xslt:processor

Signatures $xslt:processor as xs:string
Summary This variable returns the name of the applied XSLT processor (currently: Java or Saxon).

$xslt:version

Signatures $xslt:version as xs:string
Summary This variable returns the supported XSLT version (currently: 1.0 or 2.0).

xslt:transform

Signatures xslt:transform($input as item(), $stylesheet as item()) as node()
xslt:transform($input as item(), $stylesheet as item(), $params as item()) as node()
Summary Transforms the document specified by $input, using the XSLT template specified by $stylesheet, and returns the result as node() instance. $input and $stylesheet may be
  • an xs:string, containing the path to the document,
  • an xs:string, containing the document itself, or
  • a node() containing the actual document.

If Saxon is found in the Java classpath, XSLT 2.0 is used. Otherwise, Java’s internal XSLT 1.0 is used to perform the transformation.