Saxon XSLT implements the XSLT 1.0 and XPath 1.0 Recommendations from the World Wide Web Consortium, found at http://www.w3.org/TR/xslt and http://www.w3.org/TR/xpath, which are referred to here collectively as "XSLT"
Saxon is 100% conformant to the mandatory requirements of these recommendations, except in some cases where incompatibilities have been introduced in the XSLT 2.0 and XPath 2.0 working drafts.
This release of Saxon implements many facilities defined in the draft XSLT 2.0 specification. This specification is not yet complete, though most features defined in the working drafts of 2 May 2003 are available.
Known restrictions include the following:
The xsl:schema-import
declaration is not implemented; and therefore,
it is not possible to refer to user-defined types.
There is no support for source documents, result documents, or temporary trees to be validated and annotated using a schema processor. (But elements and attributes that have a simple built-in type, for example xs:date, can be annotated as such).
The as
attribute on xsl:template
is not implemented
The option mode="#all"
on xsl:template
is not implemented
In xsl:for-each-group
, each item in the population is allocated to exactly
one group. Sequence-valued grouping keys are not supported, and the function current-grouping-key
is not implemented.
It is not possible to for a local variable to shadow another local variable with the same name.
The new XSLT 2.0 facilities for initiating a transformation are not provided (specifying a named template as the entry point, supplying an input collection, etc.)
The new xsl:output
option normalize-unicode
is not implemented.
The as
attribute is not implemented on elements xsl:key
or xsl:for-each-group
.
The xhtml
output method does not follow all the rules for XHTML formatting in
the draft XSLT 2.0 specification.
If key()
is called in a match pattern, the argument must be a string literal.
Saxon 7.4 implements
the full XPath 2.0 grammar with the exception of schema-related
aspects of the SequenceType
production. The SequenceType production currently allows either
a node-kind (e.g. element, attribute, document-node), a built-in simple schema type (e.g. xs:integer, xs:ID), or the
constructs "element(*,T)" and "attribute(*,T)" where T is a built-in simple schema type. Note
that the latter require the type annotation of the node to be T, this can be set using the type-annotation
attribute of xsl:element and xsl:attribute.
The restrictions in XPath 2.0 support include the following:
Saxon supports the following data types: string, boolean, decimal, duration, integer, float,
double, date, dateTime, time, anyURI, QName, with their literal forms and constructors. All built-in subtypes of
integer are implemented (but note, unsignedLong does not support values greater than the maximum
value of a Long). All built-in types derived by restriction from xs:string are implemented (but not
the list types IDREFS, NMTOKENS, and ENTITIES). The data types yearMonthDuration, dayTimeDuration,
untypedAtomic, and anyAtomicType are available in the namespace http://www.w3.org/2003/05/xpath-datatypes
.
Subtraction of two dates to yield a duration, and addition of a date to a duration, are not yet implemented.
Casting of a QName to a string, and vice versa, are not supported.
The type tests element(XX) and attribute(XX) are supported as part of the SequenceType production, but not in steps of a path expression or match pattern.
The state of implementation of all the standard functions is described in functions.html
Standard functions are implemented in the null namespace; it is not possible to use the namespace URI defined in the Functions and Operators specification.
Note that in the dateTime and time data types, the timezone is retained as part of the value. Equality and ordering is done by normalizing the time to UTC, but conversion to a string, and extraction of components, reflects the timezone as originally specified.
Constructor functions for schema-defined types are available in both the schema-defined namespaces
"http://www.w3.org/2001/XMLSchema" (conventional prefix xs) and "http://www.w3.org/2001/XMLSchema-datatypes"
(conventional prefix xsd). They are available for all the built-in data types that have been implemented.
The semantics are the same as a cast, that is, xs:dateTime($x)
means exactly the same as
cast as xs:dateTime($x)
.
Ordering is implemented as a total order over all durations, based on the average length of a month (one year = 365.242199 days).
In replace(), if the pattern matches a zero-length string, each character in the source text is replaced by two instances of the replacement text. This is the Java behavior.
There are many areas where the semantics implemented by Saxon still reflect the XPath 1.0 rules, for example the rules for conversion of numbers to strings. In some cases the XPath 2.0 rules in these areas are not yet stable (that is, there are open issues documented in the current working draft).
Saxon is dependant on the user-selected XML parser to ensure conformance with the XML 1.0 Recommendation and the XML Namespaces Recommendation.
Saxon implements the <?xml-stylesheet?>
processing instruction as described in the
W3C Recommendation Associating StyleSheets with XML Documents.
The href pseudo-attribute must be a URI identifying an XML document containing a stylesheet,
or a URI with a fragment identifier identifying an embedded stylesheet. The fragment must be the value
of an ID attribute declared as such in the DTD.
Saxon works with any SAX2-conformant XML parser that is configured to enable namespace processing. There is one limitation: on the startElement() call from the XMLReader to the ContentHandler, the QName (that is, the third argument) must be present. According to the SAX2 specification, namespace-aware parsers are not obliged to supply this argument. However, all commonly-used parsers appear to do so.
The XSLT specification says that the documentation for an implementation should specify which URI schemes are supported. Saxon supports the URI scheme implemented by the Java java.net.URL class, with the optional addition of a fragment identifier, as described below. Additionally, Saxon allows the user to nominate a URIResolver class which can be used to implement any URI scheme the user wants.
The XSLT specification says that the documentation for an implementation should specify for which media types fragment identifiers are supported. The standard URI resolver supports access to XML documents only. A simple fragment identifier is allowed, consisting of the value of an ID attribute in the document. The effect is to return the subdocument rooted at the element with this identifier if there is one, or an empty document otherwise. For example, the URI mydoc.xml#aaa locates the XML document mydoc.xml, and if it contains an element <eeee id="aaa">, where id is an attribute of type ID, then the document retrieved is an XML document with this <eeee> element as its outermost (document) element.
The values of the vendor-specific system properties are:
xsl:version | 1.8 |
xsl:vendor | SAXON n.n.n from Michael Kay |
xsl:vendor-url | http://saxon.sf.net/ |
xsl:product-name | SAXON |
xsl:product-version | n.n.n |
All these values are subject to change in future releases. Users wishing to test whether the processor is Saxon are advised to test whether the xsl:product system property has the value "SAXON".
The reason for returning 1.8 from xsl:version
is that the product
is not yet fully conformant with XSLT 2.0
Saxon implements a number of extensions to standard XSLT, following the rules for extension functions and extension elements where appropriate. The extensions are documented in extensions.html. They are all implemented in accordance with the provisions in the standard for extensibility.
The encodings supported on input depend entirely on your choice of XML parser.
The encodings available on output are the intersection of:
ascii, us-ascii, utf-8, utf8, utf-16, utf16, iso-8859-1, iso-8859-2 koi8-r, cp852, cp1250, windows-1250, cp1251, windows-1251 (again case-insensitive)
with whatever your Java VM supports.
If you select an encoding that the Java VM recognizes, but which is not in the above list, then the output will be written in the requested encoding, but all non-ASCII characters will be written as character references.
Saxon can be used with any SAX-conformant XML parser. The extent of XML conformance depends entirely on the chosen parser.
The default parser is the one supplied with JDK 1.4, which is a version of Apache Crimson.
Saxon accepts input (both source document and stylesheet) from any standards-compliant DOM implementation.
Saxon allows the result tree to be attached to any Document or Element node of an existing DOM. Any DOM implementation can be used, provided it is mutable.
Saxon's internal tree structure (which is visible through the Java API, including the case where Java extensions functions are called from XPath expressions) conforms with the minimal requirements of the DOM level 2 core Java language binding. This DOM interface is read-only, so all attempts to call updating methods throw an appropriate DOM exception. No optional features are implemented. The DOM interfaces to Saxon's tree structure do not reveal namespace nodes as attributes. This means it is not possible to get information about namespace declarations except by calls such as getPrefix() and getNamespaceURI() on Element and Attr nodes).
If an extension function returns a DOM Node or NodeList, this must consist only of Nodes in a tree constructed using Saxon. Since Saxon's trees cannot be updated using DOM methods, this means that the nodes returned must either be nodes from the original source tree, or nodes from a tree constructed using Saxon's proprietary API. It is not possible to construct the tree using DOM methods such as createElement() and createAttribute().
Saxon implements the JAXP 1.2 API (including TrAX), as defined in JSR-63. Saxon implements the interfaces in the javax.xml.transform package in full, including support for SAX, DOM, and Stream input, and SAX, DOM, and Stream output.
Note: The transformation interfaces in JAXP 1.2 are identical to JAXP 1.1: the new version only affects the XML parser interface, adding options to control schema validation.
There are restrictions in using transform() on a DOMSource when the node to be transformed is a node other than the root (i.e. the DOM Document node). These apply only if the supplied DOM is a third-party DOM, not if it is a Saxon-constructed tree. Specifically, if the start node is not the root then it must be an element; and it must not have an ancestor or preceding-sibling node, or an ancestor with a preceding-sibling node, that is an entity reference node or CDATA section node. In addition, the element must be part of a tree that is rooted at a Document node.
Saxon also implements part of the javax.xml.parsers API. Saxon no longer provides its own SAX parser, however it does provide a DocumentBuilder. The DOM interfaces are limited by the capabilities of the Saxon DOM, specifically the fact that it is read-only. Nevertheless, the DocumentBuilder may be used to construct a Saxon tree, or to obtain an empty Document node which can be supplied in a DOMResult to hold the result of a transformation.
Where the XSLT specification requires that an error be signaled, Saxon produces an error message and terminates stylesheet execution. In the case of errors detected at compile time, it attempts to report as many errors as possible before terminating; in the case of run-time errors, it terminates after the first error.
Where the XSLT specification states that the processor may recover from an error, Saxon takes one of three actions as described in the table below. Either it signals the error and terminates execution, or it recovers silently from the error in the manner permitted by the specification, or it places the action under user control. In the latter case there are three options: report the error and terminate, recover silently, or (the default) recover after writing a warning to the system error output stream. These actions can be modified by supplying a user-defined ErrorListener.
Handling of individual recoverable errors is described in the table below.
This list is incomplete and needs to be reviewed.
Error | Action |
There is more than one template rule that matches a node, with the same import precedence and priority | User option |
There is more that one xsl:namespace-alias statement for a given prefix, with the same import precedence | Recover silently |
An element name defined using xsl:element is invalid | User option |
An attribute name defined using xsl:attribute is invalid | User option |
There are several attribute sets with the same import precedence that define the same named attribute | Recover silently |
A processing-instruction name defined using xsl:processing-instruction is invalid | User option |
A node other than a text node is written to the result tree while instantiating xsl:attribute, xsl:comment, or xsl:processing-instruction | User option |
Invalid characters are written to the content of a comment or processing instruction | User option |
An attribute node or namespace node is written directly to the root of a result tree fragment, or to any other node that is not an element node. | User option |
A value supplied to the value attribute of xsl:number is negative or non-numeric | User option |
The document() function identifies a resource that cannot be retrieved | User option |
There are several xsl:output elements specifying the same attribute with the same import precedence | Recover silently |
disable-output-escaping is used for a text node while instantiating xsl:attribute, xsl:comment, or xsl:processing-instruction | Recover silently |
disable-output-escaping is used for a text node within a result tree fragment that is subsequently converted to a string or number | Recover silently |
disable-output-escaping is used for a text node containing a character that cannot be output using the target encoding | Recover silently |
Michael H. Kay
2 May 2003