Difference between revisions of "XSLT Module"

From BaseX Documentation
Jump to navigation Jump to search
Line 34: Line 34:
 
* an <code>xs:string</code>, containing the document itself, or
 
* an <code>xs:string</code>, containing the document itself, or
 
* a <code>node()</code> containing the actual document.
 
* a <code>node()</code> containing the actual document.
The <code>$params</code> argument allows two flavors as well. It can be specified as
+
The <code>$params</code> argument can be used to bind variables to a stylesheet. It can be specified as
* <code>element(xslt:parameters)</code>: <code>&lt;xslt:parameters/&gt;</code> is used as root element, and the parameters are specified as child nodes, with the element name representing the key and the text node representing the value:<br /><code>&lt;xslt:key1/&gt;value1&lt;/xslt:key1/&gt;</code> ...
+
* <code>element(xslt:parameters)</code>: <code>&lt;xslt:parameters/&gt;</code> is used as root element, and the parameters are specified as child nodes, with the element name representing the key and the text node representing the value:<br /><code>&lt;xslt:parameters&gt;<br/>&nbsp;&nbsp;&lt;xslt:key1&gt;value1&lt;/xslt:key1&gt;<br/>&nbsp;&nbsp;...<br/>&lt;/xslt:parameters&gt;</code>
 
* [[Map_Functions|map structure]]: All parameters are directly represented as key/value pairs:<br /><code>map { "key1" := "value1", ... </code>}
 
* [[Map_Functions|map structure]]: All parameters are directly represented as key/value pairs:<br /><code>map { "key1" := "value1", ... </code>}
 
If Saxon is found in the Java classpath, <code>XSLT 2.0</code> is used. Otherwise, Java’s internal <code>XSLT 1.0</code> implementation is used to do the transformation.<br />
 
If Saxon is found in the Java classpath, <code>XSLT 2.0</code> is used. Otherwise, Java’s internal <code>XSLT 1.0</code> implementation is used to do the transformation.<br />

Revision as of 14:38, 10 July 2011

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.

The $params argument can be used to bind variables to a stylesheet. It can be specified as

  • element(xslt:parameters): <xslt:parameters/> is used as root element, and the parameters are specified as child nodes, with the element name representing the key and the text node representing the value:
    <xslt:parameters>
      <xslt:key1>value1</xslt:key1>
      ...
    </xslt:parameters>
  • map structure: All parameters are directly represented as key/value pairs:
    map { "key1" := "value1", ... }

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

Examples

Example 1: Basic XSL transformation with dummy document and without parameters

basic.xslt

<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
  <xsl:template match="/">
    <result/>
  </xsl:template>
</xsl:stylesheet>

Query:

xslt:transform(<dummy/>, 'basic.xslt')

Result:

<result/>

Example 2: XSLT transformation of an input document

Query:

let $in :=
  <books>
    <book>
      <title>XSLT Programmer´s Reference</title> 
      <author>Michael H. Kay</author> 
    </book>
    <book>
      <title>XSLT</title> 
      <author>Doug Tidwell</author> 
      <author>Simon St. Laurent</author>
      <author>Robert Romano</author>
    </book>
  </books>
let $style :=
  <html xsl:version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns='http://www.w3.org/1999/xhtml'>
    <body>
      <h1>Books</h1>
      <ul>
        <xsl:for-each select='books/book'>
        <li>
          <b><xsl:apply-templates select='title'/></b>: <xsl:value-of select='string-join(author, ", ")'/>
        </li>
        </xsl:for-each>
      </ul>
    </body>
  </html>
return xslt:transform($in, $style)

Result:

<html xmlns="http://www.w3.org/1999/xhtml">
  <body>
    <h1>Books</h1>
    <ul>
      <li><b>XSLT Programmer´s Reference</b>: Michael H. Kay</li>
      <li><b>XSLT</b>: Doug Tidwell, Simon St. Laurent, Robert Romano</li>
    </ul>
  </body>
</html>