The following associated resources are available: Specification in XML format, XSD 1.1 Schema for XSLT 4.0 Stylesheets (non-normative), Relax-NG Schema for XSLT 4.0 Stylesheets (non-normative), Stylesheet for XML-to-JSON conversion (non-normative)
Copyright © 2025 W3C® (MIT, ERCIM, Keio, Beihang). W3C liability, trademark and document use rules apply.
This specification defines the syntax and semantics of XSLT 4.0, a language designed primarily for transforming XML documents into other XML documents, but also offering support for other data formats including JSON, HTML, and CSV.
XSLT 4.0 is a revised version of the XSLT 3.0 Recommendation [XSLT 3.0] published on 8 June 2017. Changes are presented in 1.2 What’s New in XSLT 4.0?.
XSLT 4.0 is designed to be used in conjunction with XPath 4.0, which is defined in [XPath 4.0]. XSLT shares the same data model as XPath 4.0, which is defined in [XDM 4.0], and it uses the library of functions and operators defined in [Functions and Operators 4.0]. XPath 4.0 and the underlying function library introduce a number of enhancements, for example the availability of union and record types.
This document contains hyperlinks to specific sections or definitions within other documents in this family of specifications. These links are indicated visually by a superscript identifying the target specification: for example XP for XPath 4.0, DM for the XDM data model version 4.0, FO for Functions and Operators version 4.0, SG for XSLT Streaming version 4.0.
An optional feature of the XSLT language is support for streamed transformations. The XSLT 4.0 specification has been modularized so that streaming is now described in a separate specification document. This has been done in order to make the specifications more manageable, both for editors and readers: it does not alter the status of streaming as an optional feature, available in some processors and not others.
This section describes the status of this document at the time of its publication. Other documents may supersede this document.
This document is a working draft developed and maintained by a W3C Community Group, the XQuery and XSLT Extensions Community Group unofficially known as QT4CG (where "QT" denotes Query and Transformation). This draft is work in progress and should not be considered either stable or complete. Standard W3C copyright and patent conditions apply.
The community group welcomes comments on the specification. Comments are best submitted as issues on the group's GitHub repository.
The community group maintains two extensive test suites, one oriented to XQuery and XPath, the other to XSLT. These can be found at qt4tests and xslt40-test respectively. New tests, or suggestions for correcting existing tests, are welcome. The test suites include extensive metadata describing the conditions for applicability of each test case as well as the expected results. They do not include any test drivers for executing the tests: each implementation is expected to provide its own test driver.
The publications of this community group are dedicated to our co-chair, Michael Sperberg-McQueen (1954–2024).
XSLT is a programming language designed principally to transform data.
A transformation in the XSLT language is expressed in the form of a stylesheet. A stylesheet is made up of one or more well-formed XML [XML 1.0] documents conforming to the Namespaces in XML Recommendation [Namespaces in XML].
A stylesheet generally includes elements that are defined by XSLT as well as elements
               that are not defined by XSLT. XSLT-defined elements are distinguished by use of the
               namespace http://www.w3.org/1999/XSL/Transform (see 3.1.1 XSLT Namespace), which is referred to in this specification as the
                  XSLT namespace. Thus this specification
               is a definition of the syntax and semantics of the XSLT namespace.
The term stylesheet reflects the fact that one of the important roles of XSLT is to add styling information to an XML source document, by transforming it into a document consisting of XSL formatting objects (see [XSL-FO]), or into another presentation-oriented format such as HTML, XHTML, or SVG. However, XSLT is used for a wide range of transformation tasks, not exclusively for formatting and presentation applications.
A transformation expressed in XSLT describes rules for transforming input data into output data. The inputs and outputs will all be instances of the XDM data model, described in [XDM 4.0]. In the simplest and most common case, the input is an XML document referred to as the source document or source tree, and the output is an XML document referred to as the result tree. It is also possible to process multiple source documents, to generate multiple result documents, and to handle formats other than XML.
The transformation is achieved by a set of template rules. A template rule associates a pattern, which typically matches nodes in the source document, with a sequence constructor. In many cases, evaluating the sequence constructor will cause new nodes to be constructed, which can be used to produce part of a result tree. The structure of the result trees can be completely different from the structure of the source trees. In constructing a result tree, nodes from the source trees can be filtered and reordered, and arbitrary structure can be added. Because patterns can point to nodes according to typological features, a stylesheet can be applicable to a wide class of source documents that have similar tree structures.
Stylesheets are modular; they may contain several packages developed independently of each other, and each package may consist of several stylesheet modules.
[Definition: A stylesheet consists of one or more packages: specifically, one top-level package and zero or more library packages.]
[Definition: For a given transformation, one package functions as the top-level package. The
                  complete stylesheet is assembled by finding
                  the packages referenced directly or indirectly from the top-level package using
                     xsl:use-package declarations: see 3.5.2 Dependencies between Packages.]
[Definition: Every package within a stylesheet, other than the top-level package, is referred to as a library package.]
[Definition: Within a package, one stylesheet module functions as the
                     principal stylesheet module. The complete package is assembled by
                  finding the stylesheet modules referenced directly or indirectly from the
                  principal stylesheet module using xsl:include and
                     xsl:import elements: see 3.11.2 Stylesheet Inclusion and 3.11.3 Stylesheet Import.]
Changes in 4.0 ⬇
Use the arrows to browse significant changes since the 3.0 version of this specification.
Sections with significant changes are marked Δ in the table of contents.
XSLT 4.0 is a revised version of the XSLT 3.0 Recommendation [XSLT 3.0] published on 8 June 2017.
The changes in this version of the language are relatively minor usability enhancements. There are no changes to the data model or processing model. Instead, the specification attempts to fill a number of gaps in functionality resulting from feedback from XSLT 3.0 users. The main areas covered are:
Enhancements to the type system to allow more expressive constraints, especially for maps and atomic values.
Additional functionality for processing arrays.
Exploitation of the power afforded by first-class function items.
XSLT 4.0 also includes optional facilities to serialize the results of a transformation, by means of an interface to the serialization component described in [Serialization 4.0].
XSLT 4.0 requires support for XPath 4.0.
A full list of changes is at I Changes since XSLT 3.0.
For a full glossary of terms, see B Glossary.
[Definition: The software responsible for transforming source trees into result trees using an XSLT stylesheet is referred to as the processor. This is sometimes expanded to XSLT processor to avoid any confusion with other processors, for example an XML processor.]
[Definition: A specific product that performs the functions of an XSLT processor is referred to as an implementation.]
[Definition: The term tree is used (as in [XDM 4.0]) to refer to the aggregate consisting of a parentless node together with all its descendant nodes, plus all their attributes and namespaces.]
Note:
The use of the term tree in this document in phrases such as source tree, result tree, and temporary tree does not imply the use of a data structure in memory that holds the entire contents of the document at one time. It implies rather a logical view of the XML input and output in which elements have a hierarchic relationship to each other. When a source document is being processed in a streaming manner, access to the nodes in this tree is constrained, but it is still viewed and described as a tree.
The output of a transformation consists of the following:
[Definition: A principal result: this can be any sequence of items (as defined in [XDM 4.0]).] The principal result is the value returned by the function or template in the stylesheet that is nominated as the entry point, as described in 2.3 Initiating a Transformation.
[Definition: Zero or more
                           secondary results: each secondary result can be any sequence
                        of items (as defined in [XDM 4.0]).] A
                     secondary result is the value returned by evaluating the body of an
                        xsl:result-document instruction.
Zero or more messages. Messages are generated by the
                        xsl:message and xsl:assert instructions, and are described in 23.1 Messages and 23.2 Assertions.
Static or dynamic errors: see 2.12 Error Handling.
The principal result and the secondary results may be post-processed as described in 2.3.6 Post-processing the Raw Result.
[Definition: The term result tree is used to refer to any tree constructed by instructions in the stylesheet. A result tree is either a final result tree or a temporary tree.]
[Definition: A final result tree is a result tree that forms part of the output of a transformation: specifically, a tree built by post-processing the items in the principal result or in a secondary result. Once created, the contents of a final result tree are not accessible within the stylesheet itself.] Any final result tree may be serialized as described in 26 Serialization.
               [Definition: The term source tree
                  means any tree provided as input to the transformation. This includes the document
                  containing the global context item if any, documents containing
                     nodes present in the initial match selection,
                  documents containing nodes supplied as the values of stylesheet parameters, documents
                  obtained from the results of functions such as document,
                     doc, and collection, documents read using the xsl:source-document
                     instruction, and documents returned by extension functions or
                  extension instructions. In the context of a particular XSLT instruction, the term
                     source tree means any tree provided as input to that instruction;
                  this may be a source tree of the transformation as a whole, or it may be a
                     temporary tree produced during the
                  course of the transformation.]
            
[Definition: The term temporary tree means any tree that is neither a source tree nor a final result tree.] Temporary trees are used to hold intermediate results during the execution of the transformation.
Unless otherwise stated, the term “tree” refers to a tree rooted at a parentless node: that is, the term does not include subtrees of larger trees. Every node therefore belongs to exactly one tree.
In this specification the phrases must, must not, should, should not, may, required, and recommended, when used in normative text and rendered in small capitals, are to be interpreted as described in [RFC2119].
Where the phrase must, must not, or required relates to the behavior of the XSLT processor, then an implementation is not conformant unless it behaves as specified, subject to the more detailed rules in 27 Conformance.
Where the phrase must, must not, or required relates to a stylesheet then the processor must enforce this constraint on stylesheets by raising an error if the constraint is not satisfied.
Where the phrase should, should not, or recommended relates to a stylesheet then a processor may produce warning messages if the constraint is not satisfied, but must not treat this as an error.
[Definition: In this specification, the term implementation-defined refers to a feature where the implementation is allowed some flexibility, and where the choices made by the implementation must be described in documentation that accompanies any conformance claim.]
[Definition: The term implementation-dependent refers to a feature where the behavior may vary from one implementation to another, and where the vendor is not expected to provide a full specification of the behavior.] (This might apply, for example, to limits on the size of source documents that can be transformed.)
In all cases where this specification leaves the behavior implementation-defined or implementation-dependent, the implementation has the option of providing mechanisms that allow the user to influence the behavior.
A paragraph labeled as a Note or described as an example is non-normative.
Many terms used in this document are defined in the XPath specification [XPath 4.0] or the XDM specification [XDM 4.0]. Particular attention is drawn to the following:
[Definition: The term atomization is defined in [XPath 4.0] section 2.5.3 Atomization. It is a process that takes as input a sequence of items, and returns a sequence of atomic items, in which the nodes are replaced by their typed values as defined in [XDM 4.0]. Arrays (see 22 Arrays) are atomized by atomizing their members, recursively.] For some items (for example, elements with element-only content, function items, and maps, atomization raises a dynamic error.
                     [Definition: The term typed
                           value is defined in [XDM 4.0] section 7.6.14 typed-value Accessor.
                        Every node, other than an element whose type
                           annotation identifies it as having element-only content, has a
                           typed value. For example, the
                           typed value of an attribute of
                        type xs:IDREFS is a sequence of zero or more
                           xs:IDREF values.]
                  
[Definition: The term string value is defined in [XDM 4.0] section 7.6.12 string-value Accessor. Every node has a string value. For example, the string value of an element is the concatenation of the string values of all its descendant text nodes.]
                     [Definition: The term
                           XPath 1.0 compatibility mode is defined in 
                        [XPath 4.0] section 2.2.1 Static Context. This is a setting in the static
                        context of an XPath expression; it has two values, true and
                           false. When the value is set to true, the semantics of
                        function calls and certain other operations are adjusted to give a greater
                        degree of backwards compatibility between XPath
                        4.0 and XPath 1.0.]
                  
[Definition: The term function definition is defined in [XPath 4.0] section 2.2.1 Static Context. It is the definition of a function that can be called statically from within an XPath expression: in the case of XSLT it typically means either a stylesheet function, or a built-in function such as those defined in [Functions and Operators 4.0]]
[Definition: A function definition has an arity range, which defines the minimum and maximum number of arguments that must be supplied in a call to the function. The static context can contain multiple function definitions with the same name, provided that their arity ranges do not overlap.]
[Definition: An XSLT element is an element in the XSLT namespace whose syntax and semantics are defined in this specification.] For a non-normative list of XSLT elements, see C Element Syntax Summary.
In this document the specification of each XSLT element is preceded by a summary of its syntax in the form of a model for elements of that element type. A full list of all these specifications can be found in C Element Syntax Summary. The meaning of the syntax summary notation is as follows:
An attribute that is required is shown with its name in bold. An attribute that may be omitted is shown with a question mark following its name.
An attribute that is deprecated is shown in a grayed font within square brackets.
The string that occurs in the place of an attribute value specifies the allowed
                     values of the attribute. If this is surrounded by curly brackets
                        ({...}), then the attribute value is treated as an attribute value template, and
                     the string occurring within curly brackets specifies the allowed values of the
                     result of evaluating the attribute value template. Alternative allowed values
                     are separated by |. A quoted string indicates a value equal to
                     that specific string. An unquoted, italicized name specifies a particular type
                     of value.
The types used, and their meanings, are as follows:
boolean
                           One of the strings "yes",
                              "true", or "1" to indicate the value
                              true, or one of the strings "no",
                              "false", or "0" to indicate the value
                              false. Note: the values are synonyms; where this
                              specification uses a phrase such as “If required='yes' is
                              specified ...” this is to be interpreted as meaning “If the attribute
                              named required is present, and has the value
                              yes, true, or 1 (after
                              stripping leading and trailing whitespace) ...”.
                           
stringAny string.
expressionAn XPath expression.
patternA pattern as described in 6.3 Patterns.
item-typeAn ItemTypeXP as defined in the XPath 4.0 specification.
sequence-typeA SequenceTypeXP as defined in the XPath 4.0 specification.
uri; urisA URI, for example a namespace URI or a collation URI; a whitespace-separated list of URIs.
qnameA lexical QName as defined in 5.1.1 Qualified Names.
eqname; eqnamesAn EQName as defined in 5.1.1 Qualified Names; a whitespace-separated list of EQNames.
token; tokensA string containing no significant whitespace; a whitespace-separated list of such strings.
nmtoken; nmtokensA string conforming to the XML schema rules for the type
                                 xs:NMTOKEN; a whitespace-separated list of such
                              strings.
charA string comprising a single Unicode character.
languageA string in the value space of xs:language, or a zero-length string.
integerAn integer, that is, a string that is castable to the schema type
                                 xs:integer.
decimalA decimal value, that is, a string that is castable to the schema
                              type xs:decimal.
ncname; ncnamesAn unprefixed name: a string that is castable to the schema type
                                 xs:NCName; a whitespace-separated list of such strings.
prefix; prefixesAn xs:NCName representing a namespace prefix, which must
                              be in scope for the element on which it appears;
                              a whitespace-separated list of such strings.
idAn xs:NCName used as a unique identifier for an element
                              in the containing XML document.
Except where the set of allowed values of an attribute is specified using the italicized name string or char, leading and trailing whitespace in the attribute value is ignored. In the case of an attribute value template, this applies to the effective value obtained when the attribute value template is expanded.
XPath comments (delimited by (: ... :))
                  are permitted anywhere that inter-token whitespace is permitted in attributes whose
                  type is given as expression, pattern, item-type, 
                     or sequence-type, and are not permitted in attributes of other types
                     (other than within expressions enclosed by curly braces within an attribute value template).
If an attribute has a simple default value, this is shown between tortoise-shell
                  brackets (for example 〔'no'〕). Where no default is shown,
                  the consequence of omitting the attribute is explained in the prose narrative. 
                  Default values shown in the summary apply only where the attribute itself
                  is applicable; if an attribute is not permitted to appear in the particular context,
                  then its default value should be ignored. (For example, the stable
                     attribute of xsl:sort is shown as having a default value
                     of 'yes', but the attribute is allowed only on the
                     first of a sequence of adjacent xsl:sort elements.) 
                     The quotation marks around a default value are not part of the value.
Unless the element is required to be empty, the model element contains a comment specifying the allowed content. The allowed content is specified in a way similar to an element type declaration in XML; sequence constructor means that any mixture of text nodes, literal result elements, extension instructions, and XSLT elements from the instruction category is allowed; other-declarations means that any mixture of XSLT elements from the declaration category is allowed, together with user-defined data elements.
The element is prefaced by comments indicating if it belongs to the
                        instruction category or declaration category or
                     both. The category of an element affects only whether it is allowed in the
                     content of elements that allow a sequence constructor or other-declarations.
This example illustrates the notation used to describe XSLT elements.
<!-- Category: instruction -->
<xsl:example-element
  select = expression
  debug? = boolean
  validation? = { "strict" | "lax" }〔strict〕 >
  <!-- Content: ((xsl:variable | xsl:param)*, xsl:sequence) -->
</xsl:example-element>
This example defines a (non-existent) element xsl:example-element.
                  The element is classified as an instruction. It takes the following
                  attributes:
A mandatory select attribute, whose value is an XPath expression
An optional debug attribute, whose
                        value must be yes, true, or
                           1 to indicate true, or no,
                           false, or 0 to indicate false.
An optional validation attribute, whose value must be
                           strict or lax; the curly brackets indicate that
                        the value can be defined as an attribute value template, allowing a value such as
                           validation="{ $val }", where the variable
                        val is evaluated to yield "strict" or
                        "lax" at run-time. The value strict in tortoise-shell
                        brackets indicates the default value, if the attribute is not present.
The content of an xsl:example-element instruction is defined to be a
                  sequence of zero or more xsl:variable and
                     xsl:param elements, followed by an
                     xsl:sequence element.
[ERR XTSE0010] It is a static error if an XSLT-defined element is used in a context where it is not permitted, if a required attribute is omitted, or if the content of the element does not correspond to the content that is allowed for the element.
The rules in the element syntax summary (both for the element structure and for its attributes) apply to the stylesheet content after preprocessing as described in 3.13 Stylesheet Preprocessing.
[Definition: The effective value of an attribute or text node in the stylesheet is the value after any required expansion or normalization.]
More specifically, the effective value is the value after:
Expanding shadow attributes as described in 3.13.4 Shadow Attributes;
Expanding defaults (for example, if an xsl:message instruction has
                  no terminate attribute, then the effective value of the terminate attribute
                  is no);
Stripping ignored whitespace (for example, the effective value of a boolean attribute written as
                  terminate="  no  " is no);
Replacing synonyms (for example in boolean attributes, 1 and true
                  are synonyms of yes);
Expanding attribute value templates and text value templates.
Applying rules from the static context: for example, the effective value of a collation
                  attribute is the value after expanding a relative URI against the static base URI.
Attributes are validated as follows. These rules apply to the value of the attribute after removing leading and trailing whitespace.
[ERR XTSE0020] It is a static error if an attribute (other than an attribute written using curly brackets in a position where an attribute value template is permitted) contains a value that is not one of the permitted values for that attribute.
[ERR XTDE0030] It is a dynamic error if the effective value of an attribute written using curly brackets, in a position where an attribute value template is permitted, is a value that is not one of the permitted values for that attribute. If the processor is able to detect the error statically (for example, when any XPath expressions within the curly brackets can be evaluated statically), then the processor may optionally raise this as a static error.
Special rules apply if the construct appears in part of the stylesheet that is processed with forwards compatible behavior: see 3.10 Forwards Compatible Processing.
[Definition: Some constructs defined in this specification are described as being deprecated. The use of this term implies that stylesheet authors should not use the construct, and that the construct may be removed in a later version of this specification.]
Note:
This specification includes a non-normative XML Schema for XSLT stylesheet modules (see H Schemas for XSLT 4.0 Stylesheets). The syntax summaries described in this section are normative.
XSLT defines a set of standard functions which are additional to those defined in [Functions and Operators 4.0]. A list of these functions appears in G.2 List of XSLT-defined functions. The signatures of these functions are described using the same notation as used in [Functions and Operators 4.0]. The names of many of these functions are in the standard function namespace.
This document does not specify any application programming interfaces or other interfaces for initiating a transformation. This section, however, describes the information that is supplied when a transformation is initiated. Except where otherwise indicated, the information is required.
The execution of a stylesheet necessarily involves two activities: static analysis
               and dynamic evaluation. Static analysis consists of those tasks that can be performed
               by inspection of the stylesheet alone, including the
                  binding of static variables,
               the evaluation of [xsl:]use-when expressions (see 3.13.3 Conditional Element Inclusion) and shadow attributes
                  (see 3.13.4 Shadow Attributes), and the detection of static errors. Dynamic evaluation consists of
               tasks which in general cannot be carried out until a source document is
               available.
Dynamic evaluation is further divided into two activities: priming the stylesheet, and invoking a selected component.
Priming the stylesheet provides the dynamic context for evaluation, and supplies all the information needed to establish the values of global variables.
Invoking a component (such as a template or function) causes evaluation of that template or function to produce a result, which is an arbitrary XDM value.
[Definition: The result of invoking the selected component, after any required conversion to the declared result type of the component, is referred to as the raw result.]
The raw result of the invocation
                  is the immediate result of evaluating the sequence constructor
                  contained in the target template or function, modified by applying the coercion rules
                     to convert the immediate result to the type declared in the as
                  attribute of the xsl:template or xsl:function declaration, if present.
This raw result may optionally be post-processed to construct a result tree, to serialize the result, or both, as described in 2.3.6 Post-processing the Raw Result.
Implementations may allow static analysis and dynamic evaluation to be initiated independently, so that the cost of static analysis can be amortized over multiple transformations using the same stylesheet. Implementations may also allow priming of a stylesheet and invocation of components to be initiated independently, in which case a single act of priming the stylesheet may be followed by a series of independent component invocations. Although this specification does not require such a separation, this section distinguishes information that is needed before static analysis can proceed, information that is needed to prime the stylesheet, and information that is needed when invoking components.
The language is designed to allow the static analysis of each package to be performed independently of other packages, with only basic knowledge of the properties of components made available by used packages. Beyond this, the specification leaves it to implementations to decide how to organize this process. When packages are not used explicitly, the entire stylesheet is treated as a single package.
The following information is needed prior to static analysis of a package:
The location of the package manifest,
                        or in the absence of a package manifest, the stylesheet module that is to act as
                        the principal stylesheet
                           module
                        of the package. The complete package is
                        assembled by recursively expanding the xsl:import and
                           xsl:include declarations in the principal stylesheet
                        module, as described in 3.11.2 Stylesheet Inclusion and 3.11.3 Stylesheet Import. 
Information about the packages referenced from this
                        package using xsl:use-package declarations. The information
                        needed will include the names and signatures of public components exported
                        by the referenced package.
A set (possibly empty) of values for static parameters (see 9.5 Global Variables and Parameters). These values are available for use within
                           static expressions (notably
                        in [xsl:]use-when expressions and shadow attributes) as well as
                        non-static expressions in the stylesheet. As a minimum, values must be
                        supplied for any static parameters declared with the attribute
                           required="yes".
Conceptually, the output of the static analysis of a package is an object which might be referred to (without constraining the implementation) as a compiled package. Prior to dynamic evaluation, all the compiled packages needed for execution must be checked for consistency, and component references must be resolved. This process may be referred to, again without constraining the implementation, as linking.
The information needed when priming a stylesheet is as follows:
A set (possibly empty) of values for non-static
                        stylesheet parameters (see
                           9.5 Global Variables and Parameters). These values are available for use
                        within expressions in the stylesheet. As a minimum, values
                           must be supplied for any parameters declared with the
                        attribute required="yes".
A supplied value is converted if necessary to the declared type of the stylesheet parameter using the coercion rules.
Note:
Non-static stylesheet parameters are implicitly
                           public, which ensures that all the parameters in the
                           stylesheet for which values can be supplied externally have distinct
                           names. Static parameters, by contrast,
                              are local to a package.
                        [Definition: An item that is the global
                                 context item for the transformation acts
                           as the context item when evaluating
                            the select expression or sequence constructor of a
                                 global variable whose declaration is
                           within the top-level package, as described in 5.3.3.1 Maintaining Position: the Focus. The global context item may also be available in a named template
                        when the stylesheet is invoked as described in 2.3.4 Call-Template Invocation].
                        
Note:
In previous releases of this specification, a single node was typically
                           supplied to represent the source document for the transformation. This
                           node was used as the target node for the implicit call on
                              xsl:apply-templates used to start the transformation
                           process (now called the initial match selection), and
                           the root node of the containing tree was used as the context item for
                           evaluation of global variables (now called the global context item). This relationship between the
                              initial match selection and the global context item is likely to be found for compatibility
                           reasons in a transformation API designed to work with earlier versions of
                           this specification, but it is no longer a necessary relationship; the two
                           values can in principle be completely independent of each other.
Stylesheet authors wanting to write code that can be invoked using legacy APIs should not rely on the caller being able to supply different values for the initial match selection and the global context item.
In XPath 4.0, the concept of context item has been generalized and is now referred to as the context valueXP. For XSLT 4.0, however, the global context item is still constrained to be either a single item, or absent.
The value given to the global context item (and the values given to stylesheet parameters) cannot be nodes in a streamed document. This rule ensures that all global variables can freely navigate within the relevant tree, with no constraints imposed by the streamability rules.
The global context item is potentially
                        used when initializing global variables and parameters. If the
                        initialization of any global
                           variables or parameter depends on the context item, a dynamic error can
                        occur if the context item is absent. It is implementation-defined whether this error occurs during
                        priming of the stylesheet or subsequently when the variable is referenced;
                        and it is implementation-defined whether the error
                        occurs at all if the variable or parameter is never referenced. The error
                        can be suppressed by use of xsl:try and
                           xsl:catch within the sequence constructor used to initialize the variable or parameter. It
                           cannot be suppressed by use of xsl:try around a
                           reference to the global variable.
                     
In a library package, the context item, context position, and context size used for evaluation of global variables will be absent, and the evaluation of any expression that references these values will result in a dynamic error. This will also be the case in the top-level package if no global context item is supplied.
Note:
If a context item is available within a global variable declaration, then the context position and context size will always be 1 (one).
Note:
For maximum reusability of code, it is best to avoid use of the context item when initializing global variables and parameters. Instead, all external information should be supplied using named stylesheet parameters, ideally with namespaces, to avoid confusion and conflicts in the information supplied externally to different packages.
When a stylesheet parameter is defined in a library package, it is
                           possible for a using package to supply a value for the parameter by
                           overriding the parameter declaration within an
                              xsl:override element. If the using package is the
                              top-level package then the overriding declaration
                           can refer to the global context item.
A mechanism for obtaining a document node and a media type, given an
                        absolute URI. The total set of available documents (modeled as a mapping
                        from URIs to document nodes) forms part of the context for evaluating XPath
                        expressions, specifically the doc function. The XSLT
                           document function additionally requires the media
                        type of the resource representation, for use in interpreting any fragment
                        identifier present within a URI Reference.
Note:
The set of documents that are available to the stylesheet is implementation-dependent, as is the processing that is carried out to construct a tree representing the resource retrieved using a given URI. Some possible ways of constructing a document (specifically, rules for constructing a document from an Infoset or from a PSVI) are described in [XDM 4.0].
Once a stylesheet is primed, the values of global variables
                  remain stable through all component invocations. In addition, priming a stylesheet
                  creates an execution scopeFO
                  during which the dynamic context and all calls
                     on deterministicFO
                     functions remain stable; for example two calls on the
                     current-dateTime function within an execution scope are
                  defined to return the same result.
Parameters passed to the transformation by the client application when a stylesheet is primed are matched against stylesheet parameters (see 9.5 Global Variables and Parameters), not against the template parameters of any template executed during the course of the transformation.
[ERR XTDE0050] It is a dynamic error if a stylesheet declares a visible stylesheet parameter that is explicitly or implicitly mandatory, and no value for this parameter is supplied when the stylesheet is primed. A stylesheet parameter is visible if it is not masked by another global variable or parameter with the same name and higher import precedence. If the parameter is a static parameter then the value must be supplied prior to the static analysis phase.
[Definition: A stylesheet may be evaluated by supplying a
                     value to be processed, together with an initial mode. The
                     value (which can be any sequence of items) is referred to as the initial
                        match selection. The processing then corresponds to the effect of the
                        xsl:apply-templates instruction.]
The initial match selection will often be a single document node, traditionally called the source document of the transformation; but in general, it can be any sequence. If the initial match selection is an empty sequence, the result of the transformation will be empty, since no template rules are evaluated.
Processing proceeds by finding the template rules that match the items in the initial match selection, and evaluating these template rules with a focus based on the initial match selection. The template rules are evaluated in final output state.
The following information is needed when dynamic evaluation is to start with a template rule:
The initial match selection. An API that chooses to maintain compatibility with previous versions of this specification should allow a method of invocation in which a singleton node is provided, which is then used in two ways: the node itself acts as the initial match selection, and the root node of the containing tree acts as the global context item.
Optionally, an initial mode.
[Definition: The initial mode is the mode used to select template rules for processing items in the initial match selection when apply-templates invocation is used to initiate a transformation.]
In searching for the template rule that best matches the items in the initial match selection, the processor considers only those rules that apply to the initial mode.
If no initial mode is supplied explicitly, then the initial mode is that named in the
                              default-mode attribute of the (explicit or implicit) xsl:package
                              element of the top-level package or in
                           the absence of such an attribute, the unnamed mode.
[ERR XTDE0044] It is a dynamic error if the invocation of the stylesheet specifies an initial mode when no initial match selection is supplied (either explicitly, or defaulted to the global context item).
A (named or unnamed) mode M is eligible as an initial mode if one of the following conditions applies, where P is the top-level package of the stylesheet:
M is explicitly declared in an xsl:mode declaration
                           within P, and has public or final visibility (either by virtue
                           of its visibility attribute, or by virtue of an xsl:expose declaration).
M is the unnamed mode.
M is named in the default-mode attribute of the (explicit or implicit) 
                           xsl:package element of P.
M is declared in a package used by P, and is given public or final
                           visibility in P by means of an xsl:accept declaration.
The effective value of the declared-modes attribute of the explicit or implicit
                        xsl:package element of P is no, and M appears as 
                        a mode-name in the mode attribute of a template rule declared within P.
[ERR XTDE0045] It is a dynamic error if the invocation of the stylesheet specifies an initial mode and the specified mode is not eligible as an initial mode (as defined above).
Parameters, which will be passed to the template rules
                        used to process items in the input sequence. The parameters consist of two
                        sets of (QName, value) pairs, one set for tunnel parameters and one for non-tunnel parameters, in which
                        the QName identifies the name of a parameter and the value provides the
                        value of the parameter. Either or both sets of parameters may be empty. The
                        effect is the same as when a template is invoked using
                           xsl:apply-templates with an
                           xsl:with-param child specifying
                           tunnel="yes" or tunnel="no" as appropriate. If
                        a parameter is supplied that is not declared or used, the value is simply
                        ignored. These parameters are not used to set stylesheet parameters.
A supplied value is converted if necessary to the declared type of the template parameter using the coercion rules.
Details of how the result of the initial template is to be returned. For details, see 2.3.6 Post-processing the Raw Result
The raw result of the invocation is the
                  result of processing the supplied input sequence as if by a call on
                     xsl:apply-templates in the specified mode: specifically, each
                  item in the input sequence is processed by selecting and evaluating the best
                  matching template rule, and converting the result (if necessary) to the type
                  declared in the as attribute of that template using the coercion rules; and the results of processing each item
                  are then concatenated into a single sequence, respecting the order of items in the
                  input sequence.
Note:
The design of the API for invoking a transformation should provide some means for users to designate the unnamed mode as the initial mode in cases where it is not the default mode.
It is a dynamic error
                  [see ERR XTDE0700] if the template rule selected for processing any item in the initial match selection defines a template parameter that specifies required="yes"
                  and no value is supplied for that
                  parameter.
Note:
A stylesheet can process further source
                     documents in addition to those supplied when the transformation is invoked.
                     These additional documents can be loaded using the functions
                        document (see 20.1 fn:document); or
                     doc, unparsed-text, unparsed-text-lines, or collection (see [Functions and Operators 4.0]); or using the
                           xsl:source-document instruction; alternatively, they can
                     be supplied as stylesheet
                        parameters (see 9.5 Global Variables and Parameters), or returned as
                     the result of an extension
                        function (see 24.1 Extension Functions).
[Definition: A stylesheet may be evaluated by selecting a
                     named template to be evaluated; this is referred to as the initial named
                        template.] The effect is analogous to the effect of
                  executing an xsl:call-template instruction. The following
                  information is needed in this case:
Optionally, the name of the initial
                           named template which is to be executed as the entry point to
                        the transformation. If no template name is
                           supplied, the default template name is
                           xsl:initial-template. The selected template
                           must exist within the stylesheet. 
Optionally, a context item for evaluation of this named
                        template, defaulting to the global context item if it
                        exists. This is constrained by any
                              xsl:context-item element appearing within the
                           selected xsl:template element. The initial named
                           template is evaluated with a singleton focus based on
                           this context item if it exists, or with an absent
                           focus otherwise.
Note:
The context item for evaluation of the named template must be either a single item or absent; it cannot be an arbitrary value.
Parameters, which will be passed to the selected template
                        rule. The parameters consist of two sets of (QName, value) pairs, one set
                        for tunnel parameters and one
                        for non-tunnel parameters, in which the QName identifies the name of a
                        parameter and the value provides the value of the parameter. Either or both
                        sets of parameters may be empty. The effect is the same as when a template
                        is invoked using xsl:call-template with an
                           xsl:with-param child specifying
                           tunnel="yes" or tunnel="no" as appropriate. If
                        a parameter is supplied that is not declared or used, the value is simply
                        ignored. These parameters are not used to set stylesheet parameters.
A supplied value is converted if necessary to the declared type of the template parameter using the coercion rules.
Details of how the result of the initial named template is to be returned. For details, see 2.3.6 Post-processing the Raw Result
The raw result of the invocation is the
                  result of evaluating the initial named template, after
                  conversion of the result to the type declared in the as attribute of
                  that template using the coercion rules, if such
                  conversion is necessary.
The initial named template is evaluated in final output state.
                  [ERR XTDE0040] It is a  dynamic error if the invocation of
                        the stylesheet specifies a template
                        name that does not match the expanded
                           QName of a named template defined in the stylesheet, whose
                           visibility is public or final.
               
Note:
When the top-level package is rooted at an xsl:stylesheet or 
                     xsl:transform element, named templates having no explicit 
                     visibility attribute are automatically exposed as public components. 
                     (This is a consequence of the transformation applied to a package written using 
                     “simplified syntax”, described in 3.5 Packages.) 
 It is a  dynamic error
                  [see ERR XTDE0700] if the initial named template, or any of the template rules invoked to
                  process items in the initial match selection, defines a
                     template parameter that
                  specifies required="yes"
                  and no value is supplied for that parameter.
               
[Definition: A stylesheet may be evaluated by calling a named stylesheet function, referred to as the initial function.] The following additional information is needed in this case:
The name and arity of a stylesheet function which is to be executed as the entry point to the transformation.
Note:
In the design of a concrete API, the arity may be inferred from the length of the parameter list.
A list of values to act as parameters to the initial function. The number of values in the list must be the same as the arity of the function.
A supplied value is converted if necessary to the declared type of the function parameter using the coercion rules.
Details of how the result of the initial function is to be returned. For details, see 2.3.6 Post-processing the Raw Result
The raw result of the invocation is the
                  result of evaluating the initial function, after conversion of
                  the result to the type declared in the as attribute of that function
                  using the coercion rules, if such conversion is
                  necessary.
Note:
The initial function (like all stylesheet functions) is evaluated with an absent focus.
If the initial function is , a streaming processor should allow the value of the first argument to be supplied in streamable form, and if it is supplied in this form, then it must be processed using streaming.
                  [ERR XTDE0041] It is a dynamic error if the invocation of the stylesheet specifies a function name and
                        arity that does not match the expanded
                           QName and arity of a named stylesheet function defined in the stylesheet, whose visibility is
                           public or final.
               
When a transformation is invoked by calling an initial function, the entire transformation executes in temporary output state, which means that calls on
                     xsl:result-document are not permitted.
[TODO: Generalize the above description to allow for the possibility of keyword-based and optional arguments.]
There are three ways the result of a transformation
               may be delivered. (This applies both to the principal result, described here, and
               also to secondary results, generated using xsl:result-document.)
The raw result (a sequence of values) may be returned directly to the calling application.
A result tree may be constructed from the raw result.
                     By default, a result tree is constructed if the build-tree
                     attribute of the unnamed output definition
                     has the effective value yes. An API for invoking transformations may
                     allow this setting to be overridden by the calling application. If result tree construction
                     is requested, it is performed as described in 2.3.6.1 Result Tree Construction.
                   
Alternatively, the raw result may be serialized as described in 2.3.6.2 Serializing the Result. The decision whether or not to serialize the result is determined by the rules of transformation API provided by the processor, and is not influenced by anything in the stylesheet.
Note:
This specification does not constrain the design of application programming interfaces or the choice of defaults. In previous versions of this specification, result tree construction was a mandatory process, while serialization was optional. When invoking stylesheet functions directly, however, result tree construction and serialization may be inappropriate as defaults. These considerations may affect the design of APIs.
In previous versions of XSLT, results were delivered either
                  in serialized form (as a character or byte stream), or as a tree. In the latter case processors
                  typically would use either their own tree representation, or a standardized tree
                  representation such as the W3C Document Object Model (DOM) (see [DOM Level 2]),
                     adapted to the data structures offered by the programming language in which the API is defined.
                  To deliver a raw result, processors need to define a representation not only of XDM nodes but
                  also of sequences, atomic items, maps, arrays, and even functions. As with the return of a simple tree, 
                  this may involve a trade-off between strict fidelity to the XDM data model and usability in the particular 
                  programming language environment. It is not a requirement that an API should return results 
                     in a way that exposes every property of the XDM data model; for example there may be APIs that do not expose
                  the precise type annotation of a returned node or atomic item, or that fail to expose the base URI
                  or document URI of a node, or that provide no way of determining whether two nodes in the result
                  sequence are the same node in the sense of the XPath is operator.
                     The way in which maps, arrays, and functions 
                  are returned requires careful design choices. It is recommended that an API should be capable
                  of returning any XDM value without error, and that there should be minimal loss of information if
                  the raw results output by one transformation are subsequently used as input to another transformation.
If a result tree is to be constructed from the raw result, then this is done
    by applying the rules for the process of sequence normalizationSE as defined in 
       [Serialization 4.0]. This process takes as input the serialization parameters defined in the
    unnamed output definition of the top-level package; though the only parameter
    that is actually used by this process is item-separator. 
    
The sequence normalization process either returns a document node, or raises a serialization error. The content of the document node is not necessarily well-formed (the document node may have any number of element or text nodes among its children).
Note:
More specifically, the process raises a serialization error if any item in the raw result is an attribute node, a namespace node, or a function (including a map, but not an array: arrays are flattened).
The tree that is constructed is referred to as a final result tree.
If the raw result is an empty sequence, the final result tree will consist of a document node with no children.
The base URI of the document node is set to the base output URI.
Note:
The item-separator property has no effect if the raw result of the transformation is a sequence
       of length zero or one, which in practice will often be the case, especially in a traditional scenario such as
       transformation of an XML document to HTML.
If there is no item-separator, then a single space is inserted between adjacent atomic items;
       for example if the raw result is the sequence 1 to 5, then sequence normalization produces a tree
       comprising a document node with a single child, the child being a text node with the string value 
       1 2 3 4 5.
If there is an item-separator, then it is used not only between adjacent atomic items,
       but between any pair of items in the raw result. For example if the raw result is a sequence of two
       element nodes A and B, and the item-separator is a comma,
       then the result of sequence normalization will be a document node with three children: a copy of A,
       a text node whose string value is a single comma, and a copy of B.
See 2.7 Parsing and Serialization.
The raw result may optionally be serialized as described in 26 Serialization. The serialization is controlled by the serialization parameters defined in the unnamed output definition of the top-level package.
Note:
The first phase of serialization, called sequence normalizationSE,
                     takes place for some output methods but not others. For example, if the json output method
                        (defined in [Serialization 4.0]) is selected, then the process of constructing
                     a tree is bypassed.
The effect of serialization is to generate a sequence of octets, representing the serialized result in some character encoding. The processor’s API may define mechanisms enabling this sequence of octets to be written to persistent storage at some location. The default location is the location identified by the base output URI.
In previous versions of this specification it was stated that
                  when the raw result of the initial template or function is an empty sequence,
                  a result tree should be produced if and only if the transformation generates no secondary results
                  (that is, if it does not invoke xsl:result-document). This provision is most likely
                  to have a noticeable effect if the transformation produces serialized results, and these results
                  are written to persistent storage: the effect is then that a transformation producing an empty
                  principal result will overwrite any existing content at the base output URI location if and only
                  if the transformation produces no other output. Processor APIs offering backwards compatibility
                  with earlier versions of XSLT must respect this behavior, but there is no requirement for new
                  processor APIs to do so.
[Definition:  The base output URI is a URI to be used as the base URI when
                     resolving a relative URI reference allocated
                     to a final result tree. If the
                     transformation generates more than one final result tree, then typically each
                     one will be allocated a URI relative to this base URI.] The way in
                  which a base output URI is established is implementation-defined. Each invocation of the stylesheet may supply
                  a different base output URI. It is acceptable for the base output URI to be
                     absent, provided no constructs (such as
                     xsl:result-document) are evaluated that depend on the value of
                  the base output URI.
Note:
It will often be convenient for the base output URI to be the same as the location to which the principal result document is serialized, but this relationship is not a necessary one.
The main executable components of a stylesheet are templates and functions. The body of a template or function is a sequence constructor, which is a sequence of elements and text nodes that can be evaluated to produce a result.
A sequence constructor is a sequence of sibling nodes in the stylesheet, each of which is either an XSLT instruction, a literal result element, a text node, or an extension instruction.
[Definition: An instruction is either an XSLT instruction or an extension instruction.]
               [Definition: An XSLT
                  instruction is an XSLT element
                  whose syntax summary in this specification contains the annotation <!--
                     category: instruction -->.]
            
Extension instructions are described in 24.2 Extension Instructions.
The main categories of XSLT instruction are as follows:
instructions that create new nodes: xsl:document,
                     xsl:element, xsl:attribute,
                     xsl:processing-instruction, xsl:comment,
                     xsl:value-of, xsl:text,
                     xsl:namespace;
instructions that construct maps and arrays: xsl:array,
                     xsl:array-member,
                      xsl:map, xsl:map-entry, xsl:record;
instructions that copy nodes: xsl:copy,
                     xsl:copy-of;
instructions that returns an arbitrary sequence by evaluating an XPath
                     expression: xsl:sequence, xsl:select,
                     xsl:evaluate;
instructions that cause conditional or repeated evaluation of nested
                     instructions: xsl:if, xsl:choose, 
                     xsl:switch, xsl:try,
                     xsl:for-each, xsl:for-each-group, xsl:fork, 
                     xsl:iterate
                        and its subordinate instructions xsl:next-iteration and
                        xsl:break;
instructions that generate output conditionally if elements are or are not
                     empty: xsl:on-empty, xsl:on-non-empty,
                     xsl:where-populated;
instructions that invoke templates: xsl:apply-templates,
                     xsl:apply-imports, xsl:call-template,
                     xsl:next-match;
Instructions that declare variables: xsl:variable;
Instructions to assist debugging: xsl:message,
                     xsl:assert;
other specialized instructions: xsl:number,
                     xsl:analyze-string, xsl:fork, 
                     xsl:result-document, xsl:source-document, xsl:perform-sort,
                        xsl:merge.
The classic method of executing an XSLT transformation is to apply template rules to the root node of an input document (see 2.3.3 Apply-Templates Invocation). The operation of applying templates to a node searches the stylesheet for the best matching template rule for that node. This template rule is then evaluated. A common coding pattern, especially when XSLT is used to convert XML documents into display formats such as HTML, is to have one template rule for each kind of element in the source document, and for that template rule to generate some appropriate markup elements, and to apply templates recursively to its own children. The effect is to perform a recursive traversal of the source tree, in which each node is processed using the best-fit template rule for that node. The final result of the transformation is then the tree produced by this recursive process. This result can then be optionally serialized (see 2.3.6 Post-processing the Raw Result).
This example uses rule-based processing to convert a simple XML input document into an HTML output document.
The input document takes the form:
<PERSONAE PLAY="OTHELLO"> <TITLE>Dramatis Personae</TITLE> <PERSONA>DUKE OF VENICE</PERSONA> <PERSONA>BRABANTIO, a senator.</PERSONA> <PERSONA>Other Senators.</PERSONA> <PERSONA>GRATIANO, brother to Brabantio.</PERSONA> <PERSONA>LODOVICO, kinsman to Brabantio.</PERSONA> <PERSONA>OTHELLO, a noble Moor in the service of the Venetian state.</PERSONA> <PERSONA>CASSIO, his lieutenant.</PERSONA> <PERSONA>IAGO, his ancient.</PERSONA> <PERSONA>RODERIGO, a Venetian gentleman.</PERSONA> <PERSONA>MONTANO, Othello's predecessor in the government of Cyprus.</PERSONA> <PERSONA>Clown, servant to Othello. </PERSONA> <PERSONA>DESDEMONA, daughter to Brabantio and wife to Othello.</PERSONA> <PERSONA>EMILIA, wife to Iago.</PERSONA> <PERSONA>BIANCA, mistress to Cassio.</PERSONA> <PERSONA>Sailor, Messenger, Herald, Officers, Gentlemen, Musicians, and Attendants.</PERSONA> </PERSONAE>
The stylesheet to render this as HTML can be written as a set of template rules:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0" expand-text="yes"> <xsl:strip-space elements="PERSONAE"/> <xsl:template match="PERSONAE"> <html> <head> <title>The Cast of {@PLAY}</title> </head> <body> <xsl:apply-templates/> </body> </html> </xsl:template> <xsl:template match="TITLE"> <h1>{.}</h1> </xsl:template> <xsl:template match="PERSONA[count(tokenize(., ',')) = 2]"> <p><b>{substring-before(., ',')}</b>: {substring-after(., ',')}</p> </xsl:template> <xsl:template match="PERSONA"> <p><b>{.}</b></p> </xsl:template> </xsl:stylesheet>
There are four template rules here:
The first rule matches the outermost element, named PERSONAE (it could equally
                  have used match="/" to match the document node). The effect of this rule is to create
                  the skeleton of the output HTML page. Technically, the body of the template is a sequence constructor
                  comprising a single literal result element (the html element); this
                  in turn contains a sequence constructor comprising two literal result elements (the head
                  and body elements). The head element is populated with a literal title
                     element whose content is computed as a mixture of fixed and variable text using a text value template. 
                     The body element is populated by evaluating an xsl:apply-templates
                  instruction.
The effect of the xsl:apply-templates instruction is to process the children of
                     the PERSONAE element in the source tree: that is, the TITLE and
                     PERSONA elements. (It would also process any whitespace text node children, but these
                     have been stripped by virtue of the xsl:strip-space declaration.) Each of these
                     child elements is processed by the best matching template rule for that element, which will be one 
                     of the other three rules in the stylesheet.
The template rule for the TITLE element outputs an h1 element
                  to the HTML result document, and populates this with the value of ., the context item. That is,
                  it copies the text content of the TITLE element to the output h1 element.
The last two rules match PERSONA elements. The first rule matches PERSONA
                  elements whose text content contains exactly one comma; the second rule matches all PERSONA elements,
                     but it has lower priority than the first rule (see 6.3.3 Default Priority for Patterns), so in practice it 
                     applies only to PERSONA
                  elements that contain no comma or multiple commas.
For both rules the body of the rule is a sequence constructor containing a single literal result element,
                  the p element. These literal result elements contain
                  further sequence constructors comprising literal result elements and text nodes. 
                  In each of these examples the text nodes are in the form of a text value template:
                  in general this is a combination of fixed text together with XPath expressions enclosed in curly braces, which 
                  are evaluated to form the content of the containing literal result element. 
[Definition: A stylesheet contains a set of template rules (see 6 Template Rules). A template rule has three parts: a pattern that is matched against selected items (often but not necessarily nodes), a (possibly empty) set of template parameters, and a sequence constructor that is evaluated to produce a sequence of items.] In many cases these items are newly constructed nodes, which are then written to a result tree.
The results of some expressions and instructions in a stylesheet may depend on information provided contextually. This context information is divided into two categories: the static context, which is known during static analysis of the stylesheet, and the dynamic context, which is not known until the stylesheet is evaluated. Although information in the static context is known at analysis time, it is sometimes used during stylesheet evaluation.
Some context information can be set by means of declarations within the stylesheet itself. For example, the namespace bindings used for any XPath expression are determined by the namespace declarations present in containing elements in the stylesheet. Other information may be supplied externally or implicitly: an example is the current date and time.
The context information used in processing an XSLT stylesheet includes as a subset
               all the context information required when evaluating XPath expressions. 
               The XPath 4.0 specification defines a static and dynamic
               context that the host language (in this case, XSLT) may initialize, which affects the
               results of XPath expressions used in that context. XSLT augments the context with
               additional information: this additional information is used firstly by XSLT
               constructs outside the scope of XPath (for example, the xsl:sort
               element), and secondly, by functions that are defined in the XSLT specification (such
               as key and current-group) that are
               available for use in XPath expressions appearing within a stylesheet.
The static context for an expression or other construct in a stylesheet is determined by the place in which it appears lexically. The details vary for different components of the static context, but in general, elements within a stylesheet module affect the static context for their descendant elements within the same stylesheet module.
The dynamic context is maintained as a stack. When an instruction or expression is evaluated, it may add dynamic context information to the stack; when evaluation is complete, the dynamic context reverts to its previous state. An expression that accesses information from the dynamic context always uses the value at the top of the stack.
The most commonly used component of the dynamic context is the context item. This is an implicit variable whose
               value is the item currently being processed (it may be a node, an atomic item,
                  or a function item). The value of the context
               item can be referenced within an XPath expression using the expression .
               (dot).
XPath 4.0 generalizes the context item so it can be any value (not necessarily a single item),
            and it is now known as the context valueXP. In certain XPath expressions, the
            value of the expression . can now be an arbitrary value, rather than a single item. However, there
            is currently no construct in XSLT 4.0 that takes advantage of this; in the context supplied by XSLT to XPath
            (except when using the xsl:evaluate instruction),
            the context value is always either a single item, or absent. The XSLT specification therefore continues to refer
            to the context item rather than the context valueXP.
Full details of the static and dynamic context are provided in 5.3 The Static and Dynamic Context.
An XSLT stylesheet
               describes a process that constructs a set of results from a set of inputs. The inputs
               are the data provided at stylesheet invocation, as described in 2.3 Initiating a Transformation. The results include the principal result
               (an arbitrary sequence), which is the result of the initial component invocation,
               together with any secondary results
               produced using xsl:result-document instructions. 
The stylesheet does not describe how a source tree is constructed. Some possible ways of constructing source trees are described in [XDM 4.0]. Frequently an implementation will operate in conjunction with an XML parser (or more strictly, in the terminology of [XML 1.0], an XML processor), to build a source tree from an input XML document. An implementation may also provide an application programming interface allowing the tree to be constructed directly, or allowing it to be supplied in the form of a DOM Document object (see [DOM Level 2]). This is outside the scope of this specification. Users should be aware, however, that since the input to the transformation is a tree conforming to the XDM data model as described in [XDM 4.0], constructs that might exist in the original XML document, or in the DOM, but which are not within the scope of the data model, cannot be processed by the stylesheet and cannot be guaranteed to remain unchanged in the transformation output. Such constructs include CDATA section boundaries, the use of entity references, and the DOCTYPE declaration and internal DTD subset.
[Definition: A frequent requirement is to output a final result tree as an XML document (or in other formats such as HTML). This process is referred to as serialization.]
Like parsing, serialization is not part of the transformation process, and it is not
                  required that an XSLT processor must be able
               to perform serialization. However, for pragmatic reasons, this specification
               describes declarations (the xsl:output element and the
                  xsl:character-map declarations, see 26 Serialization), and attributes on the xsl:result-document instruction, that
               allow a stylesheet to specify the desired
               properties of a serialized output file. When serialization is not being performed,
               either because the implementation does not support the serialization option, or
               because the user is executing the transformation in a way that does not invoke
               serialization, then the content of the xsl:output and
                  xsl:character-map declarations has no effect. Under these
               circumstances the processor may raise any errors in an
                  xsl:output or xsl:character-map declaration, or
               in the serialization attributes of xsl:result-document, but is not
                  required to do so.
In XSLT 1.0 and 2.0 it was possible to structure a
               stylesheet as a collection of modules, using the xsl:include and
                  xsl:import declarations to express the dependency of one module on
               others.
In XSLT 3.0 an additional layer of modularization of stylesheet code was enabled through the introduction of packages. A package is a collection of stylesheet modules with a controlled interface to the packages that use it: for example, it defines which functions and templates defined in the package are visible to callers, which are purely internal, and which are not only public but capable of being overridden by other functions and templates supplied by the using package.
Packages are introduced with several motivations, which broadly divide into two categories:
Software engineering benefits: greater re-use of code, greater robustness through ease of testing, controlled evolution of code in response to new requirements, ability to deliver code that users cannot see or modify.
Efficiency benefits: the ability to avoid compiling libraries repeatedly when they are used in multiple stylesheets, and to avoid holding multiple copies of the same library in memory simultaneously.
Packages are designed to allow separate compilation: that is, a package can be compiled independently of the packages that use it. This specification does not define a process model for compilation, or expand on what it means to compile different packages independently. Nor does it mandate that implementations offer any feature along these lines. It merely defines language features that are designed to make separate compilation of packages possible.
To achieve this, packages (unlike modules):
Must not contain unresolved references to functions, templates, or variables declared in other packages;
Have strict rules governing the ability to override declarations in a library package with declarations in a package that uses the library;
Constrain the visibility of component names and of context declarations such as the declarations of keys and decimal formats;
Can declare a mode (a collection of template rules) as final, which disallows the addition of new overriding template rules in a using package;
Require explicit disambiguation where naming conflicts arise, for example when a package uses two other packages that both export like-named components;
Allow multiple specializations of library components to coexist in the same application.
A package is defined in XSLT
               by means of an XML document whose
               outermost element is an xsl:package element. This is referred to as
               the package manifest. The xsl:package element
               has optional child elements xsl:use-package and
                  xsl:expose describing properties of the package. The package
               manifest may refer to an external top-level stylesheet module using an
                  xsl:include or xsl:import declaration, or it may
               contain the body of a stylesheet module inline (the two approaches can also be
               mixed).
Although this specification defines packages as constructs written using a defined XSLT syntax, implementations may provide mechanisms that allow packages to be written using other languages (for example, XQuery).
When no packages are explicitly defined, the entire
               stylesheet is treated as a single package; the effect is as if the
                  xsl:stylesheet or xsl:transform element of the
                  principal stylesheet
                  module were replaced by an xsl:package element with no
               other information in the package manifest.
XSLT defines a number of features that allow the language to be extended by implementers, or, if implementers choose to provide the capability, by users. These features have been designed, so far as possible, so that they can be used without sacrificing interoperability. Extensions other than those explicitly defined in this specification are not permitted.
These features are all based on XML namespaces; namespaces are used to ensure that the extensions provided by one implementer do not clash with those of a different implementer.
The most common way of extending the language is by providing additional functions, which can be invoked from XPath expressions. These are known as extension functions, and are described in 24.1 Extension Functions.
It is also permissible to extend the language by providing new instructions. 
               These are referred to as extension instructions, and are described
               in 24.2 Extension Instructions. A stylesheet that uses extension
               instructions in a particular namespace must declare that it is doing so by using the
                  [xsl:]extension-element-prefixes attribute.
Extension instructions and extension functions defined according to these rules may be provided by the implementer of the XSLT processor, and the implementer may also provide facilities to allow users to create further extension instructions and extension functions.
This specification defines how extension instructions and extension functions are invoked, but the facilities for creating new extension instructions and extension functions are implementation-defined. For further details, see 24 Extensibility and Fallback.
The XSLT language can also be extended by the use of extension attributes (see 3.2 Extension Attributes), and by means of user-defined data elements (see 3.7.4 User-defined Data Elements).
An XSLT stylesheet can make use of information from a schema. An XSLT transformation can take place in the absence of a schema (and, indeed, in the absence of a DTD), but where the source document has undergone schema validity assessment, the XSLT processor has access to the type information associated with individual nodes, not merely to the untyped text.
Information from a schema can be used both statically (when the stylesheet is compiled), and dynamically (during evaluation of the stylesheet to transform a source document).
There are places within a stylesheet, and within XPath expressions and patterns in a stylesheet, where it is possible to refer to named type definitions in a schema, or to element and attribute declarations. For example, it is possible to declare the types expected for the parameters of a function. This is done using a SequenceType.
[Definition: A SequenceType constrains the type and number of items in a sequence. The term is used both to denote the concept, and to refer to the syntactic form in which sequence types are expressed in the XPath grammar: specifically SequenceTypeXP in [XPath 4.0].]
[Definition: Type definitions and element and attribute declarations are referred to collectively as schema components.]
[Definition: The schema components that may be referenced by name in a package are referred to as the in-scope schema components.]
The set of in-scope schema components may vary between one package and another, and between different parts of the same package, but as explained in 3.15 Importing Schema Components, the schema components used in different parts of the stylesheet must be consistent with each other.
The conformance rules for XSLT 4.0, defined in
                  27 Conformance, distinguish between a basic XSLT processor and a schema-aware XSLT processor. As the
               names suggest, a basic XSLT processor does not support the features of XSLT that
               require access to schema information, either statically or dynamically. A stylesheet that works with a basic XSLT processor
               will produce the same results with a schema-aware XSLT processor provided that the
               source documents are untyped (that is, they are not validated against a schema).
               However, if source documents are validated against a schema then the results may be
               different from the case where they are not validated. Some constructs that work on
               untyped data may fail with typed data (for example, an attribute of type
                  xs:date cannot be used as an argument of the
                  substring function) and other constructs may produce
               different results depending on the datatype (for example, given the element
                  <product price="10.00" discount="2.00"/>, the expression
                  @price gt @discount will return true if the attributes have type
                  xs:decimal, but will return false if they are untyped).
There is a standard set of type definitions that are always available as in-scope schema components in every stylesheet. These are defined in 3.14 Built-in Types.
The remainder of this section describes facilities that are available only with a schema-aware XSLT processor.
Additional schema components (type
               definitions, element declarations, and attribute declarations) may be added to the
                  in-scope schema components
               by means of the xsl:import-schema declaration in a stylesheet.
The xsl:import-schema declaration may reference an external schema
               document by means of a URI, or it may contain an inline xs:schema
               element.
An xsl:import-schema declaration may include a role
            attribute, which indicates that the schema components are only to be present in the
            static context of a region of the stylesheet where they are explicitly invoked
            by means of an [xsl:]schema-role attribute.
It is only necessary to import a schema explicitly if one or more of its schema components are referenced explicitly by name in the stylesheet; it is not necessary to import a schema merely because the stylesheet is used to process a source document that has been assessed against that schema. It is possible to make use of the information resulting from schema assessment (for example, the fact that a particular attribute holds a date) even if no schema has been imported by the stylesheet.
Importing a schema does not of itself say anything about the type of the source document that the stylesheet is expected to process. The imported type definitions can be used for temporary nodes or for nodes on a result tree just as much as for nodes in source documents. It is possible to make assertions about the type of an input document by means of tests within the stylesheet. For example:
<xsl:mode typed="lax"/> <xsl:global-context-item use="required" as="document-node(schema-element(my:invoice))"/>
This example will cause the transformation to fail with an error message, unless
                  the global context item is valid against the top-level element
                  declaration my:invoice, and has been annotated as such.
A schema-role attribute could be added to the declaration to indicate
                 which schema the element declaration my:invoice is to be taken from.
The setting typed="lax" further ensures that in any
                  match pattern for a template rule in this mode, an element name that corresponds
                  to the name of an element declaration in the schema is taken as referring to
                  elements validated against that declaration: for example,
                     match="employee" will only match a validated employee
                  element. Selecting this option enables the XSLT processor to do more compile-time
                  type-checking against the schema, for example it allows the processor to produce
                  warning or error messages when path expressions contain misspelt element names, or
                  confuse an element with an attribute.
It is also true that importing a schema does not of itself say
               anything about the structure of the result tree. It is possible to request validation
               of a result tree against the schema by using the xsl:result-document
               instruction, for example:
<xsl:template match="/"> <xsl:result-document validation="strict"> <xhtml:html> <xsl:apply-templates/> </xhtml:html> </xsl:result-document> </xsl:template>
This example will cause the transformation to fail with an error message unless
                  the document element of the result document is valid against the top-level element
                  declaration xhtml:html.
A schema-role attribute could be added to the xsl:result-document
                  instruction to indicate
                 which schema the document is to be validated against.
It is possible that a source document may contain nodes whose 
               type annotation is not one of the types
               imported by the stylesheet. The data model (see [XDM 4.0])
               requires that the processor has sufficient information about such types to 
               correctly implement the semantics of the language, even though the schema has
               not been imported; it also requires that all schemas used by the processor in a given
               processing episode (for example, an XSLT transformation) should be consistent. For 
               example, if a type annotation of a node is the simple type my:percentage,
               and a type named my:percentage appears in an imported schema, then they
               must be the same type.
Where a stylesheet author chooses to make assertions about the types of nodes or of variables and parameters, it is possible for an XSLT processor to perform static analysis of the stylesheet (that is, analysis in the absence of any source document). Such analysis may reveal errors that would otherwise not be discovered until the transformation is actually executed. An XSLT processor is not required to perform such static type-checking. Under some circumstances (see 2.12 Error Handling) type errors that are detected early may be raised as static errors. In addition an implementation may report any condition found during static analysis as a warning, provided that this does not prevent the stylesheet being evaluated as described by this specification.
A stylesheet can also control the type annotations of nodes that it constructs in a result tree. This can be done in a number of ways.
It is possible to request explicit validation of a complete document, that is,
                     a result
                           tree rooted at a document node.  Validation
                     is either strict or lax, as described in [XML Schema Part 1]. If
                     validation of a result tree fails
                     (strictly speaking, if the outcome of the validity assessment is
                        invalid), then the transformation fails, but in all other
                     cases, the element and attribute nodes of the tree will be annotated with the
                     names of the types to which these nodes conform. These type annotations will be discarded if the
                     result tree is serialized as an XML document, but they remain available when
                     the result tree is passed to an application (perhaps another stylesheet) for further processing.
It is also possible to validate individual element and attribute nodes as they
                     are constructed. This is done using the type and
                        validation attributes of the xsl:element,
                        xsl:attribute, xsl:copy, and
                        xsl:copy-of instructions, or the xsl:type and
                        xsl:validation attributes of a literal result element.
When elements, attributes, or document nodes are copied, either explicitly
                     using the xsl:copy or xsl:copy-of
                     instructions, or implicitly when nodes in a sequence are attached to a new
                     parent node, the options validation="strip" and
                        validation="preserve" are available, to control whether
                     existing type annotations are to be
                     retained or not.
When nodes in a temporary tree are validated, type information is available for use by operations carried out on the temporary tree, in the same way as for a source document that has undergone schema assessment.
For details of how validation of element and attribute nodes works, see 25.4 Validation.
Streaming is an optional feature of the XSLT 4.0 language.
[Definition: The term streaming refers to a manner of processing in which XML documents (such as source and result documents) are not represented by a complete tree of nodes occupying memory proportional to document size, but instead are processed “on the fly” as a sequence of events, similar in concept to the stream of events notified by an XML parser to represent markup in lexical XML.]
[Definition: A streamed document is a source tree that is processed using streaming, that is, without constructing a complete tree of nodes in memory.]
[Definition: A streamed node is a node in a streamed document.]
For full information about streaming, see [xslt40streaming].
[Definition: An error that can be detected by examining a stylesheet before execution starts (that is, before the source document and values of stylesheet parameters are available) is referred to as a static error.]
Generally, errors in the structure of the stylesheet, or in the syntax of XPath expressions contained in the stylesheet, are classified as static errors. Where this specification states that an element in the stylesheet must or must not appear in a certain position, or that it must or must not have a particular attribute, or that an attribute must or must not have a value satisfying specified conditions, then any contravention of this rule is a static error unless otherwise specified.
A processor must provide a mode of operation that takes a (possibly erroneous) stylesheet package as input and enables the user to determine whether or not that package contains any static errors.
Note:
The manner in which static errors are reported, and the behavior when there are multiple static errors, are left as design choices for the implementer. It is recommended that the error codes defined in this specification should be made available in any diagnostics.
A processor may also provide a mode of operation in which static errors in parts of the stylesheet that are not evaluated can go unreported.
Note:
For example, when operating in this mode, a processor might report static errors in a template rule only if the input document contains nodes that match that template rule. Such a mode of operation can provide performance benefits when large and well-tested stylesheets are used to process source documents that might only use a small part of the XML vocabulary that the stylesheet is designed to handle.
[Definition: An error that is not capable of detection until a source document is being transformed is referred to as a dynamic error.]
When a dynamic error occurs, and is not caught
               using xsl:catch, the processor
               must raise the error, and the transformation fails.
Because different implementations may optimize execution of the stylesheet in different ways, the detection of dynamic errors is to some degree implementation-dependent. In cases where an implementation is able to produce a principal result or secondary result without evaluating a particular construct, the implementation is never required to evaluate that construct solely in order to determine whether doing so causes a dynamic error. For example, if a variable is declared but never referenced, an implementation may choose whether or not to evaluate the variable declaration, which means that if evaluating the variable declaration causes a dynamic error, some implementations will raise this error and others will not.
There are some cases where this specification requires that a construct must
                  not be evaluated: for example, the content of an xsl:if
               instruction must not be evaluated if the test condition is false.
               This means that an implementation must not raise any dynamic
               errors that would arise if the construct were evaluated.
An implementation may raise a dynamic error before any source document is available, but only if it can determine that the error would be raised for every possible source document and every possible set of parameter values. For example, some circularity errors fall into this category: see 9.11 Circular Definitions.
There are also some dynamic
                  errors where the specification gives a processor license to raise the
               error during the analysis phase even if the construct might never be executed; an
               example is the use of an invalid QName as a literal argument to a function such as
                  key, or the use of an invalid regular expression in the
                  regex attribute of the xsl:analyze-string
               instruction.
A dynamic error is also raised during the static analysis phase if the error occurs during evaluation of a static expression.
The XPath specification states (see [XPath 4.0] section 2.4.1 Kinds of Errors) that if any expression (at any level) can be evaluated during the analysis phase (because all its explicit operands are known and it has no dependencies on the dynamic context), then any error in performing this evaluation may be raised as a static error. For XPath expressions used in an XSLT stylesheet, however, any such errors must not be raised as static errors in the stylesheet unless they would occur in every possible evaluation of that stylesheet; instead, they must be raised as dynamic errors, and raised only if the XPath expression is actually evaluated.
An XPath processor may report statically that the expression 1 div 0
                  fails with a “divide by zero” error. But suppose this XPath expression occurs in
                  an XSLT construct such as:
<xsl:choose> <xsl:when test="system-property('xsl:version') = '1.0'"> <xsl:value-of select="1 div 0"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="xs:double('INF')"/> </xsl:otherwise> </xsl:choose>
Then the XSLT processor must not report an error, because the relevant XPath construct appears in a context where it will never be executed by an XSLT 4.0 processor. (An XSLT 1.0 processor will execute this code successfully, returning positive infinity, because it uses double arithmetic rather than decimal arithmetic.)
[Definition: Certain errors are classified as type errors. A type error occurs when the value supplied as input to an operation is of the wrong type for that operation, for example when an integer is supplied to an operation that expects a node.] If a type error occurs in an instruction that is actually evaluated, then it must be raised in the same way as a dynamic error. Alternatively, an implementation may raise a type error during the analysis phase in the same way as a static error, even if it occurs in part of the stylesheet that is never evaluated, provided it can establish that execution of a particular construct would never succeed.
It is implementation-defined whether type errors are raised statically.
The following construct contains a type error, because
                     42 is not allowed as the value of the select
                  expression of the xsl:number instruction (it must be a node). An
                  implementation may optionally raise this as a static error,
                  even though the offending instruction will never be evaluated, and the type error
                  would therefore never be raised as a dynamic error.
<xsl:if test="false()"> <xsl:number select="42"/> </xsl:if>
On the other hand, in the following example it is not possible to determine
                  statically whether the operand of xsl:number will have a suitable dynamic type. An
                  implementation may produce a warning in such cases, but it
                     must not treat it as an error.
<xsl:template match="para"> <xsl:param name="p" as="item()"/> <xsl:number select="$p"/> </xsl:template>
If more than one error arises, an implementation is not required to raise any errors other than the first one that it detects. It is implementation-dependent which of the several errors is raised. This applies both to static errors and to dynamic errors. An implementation is allowed to raise more than one error, but if any errors have been raised, it must not finish as if the transformation were successful.
When a transformation raises one or more dynamic errors, the final state of any persistent resources updated by the transformation is implementation-dependent. Implementations are not required to restore such resources to their initial state. In particular, where a transformation produces multiple result documents, it is possible that one or more serialized result documents may be written successfully before the transformation terminates, but the application cannot rely on this behavior.
Everything said above about error handling applies equally to errors in evaluating XSLT instructions, and errors in evaluating XPath expressions. Static errors and dynamic errors may occur in both cases.
[Definition: If a transformation has successfully produced a principal result or secondary result, it is still possible that errors may occur in serializing that result . For example, it may be impossible to serialize the result using the encoding selected by the user. Such an error is referred to as a serialization error.] If the processor performs serialization, then it must do so as specified in 26 Serialization, and in particular it must raise any serialization errors that occur.
Errors are identified by a QName. For errors defined in this specification, the
               namespace of the QName is always http://www.w3.org/2005/xqt-errors (and
               is therefore not given explicitly), while the local part is an 8-character code in
               the form PPSSNNNN. Here PP is always XT (meaning
               XSLT), and SS is one of SE (static error), DE
               (dynamic error),  or TE
               (type error). Note that the allocation of an error to one of these categories is
               purely for convenience and carries no normative implications about the way the error
               is handled. Many errors, for example, can be raised either dynamically or
               statically. These error codes are used to label error conditions in this
               specification, and are summarized in D Summary of Error Conditions. 
Errors defined in related specifications ([XPath 4.0], [Functions and Operators 4.0] [Serialization 4.0]) use QNames with a similar structure, in the same namespace. When errors occur in processing XPath expressions, an XSLT processor should use the original error code reported by the XPath processor, unless a more specific XSLT error code is available.
Implementations must use the codes
               defined in these specifications when raising dynamic errors, to ensure that
                     xsl:catch behaves in an interoperable way across
                  implementations. Stylesheet authors should note, however, that there are many
                  examples of errors where more than one rule in this specification is violated, and
                  where the processor therefore has discretion in deciding which error code to
                  associate with the condition: there is therefore no guarantee that different
                  processors will always use the same error code for the same erroneous
                  input.
Additional errors defined by an implementation (or by an application) may use QNames in an implementation-defined (or user-defined) namespace without risk of collision.
This section describes the overall structure of a stylesheet as a collection of XML documents.
A stylesheet module is typically written as a namespace well-formed XML document: more formally, as described in 3.6 Stylesheet Modules, a stylesheet module takes the form of an XDM tree rooted at an element node.
The names of elements and attributes in source documents and result documents are namespace-qualified names. In addition, as described in 5.1.1 Qualified Names, XSLT uses namespace-qualified names to identify variables, functions, templates, and other components. These names generally use namespace prefixes that are resolved to namespace URIs using a set of prefix-uri namespace bindings.
There are two ways namespace bindings can be established in a stylesheet module:
[Definition: The native namespace bindings for any element in an XSLT stylesheet module are the prefix-uri mappings defined by the namespace nodes of that element, according to the rules in [XDM 4.0].]
For example, a namespace declaration of the form 
                     xmlns:math="http://www.w3.org/2005/xpath-functions/math establishes a binding 
                     of the prefix math to the namespace URI http://www.w3.org/2005/xpath-functions/math,
                     thereby enabling functions in that namespace to be invoked using an expression such as
                     math:sin($theta)
                  
[Definition: 
                     The fixed namespace bindings for a stylesheet module are
                     established using the fixed-namespaces attribute on the xsl:stylesheet,
                     xsl:transform, or xsl:package element enclosing the stylesheet
                     module.]
For example, the attribute fixed-namespaces="math map array"
                     establishes bindings for the prefixes math, map, and array
                     to the namespace URIs conventionally associated with these prefixes as described
                     in 5.1.3 Reserved Namespaces.
Prefixes used in element and attribute names in the stylesheet, because these are interpreted
            by the XML parser and not only by the XSLT processor, must be bound
            using native namespace bindings.
            In particular, the XSLT namespace is used in the names of XSLT elements, so it must 
            be declared in every stylesheet module using a namespace declaration such as
            xmlns:xsl="http://www.w3.org/1999/XSL/Transform. (A different prefix can be used:
               some users prefer xslt, some favor the default namespace.) 
               But namespace prefixes that are only used within the content of
            attribute and text nodes in the stylesheet (for example, select="math:sin($theta)")
            can be declared in fixed namespace bindings.
[Definition: 
               The applicable static namespaces for an element in a stylesheet module are the
               fixed namespace bindings for the module if the root element
               of the module has a fixed-namespaces attribute, or the native namespace bindings
               of the element otherwise.
            ]
The effect of declaring fixed namespace bindings is described in more detail in 3.7.1 The fixed-namespaces Attribute.
Note:
As a general rule:
Prefixes used in the names of elements and attributes in the stylesheet must be declared using native namespace bindings.
Prefixes used in QNames appearing in the content of attribute nodes
                     and text nodes in the stylesheet can usually be declared using
                     fixed namespace bindings. There are a small number
                  of exceptions, notably the standard attributes [xsl:]exclude-result-prefixes
                  and [xsl:]extension-element-prefixes, and the stylesheet-prefix
                  and result-prefix attributes of xsl:namespace-alias.
                  [Definition: The XSLT namespace
                     has the URI http://www.w3.org/1999/XSL/Transform. It is used to
                     identify elements, attributes, and other names that have a special meaning defined
                     in this specification.]
               
Note:
The 1999 in the URI indicates the year in which the URI was allocated
                     by the W3C. It does not indicate the version of XSLT being used, which is
                     specified by attributes (see 3.7 Stylesheet Element and 3.8 Simplified Stylesheet Modules).
XSLT processors must use the XML namespaces mechanism [Namespaces in XML] to recognize elements and attributes from this namespace. Elements from the XSLT namespace are recognized only in the stylesheet and not in the source document. The complete list of XSLT-defined elements is specified in C Element Syntax Summary. Implementations must not extend the XSLT namespace with additional elements or attributes. Instead, any extension must be in a separate namespace. Any namespace that is used for additional instruction elements must be identified by means of the extension instruction mechanism specified in 24.2 Extension Instructions.
Except where the rules for forwards compatible behavior dictate otherwise, it is a static error for any element in the stylesheet to be in the XSLT namespace unless it is an element defined in this specification [see ERR XTSE0010].
This specification uses a prefix of xsl: for referring to elements in
                  the XSLT namespace. However, XSLT stylesheets are free to use any prefix, provided
                  that there is a namespace declaration that binds the prefix to the URI of the XSLT
                  namespace.
Note:
Throughout this specification, an element or attribute that is in no namespace, or an expanded QName whose namespace part is an empty sequence, is referred to as having a null namespace URI.
Note:
By convention, the names of XSLT
                        elements, attributes and functions are all lower-case;
                     they use hyphens to separate words, and they use abbreviations only if these already appear
                     in the syntax of a related language such as XML or HTML. Names of types defined in
                     XML Schema are regarded as single words and are capitalized exactly as in XML
                     Schema. This sometimes leads to composite function names such as
                        current-dateTime.
[Definition: An element from the XSLT namespace may have any attribute not from the XSLT namespace, provided that the expanded QName (see [XPath 4.0]) of the attribute has a non-null namespace URI. These attributes are referred to as extension attributes.] The presence of an extension attribute must not cause the principal result or any secondary result of the transformation to be different from the results that a conformant XSLT 4.0 processor might produce. They must not cause the processor to fail to raise an error that a conformant processor is required to raise. This means that an extension attribute must not change the effect of any instruction except to the extent that the effect is implementation-defined or implementation-dependent.
Furthermore, if serialization is performed using one of the serialization methods described in [Serialization 4.0], the presence of an extension attribute must not cause the serializer to behave in a way that is inconsistent with the mandatory provisions of that specification.
Note:
Extension attributes may be used to modify the behavior of extension functions and extension instructions. They may be used to select processing options in cases where the specification leaves the behavior implementation-defined or implementation-dependent. They may also be used for optimization hints, for diagnostics, or for documentation.
                  Extension attributes may also be
                  used to influence the behavior of the standard serialization methods xml,
                     xhtml, html, text, json, 
                  and adaptive, to the extent that
                  the behavior of the serialization method is implementation-defined 
                  or implementation-dependent. For example, an extension attribute might
                  be used to define the amount of indentation to be used when
                     indent="yes" is specified. If a serialization method other than
                  one of these four is requested (using a namespaced QName in the method parameter)
                  then extension attributes may influence its behavior in arbitrary ways. Extension
                  attributes must not be used to cause the standard serialization methods to
                  behave in a non-conformant way, for example by failing to report serialization
                  errors that a serializer is required to report. An implementation that wishes to
                  provide such options must create a new serialization method for the purpose.
An implementation that does not recognize the name of an extension attribute, or that does not recognize its value, must perform the transformation as if the extension attribute were not present. As always, it is permissible to produce warning messages.
The namespace used for an extension attribute will be copied to the result tree in the normal way if it is in scope
                  for a literal result element.
                  This can be prevented using the [xsl:]exclude-result-prefixes
                  attribute.
The following code might be used to indicate to a particular implementation that
                  the xsl:message instruction is to ask the user for confirmation
                  before continuing with the transformation:
<xsl:message abc:pause="yes" xmlns:abc="http://vendor.example.com/xslt/extensions"> Phase 1 complete </xsl:message>
Implementations that do not recognize the namespace
                     http://vendor.example.com/xslt/extensions will simply ignore the
                  extra attribute, and evaluate the xsl:message instruction in the
                  normal way.
[ERR XTSE0090] It is a static error for an element from the XSLT namespace to have an attribute whose namespace is either null (that is, an attribute with an unprefixed name) or the XSLT namespace, other than attributes defined for the element in this document.
The media type application/xslt+xml
               has been registered for XSLT stylesheet
               modules.
The definition of the media type is at [XSLT Media Type].
This media type should be used for an XML document containing a standard stylesheet module at its top level, and it may also be used for a simplified stylesheet module. It should not be used for an XML document containing an embedded stylesheet module.
               [Definition: There are a number of
                     standard attributes that may appear on any XSLT element: specifically
                     default-collation, 
                     default-mode,
                     default-validation,
                     exclude-result-prefixes, 
                     expand-text, 
                     extension-element-prefixes,
                     schema-role,
                     use-when, 
                     version, and
                     xpath-default-namespace.]
            
These attributes may also appear on a literal result element, but in this case, to distinguish them from
               user-defined attributes, the names of the attributes are in the XSLT namespace. They are thus typically written
               as xsl:default-collation,
               xsl:default-mode, 
               xsl:default-validation,
                  xsl:exclude-result-prefixes, xsl:expand-text, 
               xsl:extension-element-prefixes, xsl:use-when,
                  xsl:version, or xsl:xpath-default-namespace.
It is recommended that all these attributes should also be permitted on extension instructions, but this is at the discretion of the implementer of each extension instruction. They may also be permitted on user-defined data elements, though they will only have any useful effect in the case of data elements that are designed to behave like XSLT declarations or instructions.
In the following descriptions, these attributes are referred to generically as
                  [xsl:]version, and so on.
These attributes all affect the element they appear on, together with any elements and attributes that have that element as an ancestor. The two forms with and without the XSLT namespace have the same effect; the XSLT namespace is used for the attribute if and only if its parent element is not in the XSLT namespace.
In the case of [xsl:]default-collation, 
               [xsl:]expand-text, [xsl:]schema-role,
               [xsl:]version, and [xsl:]xpath-default-namespace, the value
               can be overridden by a different value for the same attribute appearing on a
               descendant element. The effective value of the attribute for a particular stylesheet
               element is determined by the innermost ancestor-or-self element on which the
               attribute appears.
In an embedded stylesheet module, standard attributes appearing on ancestors of the outermost element of the stylesheet module have no effect.
In the case of [xsl:]exclude-result-prefixes and
                  [xsl:]extension-element-prefixes the values are cumulative. For these
               attributes, the value is given as a whitespace-separated list of namespace prefixes,
               and the effective value for an element is the combined set of namespace URIs
               designated by the prefixes that appear in this attribute for that element and any of
               its ancestor elements. Again, the two forms with and without the XSLT namespace are
               equivalent.
The effect of the [xsl:]use-when attribute is described in 3.13.3 Conditional Element Inclusion.
Because these attributes may appear on any XSLT
                  element, they are not listed in the syntax summary of each individual
               element. Instead they are listed and described in the entry for the
                  xsl:stylesheet, xsl:transform, and xsl:package elements only. This
               reflects the fact that these attributes are often used on the outermost element of the stylesheet, in which case they apply to
               the entire stylesheet module
               or package manifest.
Note that the effect of these attributes does not extend to stylesheet modules referenced by
                  xsl:include or xsl:import declarations, nor to packages referenced using
                     xsl:use-package.
For the detailed effect of each attribute, see the following sections:
[xsl:]default-collation
                     [xsl:]default-mode
                     [xsl:]default-validation
                     see 25.4 Validation
[xsl:]exclude-result-prefixes
                     [xsl:]expand-text
                     [xsl:]extension-element-prefixes
                     [xsl:]schema-role
                     [xsl:]use-when
                     [xsl:]version
                     see 3.9 Backwards Compatible Processing and 3.10 Forwards Compatible Processing
[xsl:]xpath-default-namespace
                     see 5.1.2 Unprefixed Lexical QNames in Expressions and Patterns
[Definition: An explicit package is
                  represented by an xsl:package element, which will generally be
                  the outermost element of an XML document. When the
                        xsl:package element is not used explicitly, the entire
                     stylesheet comprises a single implicit package.] (This
               specification does not preclude the xsl:package being embedded in
               another XML document, but it will never have any other XSLT element as an
               ancestor).
<xsl:package
  id? = id
  name? = uri
  package-version? = string〔'1'〕
  version = decimal
  input-type-annotations? = "preserve" | "strip" | "unspecified"〔'unspecified'〕
  declared-modes? = boolean〔'yes'〕
  default-mode? = eqname | "#unnamed"〔'#unnamed'〕
  default-validation? = "preserve" | "strip"〔'strip'〕
  default-collation? = uris
  extension-element-prefixes? = prefixes
  exclude-result-prefixes? = prefixes
  expand-text? = boolean〔'no'〕
  fixed-namespaces? = string
  schema-role? = ncname
  use-when? = expression〔true()〕
  xpath-default-namespace? = uri >
  <!-- Content: ((xsl:expose | declarations)*) -->
</xsl:package>
[Definition: The content of the
                     xsl:package element is referred to as the package
                     manifest].
The version attribute indicates the
               version of the XSLT language specification to which the package manifest conforms.
                  The value should normally be
                     4.0. 
               If the value is numerically less than 4.0, the
                  content of the xsl:package element is processed using the rules
                  for backwards compatible
                     behavior (see 3.9 Backwards Compatible Processing). If the value is
               numerically greater than 4.0, it is processed using the rules for
                     forwards compatible behavior (see 3.10 Forwards Compatible Processing).
A package typically has a name, given in its name
               attribute, which must be an absolute URI. Unnamed packages are
               allowed, but they can only be used as the “top level” of an application; they cannot
               be the target of an xsl:use-package declaration in another
               package.
A package may have a version identifier, given in
               its package-version attribute. This is used to distinguish different
               versions of a package. The value of the version
                  attribute, after trimming leading and trailing whitespace, must
                  conform to the syntax given in 3.5.1 Versions of a Package. If no version
                  number is specified for a package, version 1 is assumed.
The attributes default-collation, default-mode, default-validation,
                  exclude-result-prefixes, expand-text,
                  extension-element-prefixes, use-when,
                  version, and xpath-default-namespace are standard
               attributes that can appear on any XSLT element, and potentially affect all descendant
               elements. Their meaning is described in 3.4 Standard Attributes.
The package manifest contains the following elements, arbitrarily ordered:
Zero or more xsl:expose declarations that define the interface
                     offered by this package to the outside world. An xsl:expose
                  declaration may appear only as a child of xsl:package.
Zero or more additional declarations.
                     These are the same as the declarations permitted as children of xsl:stylesheet
                     or xsl:transform.
Some declarations of particular relevance to packages include:
The xsl:use-package declaration, which declares the names and
                     versions of the packages on which this package depends.
The optional xsl:global-context-item element; if present this
                           element defines constraints on the existence and type of the global context item.
Zero or more xsl:include and xsl:import
                     declarations, which define additional stylesheet modules to be incorporated into this package.
Zero or more ordinary declarations, that is,
                        elements that are permitted as children of xsl:stylesheet or
                        xsl:transform. One possible coding style is to include in
                        the package manifest just a single xsl:import or
                        xsl:include declaration as a reference to the effective
                        top-level stylesheet module; this approach is particularly suitable when
                        writing code that is required to run under releases of XSLT 
                        earlier than 3.0. 
                        Another approach is to include the substance of the top-level
                        stylesheet module inline within the package manifest.
The following example shows a package that offers a number of functions for manipulating complex numbers. A complex number is represented as a map with two entries, the keys being 0 for the real part, and 1 for the imaginary part.
<xsl:package name="http://example.org/complex-arithmetic.xsl" package-version="1.0" version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:f="http://example.org/complex-arithmetic.xsl"> <xsl:function name="f:complex-number" as="map(xs:integer, xs:double)" visibility="public"> <xsl:param name="real" as="xs:double"/> <xsl:param name="imaginary" as="xs:double"/> <xsl:sequence select="{ 0: $real, 1: $imaginary }"/> </xsl:function> <xsl:function name="f:real" as="xs:double" visibility="public"> <xsl:param name="complex" as="map(xs:integer, xs:double)"/> <xsl:sequence select="$complex(0)"/> </xsl:function> <xsl:function name="f:imag" as="xs:double" visibility="public"> <xsl:param name="complex" as="map(xs:integer, xs:double)"/> <xsl:sequence select="$complex(1)"/> </xsl:function> <xsl:function name="f:add" as="map(xs:integer, xs:double)" visibility="public"> <xsl:param name="x" as="map(xs:integer, xs:double)"/> <xsl:param name="y" as="map(xs:integer, xs:double)"/> <xsl:sequence select=" f:complex-number( f:real($x) + f:real($y), f:imag($x) + f:imag($y))"/> </xsl:function> <xsl:function name="f:multiply" as="map(xs:integer, xs:double)" visibility="public"> <xsl:param name="x" as="map(xs:integer, xs:double)"/> <xsl:param name="y" as="map(xs:integer, xs:double)"/> <xsl:sequence select=" f:complex-number( f:real($x)*f:real($y) - f:imag($x)*f:imag($y), f:real($x)*f:imag($y) + f:imag($x)*f:real($y))"/> </xsl:function> <!-- etc. --> </xsl:package>
A more complex package might include private or abstract functions as well as
                  public functions; it might expose components other than functions (for example,
                  templates or global variables), and it might contain
                     xsl:use-package elements to allow it to call on the services
                  of other packages.
Note:
In this example, the way in which complex numbers are represented is exposed to
                     users of the package. It would be possible to hide the representation by
                     declaring the types on public functions simply as item(); but this
                     would be at the cost of type safety.
A package that does not itself expose any components  may be written
               using a simplified syntax: the xsl:package element is omitted, and
               the xsl:stylesheet or xsl:transform element is now
               the outermost element of the stylesheet module. For compatibility reasons, all the
               named templates and modes declared in the package are made public. More formally, the
               principal stylesheet module of the top-level
                  package may be expressed as an xsl:stylesheet or
                  xsl:transform element, which is equivalent to the package represented
               by the output of the following transformation, preserving the base URI of the
               source:
<xsl:transform version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:t="http://www.w3.org/1999/XSL/TransformAlias"> <xsl:namespace-alias stylesheet-prefix="t" result-prefix="xsl"/> <xsl:template match="xsl:stylesheet|xsl:transform"> <t:package declared-modes="no"> <xsl:copy-of select="@*"/> <t:expose component="mode" names="*" visibility="public"/> <t:expose component="template" names="*" visibility="public"/> <xsl:copy-of select="node()"/> </t:package> </xsl:template> </xsl:transform>
The effect of the input-type-annotations
               attribute is defined in 4.3.1 Stripping Type Annotations from a Source Tree.
A more extensive example of a package, illustrating how components in a package can be overridden in a client package, is given in 3.5.8 Worked Example of a Library Package.
If a package has a version number, the version number must conform to the grammar:
        PackageVersion   ::= NumericPart ( "-" NamePart )?
        NumericPart      ::= IntegerLiteral ( "." IntegerLiteral )*
        NamePart         ::= NCName
                  Here IntegerLiteralXP and NCName are as defined in
                  the XPath 4.0 grammar productions of the same name (including rules on
                     limits). Leading and trailing whitespace is ignored; no other
                  whitespace is allowed.
Examples of valid version numbers are 2.0.5 or
                     3.10-alpha.
[Definition: The integer literals and the optional
                        NamePart within the version number are referred to as the
                        portions of the version number.]
Note:
This means that 1-alpha-2 is a valid version number, with two
                        portions: 1 and
                        alpha-2. The second hyphen is part of the NCName,
                     it does not act as a portion separator.
Versions are ordered. When comparing two versions:
Trailing zero portions (that is, any zero-valued integer that is not followed by another integer) are discarded.
Comparison proceeds by comparing portions pairwise from the left.
If both versions have the same number of portions and all portions
                        compare equal (under the rules of the
                           XPath eq operator using the Unicode codepoint
                           collation), then the versions compare equal.
If the number of portions in the two
                        versions V1 and V2 is N1 and N2,
                        with N1<N2, and if all portions in positions 1 to N compare equal, then
                           V1 is less than V2 if the portion of V2 in position N1 is an integer, and is
                        greater than V2 if this portion is an
                           NCName. For example, 1.2 is less than
                           1.2.5, while 2.0 is greater than
                           2.0-rc1.
Portions are compared as follows:
If both portions are integers, they are compared using the rules of XPath value comparisons.
If both portions are NCNames, they are compared using the rules of XPath value comparisons, using the Unicode Codepoint Collation.
If one portion is an integer and the other is an
                                 NCName, the NCName comes first.
For example, the following shows a possible ordered sequence of version numbers:
0-rc1 < 0-rc2 < 0 < 1 = 1.0 < 1.0.2 < 1.0.3-rc1 < 1.0.3 < 1.0.3.2 < 1.0.10
Note:
The version number format defined here is designed to be general enough to accommodate a variety of conventions in common use, and to allow useful semantics for matching of versions and ranges of versions, without being over-prescriptive. It is influenced by [SemVer], but is not as prescriptive, and it imposes no assumptions about backwards compatibility of packages between successive versions.
Implementations may impose limits on the values used in a version number (or a version range: see below). Such limits are implementation-defined. As a minimum, a processor must accept version numbers including:
A numeric part containing four integers;
Each integer being in the range 0 to 999999;
An NCName of up to 100 characters
Dependencies between packages may specify a version range (see 3.5.2 Dependencies between Packages). A version range represents a set of accepted versions. The syntax of a version range is shown below. Whitespace is permitted only where indicated, using the terminal symbol S.
        PackageVersionRange    ::=  AnyVersion | VersionRanges
        AnyVersion             ::=  "*"
        VersionRanges          ::=  VersionRange (S? "," S? VersionRange)*
        VersionRange           ::=  PackageVersion | VersionPrefix | 
                                      VersionFrom | VersionTo | VersionFromTo
        VersionPrefix          ::=  PackageVersion ".*"
        VersionFrom            ::=  PackageVersion "+"
        VersionTo              ::=  "to" S (PackageVersion | VersionPrefix)
        VersionFromTo          ::=  PackageVersion S 
                                      "to" S (PackageVersion | VersionPrefix)
                  The meanings of the various forms of version range are defined below:
The range AnyVersion matches any version.
The range VersionRanges matches a version if any constituent
                           VersionRange matches that version.
For example, 9.5.0.8, 9.6.1.2
                        matches those specific versions only, while 9.5.0.8, 9.6+
                        matches either version 9.5.0.8 or any version from 9.6 onwards.
A range that is a PackageVersion matches that version only.
The range VersionPrefix matches any version whose leading
                           portions are the same as the 
                           portions in the PackageVersion part of the
                              VersionPrefix.
For example, 1.3.* matches 1.3, 
                           1.3.5,  1.3.10.2,  and
                           1.3-beta
                        (but not 1 or
                              1.4).
Note:
The .* indicates that additional 
                           portions may follow; 
                           it does not indicate a substring match
                           on the final portion. So
                              1.3.* does not match 1.35, and
                              3.3-beta.* does not match 3.3-beta12. Also,
                              3.3-beta.* does not match 3.3-beta.5: this
                           is because the last dot is not a portion separator, but is part of the
                           final NCName. In fact, using .* after a version
                           number that includes an NCName portion is pointless, because
                           an NCName portion can never be followed by further
                           portions.
The range VersionFrom matches any version that is greater than
                        or equal to the version supplied.
For example 1.3+ matches
                           1.3,  1.3.2,  1.4, 
                        and 2.1 (but not 1.3-beta or 1.2).
                        And 1.3-beta+ matches 1.3-beta, 
                           1.3-gamma,  1.3.0,  1.4,
                        and 8.0, but not 1.3-alpha or
                        1.2.
The range VersionTo matches any version that is less than or
                        equal to some version that matches the supplied 
                        PackageVersion or VersionPrefix.
For example, to 4.0 matches 1.5, 
                           2.3,  3.8,  4.0, 
                        and 4.0-beta (but not 4.0.1), while to
                           3.3.* matches 1.5 or 2.0.6 or
                           3.3.4621, but not 3.4.0 or
                           3.4.0-beta. 
The range VersionFromTo matches any version that is greater
                        than or equal to the starting PackageVersion, and less than or
                        equal to some version that matches the ending 
                        PackageVersion or VersionPrefix.
For example, 1 to 5 matches 1.1, 
                           2.1,  3.1,  or 5.0 (but
                        not 5.1), while 1 to 5.* matches all of these,
                        plus versions such as 5.7.2 (but not 6.0 or
                           6.0-beta). Similarly,
                              1.0-beta to 1.0 matches 1.0-beta,
                              1.0-beta.2, 1.0-gamma, and 1.0,
                           but not 1.0-alpha or 1.0.1.
When components in one package reference components in another, the dependency of the first
                  package on the second must be represented by an xsl:use-package
                  element. This may appear in the principal stylesheet module
               of the first package (which may be a package manifest), or
               it may appear in a stylesheet module that is referenced from
                  the principal stylesheet module via one or more
               xsl:include declarations; however it must not be referenced
               via xsl:import declarations (this is to avoid complications
                     caused by multiple xsl:use-package declarations with
                     different import precedence).
[Definition: If a package Q contains an
                        xsl:use-package element that references package
                        P, then package Q is said to use package
                        P. In this relationship package Q is referred to as
                     the using package, package P as the used
                     package.]
The phrase directly uses is synonymous with uses as defined above, while directly or indirectly uses refers to the transitive closure of this relationship.
<!-- Category: declaration -->
<xsl:use-package
  name = uri
  package-version? = string〔'*'〕 >
  <!-- Content: (xsl:package-location | xsl:accept | xsl:override)* -->
</xsl:use-package>
A package may be used by more than one other package, but the relationship must not be cyclic. It is possible, but by no means inevitable, that using the same package in more than one place within a stylesheet will cause static errors due to the presence of conflicting components according to the above rules. Where a package is successfully used by more than one other package, its components may be overridden in different ways by different using packages.
The name and package-version attributes together
                  identify the used package. The value of the
                        package-version attribute, if present, must conform to the
                     rules for a PackageVersionRange given in 3.5.1 Versions of a Package; if omitted the value * is assumed,
                     which matches any version. The used package must have a name that is an exact
                     match for the name in the name attribute (using codepoint
                     comparison), and its explicit or implicit package-version must
                     match the version range given in the package-version
                     attribute.
Rules for determining the location of the package are described at 3.5.3 Locating Packages.
[ERR XTSE3005] It is a static error if a package is dependent on
                        itself, where package A is defined as being dependent on package
                           B if A contains an xsl:use-package
                        declaration that references B, or if A contains an
                           xsl:use-package declaration that references a package
                           C that is itself dependent on B.
[ERR XTSE3008] It is a static error if an xsl:use-package
                  declaration appears in a stylesheet module that is not in the
                  same stylesheet level as the principal stylesheet module
                  of the package.
The xsl:accept and xsl:override elements are
                  used to modify the visibility or behavior of components acquired from the used
                  package; they are described in 3.5.4.2 Accepting Components below.
Note:
It is not intrinsically an error to have two 
                  xsl:use-package declarations that identify the same package
                  (or different versions of the same package). This has the same effect as
                  having two declarations that identify packages with different names but
                  identical content. In most cases it will result in an error ([see ERR XTSE3050])
                  due to the presence of multiple components with the same name; but 
                  no error would occur, for example, if the used package is empty, or if the 
                  two xsl:use-package declarations use xsl:accept
                  to accept non-overlapping subsets of the components in the used package.
A package may be located either explicitly, through one or more
                            xsl:use-package elements, or implicitly, in an implementation-defined mechanism. Providing multiple package locations 
                       allows a developer to create fallback mechanisms or perform diagnostics.
<xsl:package-location
  href = uri
  path-in-archive? = string
  archive-type? = string
  is-priority? = boolean〔true()〕
  format? = string />
A xsl:package-location points to a resource that may or 
                    may not be an archive. If the target resource is an archive, then xsl:package-location:
                       
 must have an attribute path-in-archive, specifying the 
                                 location of the package manifest within the archive. The value of 
                                 path-in-archive is normalized such that it always begins with the string !/
                                 (the result of replace(., "^(!/)?(.+)", "!/$2")).
                             
 may have an attribute archive-type,
                                specifying the type of archive. Implementations must 
                                support the ZIP file format, as defined by [ISO 21320], the 
                                default archive format if the attribute is missing or the explicit format 
                                if the attribute has the value zip. All other values of this 
                                attribute are implementation-defined.
It is a static error if the attribute archive-type
                      is present without the attribute path-in-archive, or if it does not have the
                      value zip or an implementation-defined value.
                   
The attribute href takes an absolute or relative URI reference,
                        which is resolved as described in 5.8 URI References, to 
                        locate the resource that is the package manifest 
                        or is the archive that contains the package manifest. 
The URI scheme for archive resources is currently only provisionally defined ([RFC 7595]),
                       with the syntax jar:<url>!/[<entry>], but variations on this syntax are known (such as using
                       zip instead of jar). The entry is already accommodated by the attribute 
                       archive-type, so the following adjustments must be made to the value of href
                       that points to an archive:
                        
Remove "zip:" or "jar:" from the beginning of the value.
Remove !/ and any string text that follows.
The attribute format takes a string, default value
                            xslt if the attribute is absent, specifying the format of
                        the package manifest. The value 
                        xslt indicates that the package manifest is a standard XML
                        resource as described in these specifications. All other values are implementation-defined, allowing implementers to support optimized
                        formats for a package manifest, be it a compiled binary resource or a different XML 
                        format.
[Definition: A 
                         xsl:package-location without the attribute is-priority, 
                         or with is-priority set to true is a high priority package 
                            location.]
                      [Definition: A 
                         xsl:package-location with is-priority set to false is a 
                         low priority package location.]
Each high priority package location is processed in document order, followed by
                       implementation-defined package locations, followed by each 
                       low priority package location in document order. [Definition: The
                            first package location whose value of href, when resolved
                            as described in 5.8 URI References, allows the system to
                            find the specified resource, and its entry if the resource is an archive, is
                            the optimal package location.] Once an optimal
                        package location is found, no other package locations are checked. 
If the returned resource is an archive, the archive entry is to be treated as the
                     package manifest, otherwise the resource itself is to be
                  treated as the package manifest. The package manifest returned from the optimal package location is
                  checked against the implicit or explicit value of the attribute
                     format. If the resource does not conform to the rules for the
                  format type a static error is raised.
The package manifest is then checked against the the
                        package name and version specified in the xsl:use-package
                        declaration. If the resource does not conform to the rules for the name and
                        version, a static error is raised.
[ERR XTSE3000] It is a static error if after evaluating each
                                    xsl:package-location declaration and implementation-defined package location, no 
                               priority package location is found.
[ERR XTSE3002] It is a static error if the package manifest returned by the priority package location does not conform to the
                                rules of the implicit or explicit value of attribute
                                    format.
[ERR XTSE3003] It is a static error if the package manifest returned by the priority package location does not conform to the
                                name and version specified in an xsl:use-package
                                declaration.
[ERR XTSE3004] It is a static error if the attribute archive-type
                               is present without the attribute path-in-archive, or if it does not have the
                               value zip or an implementation-defined value.
Note:
Use of the package name as a dereferenceable URI is not recommended, because the intent of the packaging feature is to allow a package to be distributed as reusable code and therefore to exist in many different locations.
Note:
Depending on the implementation architecture, there may be a need to locate used packages both during static analysis (for example, to get information about the names and type signatures of the components exposed by the used package), and also at evaluation time (to link to the implementation of these components so they can be invoked). A failure to locate a package may cause an error at either stage.
Consider a using package Q, invoked as follows:
<xsl:use-package name="Q" version="3.0" xmlns:saxon="http://saxon.sf.net/"/> <package-location href="q-dev.xsl" use-when="$diagnostics-on"/> <package-location _href="file:/{$prod-path}/q.zip" path-in-archive="q.sef" is-priority="true" format="saxon:sef"/> <package-location href="file:/D:/fallback/q.xsl" format="xslt" is-priority="false"/> </xsl:package>
The first xsl:package-location will be the first to be evaluated
                           only if the static parameter $diagnostics-on is true, in which case
                           the local file q-dev.xsl, if it exists, will be the priority package location. 
                            The next xsl:package-location to be checked points to the archive resource located by 
                            the path file:/{$prod-path}/q.zip (which depends upon
                            the value of static parameter $prod-path), and the entry q.sef
                            at the root of the archive (assumed to be a ZIP file for lack of a 
                            archive-type). Next will be any implementation-defined package locations. Last will be
                            the last xsl:package-location, a low priority package location, which 
                           serves as a local fallback.
Each of these package locations will be evaluated in turn. If no priority package location is found, an error is raised. Only the first resource to qualify as the priority package location will be checked, to ensure it conforms to the file format and the package name and version.
This section discusses the use of named components in packages.
The components which can be declared in one package and referenced in another are: functions, named templates, attribute sets, modes, and global variables and parameters.
In addition, keys and accumulators are classified as named components because they can contain references to components in another package, even though they cannot themselves be referenced from outside the package.
Named and unnamed modes come within the scope of this section, but there are differences noted in 3.5.5 Overriding Template Rules from a Used Package.
Not all declarations result in components:
Named declarations that can neither be referenced from outside their
                        containing package, nor can contain references to components in other
                        packages (examples are xsl:output,
                           xsl:character-map, and
                           xsl:decimal-format) are not considered to be components
                        and are therefore outside the scope of this section.
Some declarations, such as xsl:decimal-format and
                           xsl:strip-space, declare aspects of the processing
                        context which are not considered to be components as defined here.
Template rules
                           (xsl:template with a match attribute) are
                        also not considered to be components for the purposes of this section, which
                        is concerned only with components that are bound by name. However, when an
                           xsl:template has both a match attribute and
                        a name attribute, then it establishes both a template rule and
                        a named template, and in its role
                        as a named template it comes within the scope of this discussion.
A named declaration, for example a named template, a function, or a global variable, may be overridden within the same package by another like-named declaration having higher import precedence. When a declaration is overridden in this way it cannot be referenced by name either from within its containing package or from outside that package.
In the case of xsl:attribute-set
                        and xsl:key declarations, several declarations combine to
                        form a single component.
The section is largely concerned with details of the rules that affect references from one component to another by name, whether the components are in the same package or in different packages. The rules are designed to meet a number of requirements:
A component defined in one package can be overridden by a component in another package, provided the signatures are type-compatible.
The author of a package can declare whether the components in the package are public or private (that is, whether or not they can be used from outside the package) and whether they are final, overridable, or abstract (that is whether they can or must be overridden by the using package).
Within an application, two packages can make use of a common library and override its components in different ways.
Visibility of components can be defined either as part of the declaration of the component, or in the package manifest.
An application that wishes to make use of a library package can be selective about which components from the library it acquires, perhaps to avoid name clashes between components acquired from different libraries.
[Definition: The term component is used to refer to any of the following: a stylesheet function, a named template, a mode, an accumulator, an attribute set, a key, global variable, or a mode.]
[Definition: The symbolic identifier of a component is a composite name used to identify the component uniquely within a package. The symbolic identifier comprises the kind of component (stylesheet function, named template, accumulator, attribute set, global variable, key, or mode), the expanded QName of the component (namespace URI plus local name), and in the case of stylesheet functions, the upper bound of the arity range.]
Note:
In the case of the unnamed mode, the expanded QName of the component may be considered to be some system-allocated name different from any user-defined mode name.
[Definition: Two components are said to be homonymous if they have the same symbolic identifier.]
Every component has a declaration in some stylesheet module and therefore within some package. In the case of attribute sets and keys, there may be several declarations. The declaration is an element in an XDM tree representing the stylesheet module. Declarations therefore have identity, based on XDM node identity.
[Definition: The declaring
                        package of a component is the
                     package that contains the declaration (or,
                        in the case of xsl:attribute-set and
                           xsl:key, multiple declarations) of the
                     component.]
When a component declared in one package is made available in another, the using package will contain a separate component that can be regarded as a modified copy of the original. The new component shares the same symbolic identifier as the original, and it has the same declaration, but it has other properties such as its visibility that may differ from the original.
[Definition: A
                     component declaration results in multiple components, one in the package in
                     which the declaration appears, and potentially one in each package that uses
                     the declaring package, directly or indirectly, subject to the visibility of the
                     component. Each of these multiple components has the same declaring package, but each has a different containing
                        package. For the original component, the declaring package and the
                     containing package are the same; for a copy of a component made as a result of
                     an xsl:use-package declaration, the declaring package will be
                     the original package, and the containing package will be the package in which
                     the xsl:use-package declaration appears.]
Note:
Within this specification, we generally use the notation CP for a component named C whose declaring package and containing package are both P; and the notation CPQ for a component whose containing package is P and whose declaring package is Q (that is, a component in P that is derived from a component CQ in the used package Q).
The properties of a component are as follows:
The original declaration of the component.
The package to which the component belongs (called its containing package, not to be confused with the declaring package).
The symbolic identifier of the component.
The visibility of the component,
                        which determines the way in which the component is seen by other components
                        within the same package and within using packages. This is one of
                           public, private, abstract,
                           final, or hidden. The visibility of components
                        is discussed further in 3.5.4.1 Visibility of Components.
A set of bindings for the symbolic references in the component. The way in which these bindings are established is discussed further in 3.5.4.5 Binding References to Components.
Note:
When a function F defined in a package P is acquired by two using packages Q and R, we may think of P, Q, and R as all providing access to the “same” function. The detailed semantics, however, demand an understanding that there is one function declaration, but three components. The three components representing the function F within packages P, Q, and R have some properties in common (the same symbolic identifier, the same declaration), but other properties (the visibility and the bindings of symbolic references) that may vary from one of these components to another.
[Definition: The declaration of a component includes
                     constructs that can be interpreted as references to other components by means of their symbolic identifiers. These
                     constructs are generically referred to as symbolic references.
                     Examples of constructs that give rise to symbolic references are the
                        name attribute of xsl:call-template; the
                        [xsl:]use-attribute-sets attribute of
                     xsl:copy, xsl:element, and literal result elements; the
                        explicit or implicit
                     mode attribute of xsl:apply-templates; XPath
                     variable references referring to global variables; XPath static function calls (including partial function
                        applications) referring to stylesheet functions; and
                        named function references (example: my:f#1) referring to
                        stylesheet functions.
                     ]
Symbolic references exist as properties of the declaration of a component.
                  The symbolic identifier being
                  referred to can be determined straightforwardly from the syntactic form and
                  context of the reference: for example, the instruction <xsl:value-of
                     select="f:price($o)" xmlns:f="http://f.com/"/> contains a symbolic
                  reference to a function with expanded name {http://f.com/}price and
                  with arity=1. However, because there may be several (homonymous) function
                  components with this symbolic identifier, translating this symbolic reference into
                  a reference to a specific component (a process called “binding”) is less
                  straightforward, and is described in the text that follows. 
The process of assembling a stylesheet from its constituent packages is primarily a process of binding these symbolic references to actual components. Within any component whose declaration is D, there is a set of bindings; each binding is an association between a symbolic reference in D and a component whose symbolic identifier matches the outward reference. Outward references for which a component C contains a binding are said to be bound in C; those for which C contains no binding are said to be unbound.
For example, suppose that in some package Q, function A
                  calls B, which in turn calls C, and that B is
                     private. Now suppose that in some package P which uses
                     Q, C is overridden. The effect of the binding process is
                  that P will contain three components corresponding to A,
                     B, and C, which we might call AP,
                     BP, and CP. The declarations of AP and BP are in package
                     Q, but the declaration of CP is in P. The
                  internal visibility of BP will be hidden (meaning that it
                  cannot be referenced from within P), and BP will contain a
                  binding for the component CP that corresponds to the outward reference
                  from B to C. The effect is that when A calls
                     B and B calls C, it is the overriding version
                  of C that is executed.
In another package R that uses Q without overriding C, there will be three different components AR, BR, and CR. This time the declaration of all three components is in the original package Q. Component BR will contain a binding to CR, so in this package, the original version of C is executed. The fact that one package P overrides C thus has no effect on R, which does not override it.
The binding process outlined above is described in more detail in 3.5.4.5 Binding References to Components.
Template rules are not components in their own right; unlike named templates, they are never referenced by name. Component references within a template rule (for example, references to functions, global variables, or named templates) are treated as occurring within the component that represents the containing mode. This includes component references within the match patterns of template rules. If a template rule lists several modes, it is treated as if there were multiple template rules one in each mode.
An xsl:apply-templates instruction
                  with no mode attribute is treated as a reference to the default mode
                  defined for that instruction (see 3.7.3 The default-mode Attribute), which in turn defaults to the unnamed mode. An implicit
                  reference to the unnamed made is treated in the same way as any other symbolic reference. Note that there is an unnamed mode in every
                  package, and the unnamed mode always has private visibility.
Where an xsl:template element has both
                  a name and a match attribute, it is treated as if there
                  were two separate xsl:template elements, one with a
                     name attribute and one with a match attribute. 
Keys
                  and accumulators behave rather differently from other
                  components. Their visibility is always private, which means they can only be used
                  within their declaring package. In addition, the component binding is generally
                  made dynamically rather than statically, by
                     virtue of a string passed as an argument to the function
                        key, accumulator-before, or
                        accumulator-after. (In the case of accumulators, there
                     can also be static references: see the use-accumulators attribute
                     of xsl:source-document, 
                     xsl:merge-source, and xsl:mode.) 
                     However, outward references from key
                  definitions and accumulators to other components (such as global
                  variables and functions) behave in the same way as component references contained
                  in any other private component, in that they may be re-bound to an overriding
                  declaration of the target component.
[Definition: The visibility of a
                           component is one of:
                           private, public, abstract,
                           final, or hidden.]
The meanings of these visibility values is as follows:
The component can be referenced from other components in this package or in any using package; it can be overridden by a different component in any using package.
The component can be referenced from other components in this package; it cannot be referenced or overridden within a using package.
The component can be referenced from other components in this package or in any using package; in a using package it can either remain abstract or be overridden by a different component.
The component can be referenced from other components in this package or in any using package; it cannot be overridden by a different component in any using package.
The component cannot be referenced from other components in this package; it cannot be referenced or overridden within a using package.
Note:
The visibility of a component in a package P primarily affects
                        how the component can be used in other packages, specifically, packages that
                        use P. There is one exception: if the visibility is
                           hidden, it also affects how the component can be used within
                           P.
When a component is declared within a particular
                     package, its visibility, which affects
                     how it can be used in other (using) packages, depends on two factors: the value
                     of the visibility declaration on the declaration itself (if
                     present), and the rules given in the xsl:expose declarations
                     of the package manifest.
The xsl:function, xsl:template,
                        xsl:attribute-set, xsl:variable, 
                        xsl:mode, xsl:item-type, and xsl:record-type
                     declarations each have an optional
                        visibility attribute. The permitted value is some subset of private,
                        public, abstract, or final (never
                        hidden). In the case of
                           an xsl:param element there is no explicit 
                           visibility attribute; rather the declaration has the
                           implicit attribute visibility="public".
Any xsl:expose declarations that
                     appear as children of xsl:package define the visibility of
                     components whose declaration has no explicit visibility attribute,
                     and can also be used to reduce the visibility of components where this
                     attribute is present.
<xsl:expose
  component = "template" | "function" | "attribute-set" | "variable" | "mode" | "item-type" | "record-type" | "*"
  names = tokens
  visibility = "public" | "private" | "final" | "abstract" />
The xsl:expose element allows the visibility of selected components within a package to be defined.
The components in question are identified using their symbolic identifiers. The
                        component attribute defines the kind of component that is
                        selected.
                     The value * means “all component kinds”;
                        in this case the value of the names attribute must be a WildcardXP.
An xsl:expose declaration has no effect on the 
                     unnamed mode, which is always private to a package.
The names attribute selects a subset of these components by name
                     (and in the case of functions, arity); its value is a whitespace-separated
                     sequence of tokens each of which is either a NameTestXP or a NamedFunctionRefXP. (Examples are
                        *, p:*, *:local,
                     p:local, and p:local#2.)
The value may be a NamedFunctionRef only in the case of stylesheet
                     functions, and distinguishes functions with the same name and different
                     arity. A NameTestXP
                     on its own (that is, with no arity) cannot be used to identify a function.
The visibility of a named template, function, variable, attribute set, mode, named item type, or named record type declared within a package is the first of the following that applies, subject to consistency constraints which are defined below:
The visibility of a variable declared using
                           an xsl:param element is
                           always public. No xsl:expose element
                        ever matches an xsl:param component.
Note:
Attempting to match an xsl:param with
                        an explicit EQName will therefore always give an error, while
                        using a wildcard has no effect.
If the package manifest contains an xsl:expose element
                           that matches this component by virtue of an explicit EQName
                           or NamedFunctionRef (that is, not by virtue of a wildcard
                           match), then the value of the visibility attribute of the
                           last such xsl:expose element in document order (call
                           this the explicit exposed visibility).
If the declaration of the component has a visibility
                           attribute, then the value of this attribute (call this the declared
                              visibility).
If the package manifest contains an xsl:expose element
                           that matches this component by virtue of a wildcard match that specifies
                           either the namespace part of the component name or the local part of the
                           name (for example, prefix:* or *:local or
                              Q{uri}*), then the value of the visibility
                           attribute of the last such xsl:expose element in
                           document order.
If the package manifest contains an xsl:expose element
                           that matches this component by virtue of a wildcard match that matches
                           all names (that is, *), then the value of the
                              visibility attribute of the last such
                              xsl:expose element in document order.
Otherwise, private.
Note:
In the above rules, no distinction is made between declarations that specify
                  a specific component kind, and those that specify component="*". If both match,
                  the value of the component attribute plays no role in deciding which 
                  declaration wins.
If both a declared visibility and an explicit
                     exposed visibility exist for the same component, then as mentioned above, they
                     must be consistent. This is determined by reference to the following table,
                     where the entry N/P means “not permitted”. (In cases where the combination is
                     permitted, the actual visibility is always the same as the visibility
                     determined by xsl:expose.)
| Explicit exposed visibility | Declared visibility | |||
|---|---|---|---|---|
| public | private | final | abstract | |
| public | public | N/P | N/P | N/P | 
| private | private | private | private | N/P | 
| final | final | N/P | final | N/P | 
| abstract | N/P | N/P | N/P | abstract | 
                     [ERR XTSE3010] It is a static error if the
                           explicit exposed visibility of a component is inconsistent with its
                           declared visibility, as defined in the above table. (This error occurs
                           only when the component declaration has an explicit
                              visibility attribute, and the component is also listed
                           explicitly by name in an xsl:expose declaration.)
                  
                     [ERR XTSE3020] It is a static error if a token
                           in the names attribute of xsl:expose, other
                           than a wildcard, matches no component in the containing package.
                  
                     [ERR XTSE3022] It is a static error if the 
                           component attribute of xsl:expose specifies *
                           (meaning all component kinds) and the names attribute is not a wildcard.
                  
Note:
There is no ambiguity, and no error, if several tokens within the same
                           xsl:expose element match the same component.
If the visibility of a component as established by the above rules
                  is abstract, then the component must have a declared visibility of abstract.
Note:
In other words, the xsl:expose declaration cannot be used to make a component
                  abstract unless it was declared as abstract to start with.
                     [ERR XTSE3025] It is a static error if the
                           effect of an xsl:expose declaration would be to make a component
                           abstract, unless the component is already abstract
                           in the absence of the xsl:expose declaration.
                        
                  
For a component accepted into a package P
                     from another package Q, the visibility of the component in P (which primarily
                     affects how it can be used in a package R that uses P)
                     depends on the visibility declared in the relevant xsl:accept
                     or xsl:override element in P (see 3.5.4.2 Accepting Components); this in turn has a default that depends on
                     the visibility of the corresponding component in Q. In this case the
                     visibility is unaffected by any xsl:expose declaration in
                        P.
When a package P uses a package Q, by virtue of an
                        xsl:use-package element in the package manifest of P, then
                        P will contain a component
                     corresponding to every component in Q. The visibility of the component within
                        P depends on the visibility of the component in Q, optionally modified
                     by two elements that may appear as children of the
                        xsl:use-package element, namely xsl:accept
                     and xsl:override.
For every component CQ in package Q that is not matched
                     by any xsl:override or xsl:accept element in
                     the package manifest of P, there will be a corresponding component
                        CP in package P that has the same symbolic identifier and declaration as CQ.
If CQ is an xsl:param
                        component, then the visibility of CP is
                        public.
In other cases, the visibility of CP depends on the visibility of CQ, as defined by the following table:
| Visibility in used package CQ | Visibility in using package CP | 
|---|---|
| public | private | 
| final | private | 
| private | hidden | 
| hidden | hidden | 
| abstract | hidden | 
Note:
The effect of these rules is as follows:
Components that are public or final in the used package Q become private in the using package P. This means that they can be referenced within P but are not (by default) visible within a package R that uses P.
Components that are private or hidden in the used package Q become hidden in the using package P. This means that they cannot be referenced within P; but if they contain references to components that are overridden in P, the hidden component’s references are bound to the overriding components in P.
Components that are abstract in the used package Q become hidden in the using package P. The hidden component in this case raises a dynamic error if it is invoked. Such an invocation cannot originate within P, because the component is not visible within P; but it can occur if a public component in Q is invoked, which in turn invokes the abstract component.
<xsl:accept
  component = "template" | "function" | "attribute-set" | "variable" | "mode" | "item-type" | "record-type" | "*"
  names = tokens
  visibility = "public" | "private" | "final" | "abstract" | "hidden" />
The xsl:accept element has very similar syntax and semantics
                     to xsl:expose. Whereas xsl:expose allows a
                     package to restrict the visibility of its own components to other (using)
                     packages, xsl:accept allows a package to restrict the
                     visibility of components exposed by a package that it uses. This may be
                     necessary if, for example, it uses two different packages whose component names
                     conflict. It may also simply be good practice if the package author knows that
                     only a small subset of the functionality of a used package is required.
The rules for determining whether an xsl:accept element
                     matches a particular component, and for which element to use if there are
                     several matches, are the same as the rules for the xsl:expose
                     element.
No xsl:accept element
                     ever matches a variable declared using xsl:param.
Note:
Attempting to match an xsl:param with
                     an explicit EQName will therefore always give an error, while
                     using a wildcard has no effect.
                     [ERR XTSE3030] It is a static error if a token
                           in the names attribute of xsl:accept, other
                           than a wildcard, matches no component in the used package.
                  
                     [ERR XTSE3032] It is a static error if the 
                           component attribute of xsl:accept specifies *
                           (meaning all component kinds) and the names attribute is not a wildcard.
                  
In the absence of a matching xsl:override element (see
                        3.5.4.3 Overriding Components from a Used Package), the visibility of a component that matches an
                        xsl:accept element depends both on the
                        visibility attribute of the best-matching
                        xsl:accept element and on the visibility of the corresponding component in the used package,
                     according to the following table. In this table the entry “N/P” means “not
                     permitted”.
| Visibility in xsl:acceptelement | Visibility in used package | |||
|---|---|---|---|---|
| public | private | final | abstract | |
| public | public | N/P | N/P | N/P | 
| private | private | N/P | private | N/P | 
| final | final | N/P | final | N/P | 
| abstract | N/P | N/P | N/P | abstract | 
| hidden | hidden | N/P | hidden | hidden | 
                     [ERR XTSE3040] It is a static error if the
                           visibility assigned to a component by an xsl:accept
                           element is incompatible with the visibility of the corresponding
                           component in the used package, as defined by the above table, unless the
                           token that matches the component name is a wildcard, in which case the
                              xsl:accept element is treated as not matching that
                           component.
                  
                     [ERR XTSE3050] It is a static error if the
                              xsl:use-package elements in a package manifest cause two or more
                              homonymous components to be
                           accepted with a visibility other than hidden.
                  
Conflicts between the components accepted from used packages and those declared within the package itself are handled as follows:
If the conflict is between two components both declared within the package itself, then it is resolved by the rules relating to import precedence defined for each kind of component.
If the conflict is between two components both accepted from used packages, or between a component declared within the package and an accepted component, then a static error occurs.
If a component is explicitly accepted from a used package (by name, rather
                           than by a matching wildcard), and if the same component is the subject
                           of an xsl:override declaration, then a static error
                        occurs (see below). There is no conflict, however, if a component declared
                        within xsl:override also matches a wildcard in an xsl:accept
                        element.
                           [ERR XTSE3051] It is a static error if
                                 a token in the names attribute of xsl:accept,
                                 other than a wildcard, matches the symbolic name of a component declared
                                 within an xsl:override child of the same
                                 xsl:use-package element.
                        
Where the used package Q contains a component whose
                     visibility is abstract, the using package P has three options:
P can accept the component with visibility="abstract".
                        In this case P can contain references to the component, but invocation via
                     these references will fail unless a non-abstract overriding component has
                     been supplied in some package R that (directly or indirectly) uses P.
P can accept the component with visibility="hidden".
                        In this case P cannot contain references to the component, and invocation via
                        references in Q will always fail with a dynamic error. This is the default
                     if P does not explicitly accept or override the component.
P can provide a concrete implementation of the component
                     within an xsl:override element.
Any invocation of the absent component (typically from within its declaring package) causes a dynamic error, as if the component were overridden by a component that unconditionally raises a dynamic error.
[ERR XTDE3052] It is a dynamic error if an invocation of an abstract component is evaluated.
Note:
This can occur when a public component in the used package invokes
                           an abstract component in the used package, and the using package provides
                           no concrete implementation for the component in an xsl:override
                           element.
Note:
To override a component accepted from a used package, the overriding
                        declaration must appear as a child of the xsl:override
                        element.
Note:
There is no rule that prevents a function (say) being declared in the using
                        package with the same name as a private function in the used
                        package. This does not create a conflict, since all references in the used
                        package are bound to one function and all those in the using package are
                        bound to another.
[Definition: A component in a using package may
                           override a component in a used package, provided that the
                           visibility of the component in the
                        used package is either abstract or public. The
                        overriding declaration is written as a child of the
                           xsl:override element, which in turn appears as a child
                        of xsl:use-package.]
<xsl:override>
  <!-- Content: (xsl:template | xsl:function | xsl:variable | xsl:param | xsl:attribute-set)* -->
</xsl:override>
Note:
This mechanism is distinct from the mechanism for overriding declarations within the same package by relying on import precedence. It imposes stricter rules: the overriding component is required to be type-compatible with the component that it overrides.
If the used package Q contains a component
                     CQ and the xsl:use-package element contains an
                        xsl:override element which contains a declaration
                        D whose symbolic
                        identifier matches the symbolic identifier of CQ, then
                     the using package P will contain a component CP whose
                     declaration is D, whose symbolic identifier is that of D, and whose visibility is equal to the value of the visibility
                     attribute of D, or private if this is absent, 
                     except in the case
                           of xsl:param, which is implicitly
                           public.
The using package P will also contain a component CPQ
                     whose body is the same as the body of CQ and whose visibility is hidden. This
                     component is used as the target of a binding for the symbolic reference
                        xsl:original described below.
Other than its appearance as a child of xsl:override, the
                     overriding declaration is a normal xsl:function,
                        xsl:template,
                     xsl:variable, xsl:param, or
                        xsl:attribute-set element. In the case of
                        xsl:variable and xsl:param, the variable
                     that is declared is a global
                        variable.
The rules in the remainder of this section apply to
                     components having a name attribute (named
                     components). The only element with no name attribute that
                     can appear as a child of xsl:override is an
                        xsl:template declaration having a match
                     attribute (that is, a template rule). The rules for
                     overriding of template rules appear in 3.5.5 Overriding Template Rules from a Used Package. If
                     an xsl:template element has both a name attribute
                     and a match attribute, then it defines both a named component and
                     a template rule, and both sections apply.
                     [ERR XTSE3055] It is a static error if a
                           component declaration appearing as a child of
                              xsl:override is homonymous with any other declaration in the using package,
                           regardless of import
                              precedence, including any other overriding declaration in
                           the package manifest of the using package.
Note:
When an attribute set is overridden, the
                        overriding attribute set must be defined using a single
                           xsl:attribute-set element. Attribute sets defined in
                        different packages are never merged by virtue of having the same name,
                        though they may be merged explicitly by using the
                           use-attribute-sets attribute.
                     [ERR XTSE3058] It is a static error if a
                           component declaration appearing as a child of
                              xsl:override does not match (is not homonymous with) some component in the
                           used package.
                     [ERR XTSE3060] It is a static error if the
                           component referenced by an xsl:override declaration has
                              visibility other than
                              public or abstract
                  
A package is executable if and only if it contains no component whose visibility is abstract. A package that is not
                     executable is not a stylesheet, and
                     therefore cannot be nominated as the stylesheet to be used when initiating a
                     transformation.
Note:
In other words, if a component is declared as abstract, then some package that uses the declaring package of that component directly or indirectly must override that component with one that is not abstract. It is not necessary for the override to happen in the immediately using package.
[ERR XTSE3070] It is a static error if the signature of an overriding component is not compatible with the signature of the component that it is overriding.
[Definition: The signatures of two components are compatible if they present the same interface to the user of the component. The additional rules depend on the kind of component.]
Compatibility is only relevant when comparing two components that have the same symbolic identifier. The compatibility rules for each kind of component are as follows:
Two attribute sets with the same name are compatible if and only if they satisfy the following rule:
If the overridden attribute set specifies
                                    streamable="yes" then the overriding attribute set
                                 also specifies streamable="yes".
Two functions with the same symbolic identifier are compatible if and only if they satisfy all the following rules:
They have the same arity range (which implies they have the same number of required and optional parameters)
The declared types of the parameters 
                                 (defaulting to item()*) are pairwise identical.
The declared return types 
                                 (defaulting to item()*) are identical.
The effective value of the 
                                 new-each-time 
                                 attribute on the overriding function is the same as its value on the overridden function.
If the overridden function has a streamability attribute with a value
                              other than unspecified, then the overriding function has a
                                 streamability attribute with the same value. 
It is recommended that the parameter names on the overriding function should be the same as on the overridden function. (However, in order to maintain backwards compatibility with XSLT 3.0, this is not required.) If the parameter names are not the same, then the parameter names on the overriding function are effectively replaced with the names declared on the overridden function, so that any static function calls using keyword arguments to set the values of arguments must use the names defined on the overridden function.
Two named templates with the same name are compatible if and only if they satisfy all the following rules:
Their return types are identical.
For every non-tunnel parameter on the overridden template, there is a
                                 non-tunnel parameter on the overriding template that has the same name, an
                                    identical required
                                 type, and the same effective value for the required attributes.
For every tunnel parameter P on the overridden template, if there is a parameter Q on the overriding template that has the same name as P then Q is also a tunnel parameter, and P and Q have identical required types.
Any parameter on the overriding template for which there is no
                                 corresponding parameter on the overridden template specifies
                                    required="no".
The two templates have equivalent
                                    xsl:context-item children, where equivalence
                                 means that the use attributes are the same and the
                                 required types are identical; an absent
                                    xsl:context-item is equivalent to one that
                                 specifies use="optional" and
                                 as="item()".
Two variables (including parameters) with the same name are compatible if and only if they satisfy all the following rules:
Their declared types are identical. For this purpose, the declared type is the first of the following that applies:
If there is an as attribute, then the type defined by that attribute.
If there is a select attribute, then item()*.
If there is a non-empty sequence constructor, then document-node().
Otherwise, xs:string. 
Note:
A variable may override a parameter or vice-versa, and the initial value may differ.
Because static variables and parameters are
                              constrained to have visibility private
                              ,
                              they cannot be overridden in another package. The compatibility rules
                              therefore do not arise. The reason that such variables cannot be
                              overridden is that they are typically used during stylesheet
                              compilation (for example, in [xsl:]use-when expressions
                              and shadow attributes) and it is a design goal that packages should be
                              capable of independent compilation.
[Definition: Types S 
                     and T are considered identical for the purpose of
                        these rules if and only if subtype(S, T) and subtype(T,
                           S) both hold, where the subtype relation is defined in [XPath 4.0] section 3.3.1 Subtypes of Sequence Types.]
Note:
One consequence of this rule is that two plain union types are considered identical if they have the same set of member types, even if the union types have different names or the ordering of the member types is different.
Consider a function that accepts an argument
                           whose declared type is a union type with member types xs:double
                           and xs:decimal, in that order (we might write this as (xs:double | xs:decimal)).
                           Using the same notation, this can be overridden by a function that declares the argument
                           type as (xs:decimal | xs:double). This does not affect type checking:
                              a function call that passes the type checking rules with one signature will also pass the
                              type checking rules with the other. It does however affect the way that the function
                           conversion rules work: a call that passes the xs:untypedAtomic item
                           "93.7" (or an untyped node with this as its string value) will be converted to 
                              an xs:decimal in one case and an xs:double in the other.
While this rule may appear formal, it is not as straightforward as might be supposed, because the subtype relation in XPath has a dependency on the “Type derivation OK (Simple)” relation in XML Schema, which itself appeals to a judgement as to whether the two type definitions being compared “are the same type definition”. Both XSD 1.0 and XSD 1.1 add the note “The wording of [this rule] appeals to a notion of component identity which is only incompletely defined by this version of this specification.” However, they go on to say that component identity is well defined if the components are named simple type definitions, which will always apply in this case. For named atomic types, the final result of these rules is that two atomic types are identical if and only if they have the same name.
A named item type
                           (declared in an xsl:item-type declaration) is considered
                           identical to its expansion.
Two named record types are compared by name, not by content. This is
                              because named record types may potentially be recursive, so the name
                              cannot always be expanded to an expressible record type designator.
                              By implication, the named record type must itself be declared or exposed
                              with visibility="public".
Modes, named item types, and named record type are not overridable, 
                     so xsl:mode, xsl:item-type, and
                     xsl:record-type declarations cannot
                     appear as children of xsl:override. However,
                     the constructor function implicitly created from an 
                     xsl:record-type declaration may be overridden
                     in an xsl:function declaration.
Within the declaration of an overriding named component
                     (that is, a component whose declaration is a child of
                        xsl:override, and has a name attribute), where
                     the overridden component has public visibility, it is
                     possible to use the name xsl:original as a symbolic reference to
                     the overridden component. More specifically: 
Within a named template appearing as a child of
                              xsl:override, the name xsl:original
                           may appear as the value of the name attribute of
                              xsl:call-template: for example,
                              <xsl:call-template name="xsl:original"/>. 
Within a stylesheet function appearing as a child of
                              xsl:override, the static context for contained XPath
                           expressions (other than static
                              expressions) is augmented as follows: the statically
                              known function signatures includes a mapping from the name
                              xsl:original to the signature of the overridden
                           function (which is the same as the signature of the overriding function).
                           This means that the name xsl:original can be used in static
                           function calls, including calls that use partial function application
                           (where one of the arguments is given as "?"), and also in named function
                           references. For example: xsl:original($x),
                              xsl:original($x, ?), xsl:original#2.
Note:
The result of calling function-name(xsl:original#2) is
                              the name of the overridden function, not
                              xsl:original.
If the function xsl:original is
                        called with keyword arguments, the keywords used are those of the overridden
                        function.
Neither xsl:original, nor the overridden function, is added
                           to the dynamically known function definitionsXP component of the dynamic context for
                           XPath expressions within the overriding function. This means that any
                           attempt to bind the function name xsl:original dynamically
                           (for example using function-lookup, or
                              function-available, or
                              xsl:evaluate) will fail, and any attempt to bind
                           the name of the overriding/overridden function dynamically will return
                           the overriding function. 
Within a global variable or parameter appearing as a
                           child of xsl:override, the static context for contained
                           XPath expressions (other than static
                              expressions) is augmented as follows: the in-scope
                              variables includes a mapping from the name
                              xsl:original to the declared type of the overridden
                           variable or parameter (which is the same as the type of the overriding
                           global variable or parameter). 
Within an attribute set appearing as a child of
                              xsl:override, any
                              [xsl:]use-attribute-sets attribute (whether on the
                              xsl:attribute-set element itself, or on any
                           descendant element) may include the name xsl:original as a
                           reference to the overridden attribute set. 
Within the overriding component CP, the symbolic reference
                     xsl:original is bound to the hidden component CPQ
                     described earlier, whose body is that of the component CQ in the
                     used package. 
                     [ERR XTSE3075] It is a static error to use the
                           component reference xsl:original when the overridden
                           component has visibility="abstract".
                  
Modes are not overridable, so the name
                        xsl:original cannot be used to refer to a mode (for example in the mode attribute of
                        xsl:apply-templates). 
Note:
In the case of variables, templates, and attribute sets, the invocation of the overridden component can occur only within the lexical scope of the overriding component. With functions, however, there is greater flexibility. The overriding component can obtain a reference to the overridden component in the form of a function item, and can export this value by passing it to other functions or returning it in its result. A dynamic invocation of this function item (and hence, of the overridden function) can thus occur anywhere.
[Definition: The process of identifying the component to which a symbolic reference applies (possibly chosen from several homonymous alternatives) is called reference binding.]
The process of reference binding in the presence of overriding declarations is best illustrated by an example. The formal rules follow later in the section.
Consider a package Q defined as follows:
<xsl:package name="Q" version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:variable name="A" visibility="final" select="$B + 1"/> <xsl:variable name="B" visibility="private" select="$C * 2"/> <xsl:variable name="C" visibility="public" select="22"/> </xsl:package>
(The process is illustrated here using variables as the components, but the logic would be the same if the example used functions, named templates, or attribute sets.)
There are three components in this package, and their properties are illustrated in the following table. (The ID column is an arbitrary component identifier used only for the purposes of this exposition.)
| ID | Symbolic Name | Declaring Package | Containing Package | Visibility | Body | Bindings | 
|---|---|---|---|---|---|---|
| AQ | variable A | Q | Q | final | $B + 1 | $B → BQ | 
| BQ | variable B | Q | Q | private | $C * 2 | $C → CQ | 
| CQ | variable C | Q | Q | public | 22 | none | 
Now consider a package P that uses Q, and that overrides one of the variables declared in Q:
<xsl:package name="P" version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:use-package name="Q"> <xsl:override> <xsl:variable name="C" visibility="private" select="$xsl:original + 3"/> </xsl:override> </xsl:use-package> <xsl:template name="T" visibility="public"> <xsl:value-of select="$A"/> </xsl:template> </xsl:package>
Package P has five components, whose properties are shown in the following table:
| ID | Symbolic Name | Declaring Package | Containing Package | Visibility | Body | Bindings | 
|---|---|---|---|---|---|---|
| APQ | variable A | Q | P | final | $B + 1 | $B → BPQ | 
| BPQ | variable B | Q | P | hidden | $C * 2 | $C → CP | 
| CPQ | variable C | Q | P | hidden | 22 | none | 
| CP | variable C | P | P | private | $xsl:original + 3 | $xsl:original → CPQ | 
| TP | template T | P | P | public | value-of select="$A | $A → APQ | 
The effect of these bindings is that when template T is called,
                        the result is 51. This is why:
The result of T is the value of APQ.
The value of APQ is the value of BPQ plus 1.
The value of BPQ is the value of CP times 2.
The value of CP is the value of CPQ plus 3.
The value of CPQ is 22.
So the final result is ((22 + 3) * 2) + 1
In this example, the components of P are established in three different ways:
Components APQ, BPQ, and CPQ are modified copies of the corresponding component AQ, BQ, and CQ in the used package Q. The properties of these components are modified as follows:
The symbolic identifier, declaring package, and body are unchanged.
The containing package is changed to P.
The visibility is changed according to the
                                    rules in 3.5.4.2 Accepting Components: in particular,
                                       visibility="private" changes to
                                       visibility="hidden".
The references to other components are rebound as described in this section.
Component CP is the overriding component. Its properties
                              are exactly as if it were declared as a top-level component in
                                 P (outside the xsl:use-package
                              element), except that (a) it must adhere to the constraints on
                              overriding components (see 3.5.4.3 Overriding Components from a Used Package), (b) it is allowed to use
                              the variable reference $xsl:original, and (c) the fact
                              that it overrides CQ affects the way that references from
                              other components are rebound.
Component TP is a new component declared locally in P.
The general rules for reference binding can now be stated:
If the containing package of a component CP is P, then all symbolic references in CP are bound to components whose containing package is P.
When a package P uses a package Q, then for every component CQ in Q, there is a corresponding component CP in P, as described in 3.5.4.2 Accepting Components.
Given a component CP whose containing package and declaring package are the same package P, then (as a consequence of rules
                           elsewhere in this specification) for every symbolic reference
                           D within CP, other than a reference using the name
                              xsl:original, there will always be exactly one non-hidden
                           component DP whose containing package is P and
                           whose symbolic identifier matches D
                           (otherwise a static error will have been raised). The reference is then
                           bound to DP.
In the case of a component reference using the name
                              xsl:original, this will in general appear within a
                           component CP that overrides a component CQ whose
                           corresponding component in P is CPQ, and the
                              xsl:original reference is bound to CPQ.
Given a component CP whose containing package
                           P is a different package from its declaring package
                           R (that is, CP is present in P by
                           virtue of an xsl:use-package declaration referencing
                           package Q, which may or may not be the same as R),
                           then the component bindings in CP are derived from the
                           component bindings in the corresponding component CQ as
                           follows: if the component binding within CQ is to a component
                              DQ, then:
If DQ is overridden within P by a component DP, then the reference is bound to DP;
Otherwise, the reference is bound to the component DPQ in P whose corresponding component in Q is DQ.
When reference resolution is performed on a package that is intended to be used
                     as a stylesheet (that is, for the
                        top-level package), there must
                     be no symbolic references referring to components whose visibility is
                        abstract (that is, an implementation must be provided for every
                     abstract component). 
                     [ERR XTSE3080] It is a static error if a
                              top-level package (as
                           distinct from a library
                              package) contains 
                           components whose visibility is abstract.
                  
Note:
Abstract components in a used package by default become hidden in the using package, which means that a reference to the component in the top-level package will fail to resolve (resulting in a different static error). This particular error occurs only if the abstract component is declared within the top-level package.
Note:
Unresolved references are allowed at the module level but not at the package level. A stylesheet module can contain references to components that are satisfied only when the module is imported into another module that declares the missing component.
Note:
The process of resolving references (or linking) is critical to an implementation that uses separate compilation. One of the aims of these rules is to ensure that when compiling a package, it is always possible to determine the signature of called functions, templates, and other components. A further aim is to establish unambiguously in what circumstances components can be overridden, so that compilers know when it is possible to perform optimizations such as inlining of function and variable references.
Suppose a public template T calls a private function F. When the package containing these two components is referenced by a using package, the template remains public, while the function becomes hidden. Because the function becomes hidden, it can no longer conflict with any other function of the same name, or be overridden by any other function; at this stage the compiler knows exactly which function T will be calling, and can perform optimizations based on this knowledge.
The mechanism for resolving component references described in this section is consistent with the mechanism used for binding function and variable references described in the XPath specification. XPath requires these variable and function names to be present in the static context for an XPath expression. XSLT ensures that all the non-hidden functions, global variables, and global parameters in a package are present in the static context for every XPath expression that appears in that package, along with required information such as the type of a variable and the signature of a function.
Named component references within inline functions follow the standard rules, but the rules need to be interpreted with care. Suppose that in package P we find the declarations:
<xsl:variable name="v" as="xs:integer" visibility="public" select="3"/> <xsl:function name="f:factory" as="fn(*)" visibility="final"> <xsl:sequence select="fn() { $v }"/> </xsl:function>
and that in a using package Q we find:
<xsl:use-package name="P"> <xsl:override> <xsl:variable name="v" as="xs:integer" select="4"/> </xsl:override> </xsl:use-package> <xsl:template name="xsl:initial-template"> <v value="{f:factory()()}"/> </xsl:template>
The correct output here is <v value="4"/>.
The explanation for this is as follows. Package Q contains a function f:factoryQP
                        whose declaring package is P and whose containing package is Q. The symbolic reference
                        $v within the body of this function is resolved in the normal way; since the containing package
                        is Q, it is resolved to the global variable vQ: that is, the overriding declaration
                        of $v that appears within the xsl:override element within package Q,
                        whose value is 4.
In terms of internal implementation, one way of looking at this is that the anonymous function returned
                        by f:factory contains within its closure bindings for the global variables and functions that
                        the anonymous function references; these bindings are inherited from the component bindings of the
                        component that lexically contains these symbolic references, which in this case is f:factory,
                        and more specifically the version of the f:factory component in package Q.
There are several functions in which a dynamically evaluated QName is used to
                     identify a component: these include key,
                        accumulator-before,
                        accumulator-after,
                     apply-templates,
                     function-lookup, and
                        function-available. Dynamic references can also occur
                     in the XPath expression supplied to the xsl:evaluate
                     instruction. 
In all these cases, the set of components that are available to be referenced
                     are those that are declared in the package where this function call appears,
                     including components declared within an xsl:override
                     declaration in that package, but excluding components declared with
                        visibility="abstract". If the relevant component has been
                     overridden in a different package, the overriding declarations are not
                     considered. 
If one of these functions (for example key or
                        accumulator-before) is invoked via a dynamic function
                     invocation, then the relevant package is the one in which the function item is
                     created (using a construct such as key#2, key('my-key',
                        ?), or function-lookup($KEYFN, 2)). Function items
                     referring to context-dependent functions bind the context at the point where
                     the function item is created, not the context at the point where the function
                     item is invoked.
Note:
This means that if a package wishes to make a key available for use by a
                        calling package, it can do so by creating a public global variable whose
                        value is a partial application of the key function:
<xsl:variable name="get-order" select="key('orders-key', ?, ?)"/>
which the calling code can invoke as $get-order('123-456', /).
The rules in the previous section apply to named components including functions, named templates, global variables, and named attribute sets. The rules for modes, and the template rules appearing within a mode, are slightly different.
The unnamed mode is local to a package: in effect, each package has its own
                  private unnamed mode, and the unnamed mode of one package does not interact with
                  the unnamed mode of any other package. An
                        xsl:apply-templates instruction with no mode
                     attribute is treated as a symbolic reference to the default
                     mode defined for that instruction (see 3.7.3 The default-mode Attribute), which in
                     turn defaults to the unnamed mode. Because the unnamed mode
                     always has private visibility, it cannot be overridden in another 
                     package.
A named mode may be declared in an xsl:mode declaration as being
                  either public, private, or final. The
                  values of the visibility attribute are interpreted as follows:
| Value | Meaning | 
|---|---|
| public | A using package may use xsl:apply-templatesto invoke templates in this mode;
                              it may also declare additional template rules in this mode, which are
                              selected in preference to template rules in the used package. These may
                              appear only as children of thexsl:overrideelement
                              within thexsl:use-packageelement. | 
| private | A using package may neither reference the mode nor provide additional templates in this mode; the name of the mode is not even visible in the using package, so no such attempt is possible. The using package can use the same name for its own modes without risk of conflict. | 
| final | A using package may use xsl:apply-templatesto invoke templates in this mode,
                              but it must not provide additional template rules in this mode. | 
As with other named components, an xsl:use-package declaration
                  may contain an xsl:accept element to control the visibility of a
                  mode acquired from the used package. The allowed values of its
                     visibility attribute are public,
                  private, and final.
The xsl:mode declaration itself must not be overridden. A using
                  package must not contain an xsl:mode declaration whose name
                  matches that of a public or final
                  xsl:mode component accepted from a used package.
The xsl:expose and xsl:accept elements may be
                  used to reduce the visibility of a mode in a using package; the same rules apply
                  in general, though some of the rules are not applicable because, for example,
                  modes cannot be abstract.
It is not possible for a package to combine the template rules from two other
                  packages into a single mode. When xsl:apply-templates is used
                  without specifying a mode, the chosen template rules will always come from the
                  same package; when it is used with a named mode, then they will come from the
                  package where the mode is defined, or any package that uses that package and adds
                  template rules to the mode. If two template rules defined in different packages
                  match the same node, then the rule in the using package wins over any rule in the
                  used package; this decision is made before taking other factors such as import
                  precedence and priority into account.
A static error occurs if two modes with the same name are visible within a package, either because they are both declared within the package, or because one is declared within the package and the other is acquired from a used package, or because both are accepted from different used packages.
The rules for matching template rules by import precedence and priority operate as
                  normal, with the addition that template rules declared within an
                     xsl:use-package element have higher precedence than any
                  template rule declared in the used package. More specifically, given an xsl:apply-templates instruction
                     in package P, naming a mode M that is declared in a used
                     package Q and is overridden in P, the search order for
                     template rules is:
Rules declared within P (specifically,
                           xsl:template rules declared as children of an
                           xsl:override element within the
                           xsl:use-package element that references package
                           Q). If there are multiple rules declared within P
                        that match a selected node, they are resolved on the basis of their explicit
                        or implicit priority, and if the priorities are equal, the last one in declaration order wins.
Rules declared within Q, taking import precedence, priority, and declaration order into account in the usual way (see 6.6 Conflict Resolution for Template Rules).
Built-in template rules (see 6.8 Built-in Template Rules) selected
                        according to the on-no-match attribute of the
                           xsl:mode declaration (in Q), or its
                        default.
If the mode is overridden again in a package R that uses P, then this search order is extended by adding R at the start of the search list, and so on recursively.
Note:
If existing XSLT code has been written to use template rules in the unnamed
                     mode, a convenient way to incorporate this code into a library package is to add a stub module
                     that defines a new named public or final mode, in
                     which there is a single template rule whose content is the single instruction
                        <xsl:apply-templates select="."/>. This in effect redirects
                        xsl:apply-templates instructions using the named mode to
                     the rules defined in the unnamed mode.
In previous versions of XSLT, modes were implicitly declared by simply using a
                     mode name in the mode attribute of xsl:template
                     or xsl:apply-templates. XSLT 3.0 introduced the ability to
                     declare a mode explicitly using an xsl:mode declaration (see
                        6.7.1 Declaring Modes).
By default, within a package that is defined using an explicit
                        xsl:package element, all modes must be explicitly declared.
                     In an implicit package, however (that is, one rooted at an
                        xsl:stylesheet or xsl:transform element),
                     modes can be implicitly declared as in previous XSLT versions.
The declared-modes
                     attribute of xsl:package determines whether or not modes that
                     are referenced within the package must be explicitly declared. 
                     
                     If the value is yes (the default),
                     then it is an error to use a mode name 
                        unless the package either contains
                     an explicit xsl:mode declaration for that mode, or accepts the mode
                     from a used package. If the value is no, then this is not an error.
                     
                     
                  
                  
This attribute affects all modules making up the package, it is not confined to
                     declarations appearing as children of the xsl:package
                     element.
                     [ERR XTSE3085] It is a static error, 
                           when the effective value of the declared-modes attribute of 
                           an xsl:package element is yes, if the 
                           package contains an explicit reference to an undeclared mode, or if 
                           it implicitly uses the unnamed mode and the unnamed mode is undeclared.
For the purposes of the above rule:
A mode is declared if either of the following conditions is true:
The package contains an xsl:mode 
                                 declaration for that mode.
The mode is a public or final mode accepted from a used package.
The offending reference may be either an explicit mode name, or the token #unnamed 
                           treated as a reference to the unnamed mode, or a defaulted mode attribute, and it may occur in any of the following:
The mode 
                                 attribute of an xsl:template declaration
The mode 
                                 attribute of an xsl:apply-templates instruction
An [xsl:]default-mode attribute.
A package implicitly uses the unnamed mode if either of the following conditions is true:
There is an xsl:apply-templates 
                                 element with no mode attribute, and with no ancestor-or-self having 
                                 an [xsl:]default-mode attribute.
There is an xsl:template 
                                 element with a match attribute and no mode attribute, and with no ancestor-or-self having 
                                 an [xsl:]default-mode attribute.
The xsl:import and
                     xsl:include declarations are local to a package.
Declarations of keys, accumulators, 
                  decimal formats, namespace aliases (see
                     11.1.4 Namespace Aliasing), output definitions, and character
                     maps within a package have local scope within that package —
                  they are all effectively private. The elements that declare these constructs do
                  not have a visibility attribute. The unnamed decimal format and the
                  unnamed output format are also local to a package.
If xsl:strip-space or xsl:preserve-space
                  declarations appear within a library
                     package, they only affect calls to the doc or
                     document functions appearing within that package. Such a declaration within the top-level package additionally affects stripping of whitespace in
                     the document that contains the global context item.
An xsl:decimal-format declaration within a package applies only
                  to calls on format-number appearing within that
                  package.
An xsl:namespace-alias declaration within a package applies only
                  to literal result elements within the same package.
An xsl:import-schema declaration within a package adds the names
                  of the imported schema components to the static context for that package only;
                  these names are effectively private, in the sense that they do not become
                  available for use in any other packages. However, the names of schema components
                  must be consistent across the stylesheet as a whole: it is not possible for two
                  different packages within a stylesheet to use a type-name such as part-number to
                  refer to different schema-defined simple or complex types.
Type names used in the interface of public components in a package (for example, in the arguments of a function) must be respected by callers of those components, in the sense that the caller must supply values of the correct type. Often this will mean that the using component, if it contains calls on such interfaces, must itself import the necessary schema components. However, the requirement for an explicit schema import applies only where the package contains explicit use of the names of schema components required to call such interfaces.
Note:
For example, suppose a library
                        package contains a function which requires an argument of type
                        mfg:part-number. The caller of this function must supply an
                     argument of the correct type, but does not need to import the schema unless it
                     explicitly uses the schema type name mfg:part-number. If it
                     obtains an instance of this type from outside the package, for example as the
                     result of another function call, then it can supply this instance to the
                     acquired function even though it has not imported a schema that defines this
                     type.
At execution time, the schema available for validating instance documents contains (at least) the union of the schema components imported into all constituent packages of the stylesheet.
The xsl:global-context-item element is used to declare whether a
                     global context item is required, and if so, what its
                     required type is.
The element is a declaration that
                  can appear at most once in any stylesheet module; and if more than one
                     xsl:global-context-item declaration appears within a package, then the declarations must be consistent. Specifically, all
                  the attributes must have semantically equivalent values.
Note:
This means that omitting an attribute is equivalent to specifying its default value explicitly; and purely lexical variations, such as the presence of whitespace in an attribute value, are not considered significant.
                  [ERR XTSE3087] It is a static error if more than
                        one xsl:global-context-item declaration appears within a
                           stylesheet module, or if several modules within a
                        single package contain inconsistent
                           xsl:global-context-item declarations
If there is no xsl:global-context-item declaration for a package,
                  this is equivalent to specifying the empty element
                     <xsl:global-context-item/>, which imposes no constraints.
<!-- Category: declaration -->
<xsl:global-context-item
  as? = item-type
  use? = "required" | "optional" | "absent"〔'optional'〕 />
The use attribute takes the value required,
                     optional, or absent. The
                  default is optional.
If the value required is specified, then there must be a
                           global context item. 
If the value optional is specified, or if the attribute is
                           omitted, or if the xsl:global-context-item element is
                           omitted, then there may or may not be a global context item.
If the value absent is specified, then the global focus
                           (context item, position, and size) will be absent
Note:
This specification does not define whether supplying a global context item in this situation results in an error or warning, or whether the supplied context item is simply ignored.
If the as attribute is present then its value must be an ItemTypeXP. If the attribute is
                  omitted this is equivalent to specifying as="item()".
The as attribute defines the required type of the global context
                  item. The default value is as="item()". If a global context item is
                  supplied then it must conform to the required type, after conversion (if
                  necessary) using the coercion rules.
[ERR XTSE3089] It is a static error if the as attribute is
                        present  when use="absent" is specified.
The global context item is available only within the top-level package. If a valid xsl:global-context-item
                  declaration appears within a library package, then it is
                  ignored, unless it specifies use="required", in which case an error
                  is raised: [see ERR XTTE0590].
Note:
In earlier releases of this specification, the global context item and
                  the initial match selection were essentially the same thing, often referred
                  to as the principal source document. In XSLT 3.0, they were separated:
                  the global context item is a single item accessible to the initializers of global variables
                  as the value of the expression . (dot), while the initial match selection
                  is a sequence of nodes or other items supplied to an initial implicit xsl:apply-templates
                  invocation.
APIs that were originally designed for use with earlier versions of XSLT are likely to bundle the two concepts together.
A type error is raised if 
                  the top-level package contains
                  an xsl:global-context-item
                  declaration specifying a required type that does not match the supplied global context item. The error code is the same as for
                     xsl:param: [see ERR XTTE0590].
                  
Note:
If the ItemType is one that can only be satisfied by a
                     schema-validated input document, for example
                        as="schema-element(invoice)", the processor may interpret this as a request to apply schema
                     validation to the input. Similarly, if the KindTest indicates that
                     an element node is required, the processor may interpret this as a request to
                     supply the document element rather than the document node of a supplied input
                     document.
                  [ERR XTDE3086] It is a dynamic error if an
                        xsl:global-context-item declaration specifies
                     use="required", and no global context item is supplied.
The example in this section illustrates the use of overrides to customize or
                  extend a (fictional) library package named
                     http://example.com/csv-parser, which provides a parsing function
                  for data formatted as lines containing comma-separated values. For simplicity of
                  exposition, the example shows a simple, naive implementation; a realistic CSV
                  parser would be more complicated and make the example harder to follow.
The basic functionality of the package is provided by the function
                        csv:parse, which expects a string parameter named
                        input. By default, the function parses the input into lines,
                     and breaks lines on commas, returning as result an element named
                        csv containing one row element per line, each
                        row containing a sequence of field elements.
A simple stylesheet which uses this library and applies it to a string might
                     look like the following. The initial template applies csv:parse to
                     a suitable string and returns a copy of the result:
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:csv="http://example.com/csv" exclude-result-prefixes="xs csv" version="3.0"> <xsl:output indent="yes"/> <xsl:use-package name="http://example.com/csv-parser" package-version="*"/> <!-- example input "file" --> <xsl:variable name="input" as="xs:string"> name,id,postal code "Abel Braaksma",34291,1210 KA "Anders Berglund",473892,9843 ZD </xsl:variable> <!-- entry point --> <xsl:template name="xsl:initial-template"> <xsl:copy-of select="csv:parse($input)"/> </xsl:template> </xsl:stylesheet>
The result returned by this stylesheet would be:
<csv> <row> <field quoted="no">name</field> <field quoted="no">id</field> <field quoted="no">postal code</field> </row> <row> <field quoted="yes">Abel Braaksma</field> <field quoted="no">34291</field> <field quoted="no">1210 KA</field> </row> <row> <field quoted="yes">Anders Berglund</field> <field quoted="no">473892</field> <field quoted="no">9843 ZD</field> </row> </csv>
Variations on this default behavior are achieved by overriding selected declarations in the package, as described below.
The package module itself is version 1.0.0 of a package called
                        http://example.com/csv-parser; it has the following
                     structure:
<?xml version="1.0" encoding="UTF-8"?> <xsl:package name="http://example.com/csv-parser" package-version="1.0.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:csv="http://example.com/csv" exclude-result-prefixes="xs csv" declared-modes="yes" version="3.0"> <!--* Mode declarations ... *--> <!--* Variable declarations ... *--> <!--* Attribute-set declaration ... *--> <!--* Function declarations ... *--> <!--* Templates ... *--> </xsl:package>
The contents of the package (represented here by comments) are described more fully below.
csv:parse Function and its User-customization HooksThe csv:parse function is final and cannot be overridden. As can be
                     seen from the code below, it (1) parses its input parameter into
                     lines, (2) calls function csv:preprocess-line on each line, then
                     (3) applies the templates of mode csv:parse-line to the
                     pre-processed value. The result is then (4) processed again by mode
                        csv:post-process.
<xsl:function name="csv:parse" visibility="final"> <xsl:param name="input" as="xs:string"/> <xsl:variable name="result" as="element()"> <csv> <xsl:apply-templates select="(tokenize($input, $csv:line-separator) ! csv:preprocess-line(.))" mode="csv:parse-line"/> </csv> </xsl:variable> <xsl:apply-templates select="$result" mode="csv:post-process"/> </xsl:function>
The default code for this processing is given below. Each part of the processing except the first (the tokenization into lines) can be overridden by the user of the package.
The first user-customization hook is given by the global variable
                        csv:line-separator, which specifies the line separator used to
                     break the input string into lines. It can be overridden by the user if need be.
                     The default declaration attempts to handle the line-separator sequences used by
                     most common operating systems in text files:
<xsl:variable name="csv:line-separator" as="xs:string" select="'\r\n?|\n\r?'" visibility="public"/>
The function csv:preprocess-line calls
                        normalize-space() on its argument:
<xsl:function name="csv:preprocess-line" as="xs:string?" visibility="public"> <xsl:param name="line" as="xs:string"/> <xsl:sequence select="normalize-space($line)"/> </xsl:function>
Because the function is declared public, it can be overridden by a
                     user. (This might be necessary, for example, if whitespace within quoted
                     strings needs to be preserved.)
csv:parse-lineBy default, the mode csv:parse-line parses the current item (this
                     will be one line of the input data) into fields, using mode
                        csv:parse-field on the individual fields and (by default)
                     wrapping the result in a row element.
The mode is declared with visibility="public" to allow it to be
                     called from elsewhere and overridden:
<xsl:mode name="csv:parse-line" visibility="public"/>
<xsl:template match="." mode="csv:parse-line"> <row> <xsl:apply-templates select="tokenize(., $csv:field-separator)" mode="csv:parse-field"/> </row> </xsl:template>
This relies on the variable csv:field-separator, which is a comma
                     by default but which can be overridden by the user to parse tab-separated data
                     or data with other delimiters.
<xsl:variable name="csv:field-separator" as="xs:string" select="','" visibility="public"/>
The default implementation of csv:parse-line does not handle
                     occurrences of the field separator occurring within quoted strings. The user
                     can add templates to the mode to provide that functionality. 
csv:parse-fieldMode csv:parse-field processes the current item as a field; by
                     default it strips quotation marks from the value, calls the function
                        csv:preprocess-field() on it, and wraps the result in a
                        field element, which carries the attributes declared in the
                     attribute set csv:field-attributes.
<xsl:template match="." mode="csv:parse-field" expand-text="yes"> <xsl:variable name="string-body-pattern" as="xs:string" select="'([^' || $csv:validated-quote || ']*)'"/> <xsl:variable name="quoted-value" as="xs:string" select="$csv:validated-quote || $string-body-pattern || $csv:validated-quote"/> <xsl:variable name="unquoted-value" as="xs:string" select="'(.+)'"/> <field xsl:use-attribute-sets="csv:field-attributes">{ csv:preprocess-field( replace(., $quoted-value || '|' || $unquoted-value, '$1$2')) }</field> </xsl:template>
The attribute set csv:field-attributes includes, by default, a
                        quoted attribute which has the values yes or
                        no to show whether the input value was quoted or not.
<xsl:attribute-set name="csv:field-attributes" visibility="public"> <xsl:attribute name="quoted" select="if (starts-with(., $csv:validated-quote)) then 'yes' else 'no'"/> </xsl:attribute-set>
The mode csv:parse-field is declared with
                        visibility="public" to allow it to be called from elsewhere and
                     overridden; it specifies on-no-match="shallow-copy" so that any
                     string not matching a template will simply be copied:
<xsl:mode name="csv:parse-field" on-no-match="shallow-copy" visibility="public"/>
csv:quote VariableThe variable csv:quote can be used to specify the character used
                     in a particular input stream to quote values.
<xsl:variable name="csv:quote" as="xs:string" select="'"'" visibility="public"/>
The template given above assumes that the variable is one character long. To
                     ensure that any overriding value of the variable is properly checked, references to the value use a
                     second variable csv:validated-quote, which
                     is declared private to ensure that the checking cannot be
                     disabled.
<xsl:variable name="csv:validated-quote" visibility="private" as="xs:string" select=" if (string-length($csv:quote) ne 1) then error( #csv:ERR001, 'Incorrect length for $csv:quote, should be 1') else $csv:quote"/>
When the value of csv:quote is not
                     exactly one character long, the reference to
                        csv:validated-quote will cause an error (csv:ERR001)
                     to be raised.
csv:preprocess-field FunctionThe function csv:preprocess-field is called on each field after
                     any quotation marks are stripped and before it is written out as the value of a
                        field element:
<xsl:function name="csv:preprocess-field" as="xs:string"> <xsl:param name="field" as="xs:string"/> <xsl:sequence select="$field"/> </xsl:function>
As can be seen, the function does nothing but return its input; its only purpose is to provide the opportunity for the user to supply a suitable function to be invoked at this point in the processing of each field.
csv:post-processThe mode csv:post-process is intended solely as a hook for user
                     code. By default, it does nothing.
The package defines no templates for this mode; the mode definition makes it return a copy of its input:
<xsl:mode name="csv:post-process" on-no-match="shallow-copy" visibility="public"/>
As can be seen from the code shown above, the package provides several opportunities for users to override the default behavior:
The global variables csv:line-separator,
                              csv:field-separator, and csv:quote can be
                           overridden to specify the character strings used to separate lines and
                           fields and to quote individual field values.
The function csv:preprocess-line can be overridden to do
                           more (or less) than stripping white space; the function
                              csv:preprocess-field can be overridden to process
                           individual field values.
Templates can be added to the modes csv:parse-line,
                              csv:parse-field, and csv:post-process to
                           change their behavior.
The attribute set csv:field-attributes can be overridden to
                           specify a different set of attributes (or none) for field
                           elements.
The following using stylesheet illustrates the use of the
                        xsl:override element to take advantage of several of these
                     opportunities:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:csv="http://example.com/csv" exclude-result-prefixes="xs csv" version="3.0"> <xsl:output indent="yes"/> <xsl:use-package name="http://example.com/csv-parser" package-version="*"> <xsl:override> <!-- Change the root element from 'csv' to 'root' --> <xsl:template match="csv" mode="csv:post-process"> <root> <xsl:apply-templates mode="csv:post-process"/> </root> </xsl:template> <!-- add an extra attribute that uses the context item --> <xsl:attribute-set name="csv:field-attributes" use-attribute-sets="xsl:original"> <xsl:attribute name="type" select="if (. castable as xs:decimal) then 'numeric' else 'string'"/> </xsl:attribute-set> <!-- use semicolon not comma between fields --> <xsl:variable name="csv:field-separator" as="xs:string" select="';'" visibility="public"/> <!-- prevent empty rows from appearing with empty lines --> <xsl:function name="csv:preprocess-line" as="xs:string?" visibility="public"> <xsl:param name="line" as="xs:string"/> <xsl:variable name="norm-line" select="normalize-space(xsl:original($line))"/> <xsl:sequence select="if (string-length($norm-line) > 0) then $norm-line else ()"/> </xsl:function> </xsl:override> </xsl:use-package> <!-- example input "file" --> <xsl:variable name="input" as="xs:string"> name;id;postal code "Braaksma Abel";34291;1210 KA "Berglund Anders";473892;9843 ZD </xsl:variable> <!-- entry point --> <xsl:template name="xsl:initial-template"> <xsl:copy-of select="csv:parse($input)"/> </xsl:template> </xsl:stylesheet>
Note:
As it does elsewhere, the visibility of components declared within
                                 xsl:override defaults to private; to keep
                              the component public, it is necessary to specify visibility
                              explicitly.
The types and optionality of all function parameters must match those of the function being overridden; for function overriding to be feasible, packages must document the function signature thoroughly.
The names, types, and optionality of all named-template parameters must match those of the template being overridden; for overriding to be feasible, packages must document the template signature thoroughly.
The values for the attributes in the attribute set
                                 csv:field-attributes are calculated once for each
                              element for which the attribute set is supplied; the
                                 select attributes which determine the values can thus
                              refer to the context item. Here, the value specification for the
                                 type attribute checks to see whether the string value
                              of the context item is numeric by inquiring whether it can be cast to
                              decimal, and sets the value for the type attribute
                              accordingly.
The result returned by this stylesheet would be:
<root> <row> <field quoted="no" type="string">name</field> <field quoted="no" type="string">id</field> <field quoted="no" type="string">postal code</field> </row> <row> <field quoted="yes" type="string">Braaksma Abel</field> <field quoted="no" type="numeric">34291</field> <field quoted="no" type="string">1210 KA</field> </row> <row> <field quoted="yes" type="string">Berglund Anders</field> <field quoted="no" type="numeric">473892</field> <field quoted="no" type="string">9843 ZD</field> </row> </root>
[Definition: A package consists of one or more stylesheet modules, each one forming all or part of an XML document.]
Note:
A stylesheet module is represented by an XDM element node (see [XDM 4.0]). In the case of a standard stylesheet module, this
                  will be an xsl:stylesheet or xsl:transform
                  element. In the case of a simplified stylesheet module, it can be any element (not
                  in the XSLT namespace) that has an
                     xsl:version attribute.
Although stylesheet modules will commonly be maintained in the form of documents conforming to XML 1.0 or XML 1.1, this specification does not mandate such a representation. As with source trees, the way in which stylesheet modules are constructed, from textual XML or otherwise, is outside the scope of this specification.
The principal stylesheet module of a package may take one of three forms:
A package manifest, as described in 3.5 Packages, which is a
                     subtree rooted at an xsl:package element
An implicit package, which is a subtree rooted at an
                        xsl:stylesheet or xsl:transform element.
                     This is transformed automatically to a package as described in 3.5 Packages. 
A simplified stylesheet, which is a subtree rooted at a literal result element,
                     as described in 3.8 Simplified Stylesheet Modules. This is first converted
                     to an implicit package by wrapping it in an xsl:stylesheet
                     element using the transformation described in 3.8 Simplified Stylesheet Modules, and then to an explicit package (rooted at an
                        xsl:package element) using the transformation described in
                        3.5 Packages. 
A stylesheet module other than the principal stylesheet module of a package may take either of two forms:
[Definition: A
                           standard stylesheet module, which is a subtree rooted at an
                           xsl:stylesheet or xsl:transform
                        element.]
[Definition: A simplified stylesheet, which is a subtree rooted at a literal result element, as described in 3.8 Simplified Stylesheet Modules. This is first converted to a standard stylesheet module by wrapping it in an xsl:stylesheet element using the transformation described in 3.8 Simplified Stylesheet Modules.]
Whichever of the above forms a module takes, the outermost
               element (xsl:package, xsl:stylesheet, or a literal result element) may either be the outermost
               element of an XML document, or it may be a child of some
               (non-XSLT) element in a host document. 
[Definition: A stylesheet module whose outermost element is the child of a non-XSLT element in a host document is referred to as an embedded stylesheet module. See 3.12 Embedded Stylesheet Modules.]
                  A new attribute, main-module, is added to the xsl:stylesheet
                  element. The attribute is provided for the benefit of development tools such as syntax-directed
                  editors to provide information about all the components (variables, functions, etc) visible
                  within a stylesheet module.
                 [Issue 87 PR 353 19 April 2023]
<xsl:stylesheet
  id? = id
  version = decimal
  default-mode? = eqname | "#unnamed"〔'#unnamed'〕
  default-validation? = "preserve" | "strip"〔'strip'〕
  input-type-annotations? = "preserve" | "strip" | "unspecified"〔'unspecified'〕
  default-collation? = uris
  extension-element-prefixes? = prefixes
  exclude-result-prefixes? = prefixes
  expand-text? = boolean
  fixed-namespaces? = string
  main-module? = uri
  schema-role? = ncname
  use-when? = expression〔true()〕
  xpath-default-namespace? = uri >
  <!-- Content: (declarations) -->
</xsl:stylesheet>
<xsl:transform
  id? = id
  version = decimal
  default-mode? = eqname | "#unnamed"〔'#unnamed'〕
  default-validation? = "preserve" | "strip"〔'strip'〕
  input-type-annotations? = "preserve" | "strip" | "unspecified"〔'unspecified'〕
  default-collation? = uris
  extension-element-prefixes? = prefixes
  exclude-result-prefixes? = prefixes
  expand-text? = boolean〔'no'〕
  fixed-namespaces? = string
  main-module? = uri
  schema-role? = ncname
  use-when? = expression〔true()〕
  xpath-default-namespace? = uri >
  <!-- Content: (declarations) -->
</xsl:transform>
A stylesheet module is represented by an xsl:stylesheet element in
               an XML document. xsl:transform is allowed as a synonym for
                  xsl:stylesheet; everything this specification says about the
                  xsl:stylesheet element applies equally to
                  xsl:transform.
The version attribute indicates the version
               of XSLT that the stylesheet module requires. The attribute is
                  required.
               [ERR XTSE0110] The value of the version attribute must be a number:
                     specifically, it must be a valid instance of the type
                        xs:decimal as defined in [XML Schema Part 2].
            
The version attribute is intended to indicate the
               version of the XSLT specification against which the stylesheet is written. In a
               stylesheet written to use XSLT 4.0, the value should normally be
               set to 4.0. If the value is numerically less than 4.0, the
               stylesheet is processed using the rules for backwards compatible behavior
               (see 3.9 Backwards Compatible Processing). If the value is numerically greater than
               4.0, the stylesheet is processed using the rules for 
               forwards compatible behavior (see 3.10 Forwards Compatible Processing).
The effect of the input-type-annotations attribute is described in
                  4.3.1 Stripping Type Annotations from a Source Tree.
The [xsl:]default-validation attribute defines the default value of the
                  validation attribute of all relevant instructions appearing within
               its scope. For details of the effect of this attribute, see 25.4 Validation.
The optional main-module attribute is purely documentary.
            By including this attribute in every stylesheet module of a package,
            an XSLT editing tool may be enabled to locate the top-level module of the relevant package,
            and thus to gather information about all the global variables, templates, and functions available
            within the module being edited.
            This information can be used (for example) to enable auto-completion and error highlighting of the code as it is
            entered. Note that it may be inconvenient or misleading to use this attribute when the stylesheet
            module is used as a shared component within multiple stylesheets.
          
               [ERR XTSE0120] An xsl:stylesheet, xsl:transform,
                  or xsl:package element must not have any
                     text node children. (This rule applies after stripping of whitespace text nodes as described in 3.13.1 Stripping Whitespace and Commentary from the Stylesheet.)
               [Definition: An element occurring as a child of an
                     xsl:package,
                     xsl:stylesheet,
                        xsl:transform, or xsl:override
                  element is called a top-level element.]
            
[Definition: Top-level elements fall into two categories: declarations, and user-defined data elements. Top-level elements whose names are in the XSLT namespace are declarations. Top-level elements in any other namespace are user-defined data elements (see 3.7.4 User-defined Data Elements)].
The declaration elements permitted in the
                  xsl:stylesheet element are:
xsl:accumulator
xsl:attribute-set
xsl:character-map
xsl:decimal-format
xsl:function
xsl:global-context-item
xsl:import
xsl:import-schema
xsl:include
xsl:item-type
xsl:key
xsl:mode
xsl:namespace-alias
xsl:output
xsl:param
xsl:preserve-space
xsl:record-type
xsl:strip-space
xsl:template
xsl:use-package
xsl:variable
Note that the xsl:variable and xsl:param elements
               can act either as declarations or as instructions. A global variable or parameter is
               defined using a declaration; a local variable or parameter using an instruction.
The child elements of the xsl:stylesheet
               element may appear in any order. In most cases, the ordering of these elements does
               not affect the results of the transformation; however:
As described in 6.6 Conflict Resolution for Template Rules, when two template rules with the same priority match the same nodes, there are situations where the order of the template rules will affect which is chosen.
Forwards references to static variables are not allowed in static expressions.
fixed-namespaces Attribute
                     The xsl:stylesheet, xsl:transform, or xsl:package
                     element may have a fixed-namespaces attribute making it easier to have the same
                     namespace declarations in force throughout a stylesheet.
                    [Issue 369 PR 470 29 November 2023]
The fixed-namespaces attribute, if present, defines the 
                  fixed namespace bindings
               for a stylesheet module. The attribute may appear only on the
               outermost element of a stylesheet module (xsl:stylesheet,
               xsl:transform, or xsl:package). It is
               not available with simplified stylesheet modules.
If the fixed-namespaces attribute is present, then it defines the entire
               set of namespace bindings present in the static context of XPath expressions and 
               patterns within the stylesheet,
               as well as other constructs where namespace prefixes are used in attribute and text nodes,
               such as the name attribute of declarations like xsl:function
               and xsl:variable, and as and type attributes
               referring to item types and schema types.
The value of the attribute is a whitespace-separated list of tokens, where each token contributes one or more namespace bindings to the fixed namespace bindings of the stylesheet module. Each token must be one of the following. If a token falls into more than one of these categories, then the first one that applies takes precedence.
The string #standard, which is equivalent to specifying
                  xsl xml xs xsi fn math map array err. This has the effect of binding
                     each of these namespace prefixes to the reserved namespace with which 
                     it is conventionally associated.
An NCName corresponding to one of the namespace prefixes present
                    in the in-scope namespaces of the containing element node. This has the effect of adding
                    the corresponding namespace binding to the fixed namespace bindings.
Any one of the strings xsl, xml,
                     xs, xsi, fn, math,
                     map, array, err. This has the effect of binding
                     that particular namespace prefix to the reserved namespace with which 
                     it is conventionally associated, whether or not the native namespace bindings
                     contain a binding for this prefix.
Note:
Including xml in the list has no effect, since the XML namespace
                     will always be in scope anyway.
If the namespace prefix is explicitly bound to a different namespace, for example
                     xmlns:math="java:java.util.Math", then that binding takes precedence.
A string in the form prefix=uri, where prefix is an NCName
                     and uri is a (non-empty) namespace URI: for example,
                     xalan=http://xml.apache.org/xalan. This has the effect of binding the specified
                     prefix to the specified URI.
A URI Reference identifying the location of an
                     XML document whose namespace bindings are to be used. For example, ./package.xsl.
                     A token is interpreted as a URI if it does not match any of the other possibilities listed above
                     (which will be the case if it contains a "/" as in this example).
The URI Reference is used to locate an XML document, in the same way
                     as described for xsl:include and xsl:import in
                     3.11.1 Locating Stylesheet Modules. The resource that is retrieved may be any namespace well-formed 
                     XML document. The in-scope namespace bindings of the outermost element of this document are
                     added to the fixed namespace bindings of the stylesheet module.
Note:
Such URIs cannot contain whitespace.
If different tokens in the fixed-namespaces attribute result in multiple bindings
               for the same namespace prefix, the last one wins.
                  [ERR XTSE0122] It is a static error if a token
                        appearing in the fixed-namespaces attribute takes a form
                        that is not one of the permitted forms, or if it is interpreted as a URI
                     but cannot be dereferenced to locate a namespace well-formed XML document.
                     It is not permitted to bind the prefix xmlns. It is not permitted to bind the
                        prefix xml or the XML namespace URI http://www.w3.org/XML/1998/namespace, other than
                     to each other.
               
The following observations apply when a fixed-namespaces attribute is present:
All expressions in the stylesheet module will have the same statically known namespacesXP in their static context. This means that all prefixes used in XPath expressions, patterns, and similar constructs must be declared at the top level.
Namespace prefixes used in element and attribute names in the stylesheet
                  cannot be declared using this mechanism. Such prefixes must be bound using
                  native namespace bindings. This also applies to namespace
                  prefixes used in the [xsl:]exclude-result-prefixes 
                     and [xsl:]extension-element-prefixes attributes, and the
                  stylesheet-prefix and result-prefix attributes
                  of xsl:namespace-alias.
It is not an error for an element within a stylesheet module
                     to rebind a prefix listed in the fixed-namespaces attribute 
                     to a different URI; however this rebinding has no effect on the static
                  context of XPath expressions and other similar constructs within its scope.
The fixed-namespaces attribute has no effect on the interpretation
                  of unprefixed names.
Note:
It is possible to use
                     the fixed namespace bindings in other attributes of the xsl:stylesheet
                  element, such as default-mode. It is also possible to use them in
                  shadow attributes (see 3.13.4 Shadow Attributes).
It is possible for the fixed-namespaces attribute itself to be supplied as
                  a shadow attribute (written with an underscore, _fixed-namespaces). 
                  It can then refer to static variables
                  declared in an importing or including stylesheet module. This provides an
                  alternative way of sharing common namespace bindings throughout a package.
Note:
The ability to fetch namespace bindings using a URI can be exploited in various ways:
Generally, the benefit is that it avoids repeating the same information in every stylesheet module, thereby reducing the amount of boilerplate code and keeping common information in a common place. This satisfies the DRY principle in software engineering: Don't Repeat Yourself.
The document identified by the URI may be a stylesheet module. One way to use the feature is to use the package manifest as the primary source for namespace bindings.
It is also possible to adopt the namespace bindings from a sample source document. For example, if it is known that the stylesheet is designed primarily to process documents whose first start tag takes the form:
<w:document xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
then these three namespace bindings may conveniently be copied to the stylesheet by referencing a sample document of this form.
Note however, that only the namespace bindings from the outermost element of the document will be copied.
It is possible to supply multiple URIs to assemble namespace bindings from more than one source.
Namespace bindings taken from an external document may be overridden
                        using a local declaration for the prefix. This must appear after the URI
                     in the content of the fixed-namespaces attribute.
Note:
Using the fixed-namespaces attribute rather 
                     than native namespace bindings
                  to bind namespaces has a number of potential benefits:
It reduces repetitive coding across stylesheet module boundaries, and thus eliminates a source of potential errors.
It ensures that all expressions in a stylesheet module have the same namespace bindings in their static context. This can reduce implementation overheads because it reduces the need to maintain the namespace context at the level of individual expressions through rewrites such as function inlining. With processors that compile stylesheets to a persistent executable form, it can contribute to a reduction in the size of compiled code.
Namespaces bound in this way will never accidentally leak into a result tree;
                     there is no need to exclude them using [xsl:]exclude-result-prefixes.
Namespaces declared on literal result elements are used purely to define the namespace of elements and attributes within the result tree; they no longer leak into the static context used when evaluating XPath expressions.
default-collation AttributeThe default-collation attribute is a standard attribute that may appear on
                  any element in the XSLT namespace, or (as xsl:default-collation) on a
                     literal result element.
The attribute, when it appears on an element
                        E, is used to specify the default collation used by all XPath
                     expressions appearing in attributes or text value templates that have E as an
                     ancestor, unless overridden by another default-collation
                  attribute on an inner element. It also determines the collation used by certain
                  XSLT constructs (such as xsl:key and
                     xsl:for-each-group) within its scope.
The value of the attribute is a whitespace-separated list of collation URIs. If any of these URIs is a relative URI reference, then it is resolved as described in [Functions and Operators 4.0] section 5.3.1 Collations.. If the implementation recognizes one or more of the resulting absolute collation URIs, then it uses the first one that it recognizes as the default collation.
                  [ERR XTSE0125] It is a static error if the value
                        of an [xsl:]default-collation attribute, after resolving
                        against the base URI, contains no URI that the implementation recognizes as
                        a collation URI.
               
Note:
The reason the attribute allows a list of collation URIs is that collation URIs
                     will often be meaningful only to one particular XSLT implementation.
                     Stylesheets designed to run with several different implementations can
                     therefore specify several different collation URIs, one for use with each. To
                     avoid the above error condition, it is possible to include as the last
                     collation URI in the list either the Unicode Codepoint Collation or a collation in the UCA family (see [Functions and Operators 4.0] section 5.3.4 The Unicode Collation Algorithm) with the parameter
                        fallback=yes.
The [xsl:]default-collation attribute does not affect the collation
                  used by xsl:sort or by xsl:merge.
In the absence of an
                     [xsl:]default-collation attribute, the default collation
                     may be set by the calling application in an implementation-defined way. The recommended default, unless the user
                  chooses otherwise, is to use the Unicode codepoint collation.
default-mode Attribute[Definition: The 
                  [xsl:]default-mode attribute defines the default mode,
                  which is used as the default value for the
                     mode attribute of all
                     xsl:template and xsl:apply-templates elements
                     within its scope.]
More specifically, when an element E matches
                  the pattern (xsl:template[@match] | xsl:apply-templates)[not(@mode) or
                     normalize-space(@mode) eq "#default"] (using the Unicode codepoint
                  collation), then the effective value of the mode attribute is taken
                  from the value of the [xsl:]default-mode attribute of the innermost
                  ancestor-or-self element of E that has such an attribute. If there is
                  no such element, then the default is the unnamed
                     mode. This is equivalent to specifying #unnamed.
In addition, when the attribute appears on the xsl:package,
                  xsl:stylesheet, or xsl:transform element of the 
                  principal stylesheet module of the top-level package,
                     it provides a default value for the initial mode used on stylesheet
                     invocation.
The value of the [xsl:]default-mode attribute must
                  either be an EQName, or the token #unnamed which refers to
                  the unnamed mode.
Note:
This attribute is provided to support an approach to stylesheet modularity in which all the template rules for one mode are collected together into a single stylesheet module. Using this attribute reduces the risk of forgetting to specify the mode in one or more places where it is needed, and it also makes it easier to reuse an existing stylesheet module that does not use modes in an application where modes are needed to avoid conflicts with existing template rules.
It is not necessary for the referenced mode to be
                     explicitly declared in an xsl:mode declaration, unless this is
                     mandated by the declared-modes attribute (which defaults to
                        yes on an xsl:package element).
                  [Definition: In addition to
                        declarations, the
                        xsl:stylesheet element may contain among its children any
                     element not from the XSLT namespace,
                     provided that the expanded QName of
                     the element has a non-null namespace URI. Such elements are referred to as
                        user-defined data elements.]
               
                  [ERR XTSE0130] It is a static error if an
                        xsl:stylesheet, xsl:transform,
                           or xsl:package element has a child element whose name
                        has a null namespace URI.
               
An implementation may attach an implementation-defined meaning to user-defined data elements that
                  appear in particular namespaces. The set of namespaces that are recognized for
                  such data elements is implementation-defined. The presence of a user-defined data element
                     must not change the behavior of XSLT elements and functions defined in this
                  document; for example, it is not permitted for a user-defined data element to
                  specify that xsl:apply-templates should use different rules to
                  resolve conflicts. The constraints on what user-defined data elements can and
                  cannot do are exactly the same as the constraints on extension attributes, described in
                     3.2 Extension Attributes. Thus, an implementation is always free
                  to ignore user-defined data elements, and must ignore such data
                  elements without giving an error if it does not recognize the namespace URI. 
User-defined data elements can provide, for example,
information used by extension instructions or extension functions (see 24 Extensibility and Fallback),
information about what to do with any final result tree,
information about how to construct source trees,
optimization hints for the processor,
metadata about the stylesheet,
structured documentation for the stylesheet.
A simplified syntax is allowed for a stylesheet
               module that defines only a single template rule for the document node.
               The stylesheet module may consist of just a literal result element (see 11.1 Literal Result Elements)
               together with its contents.  Such a stylesheet module is equivalent to a standard stylesheet module
               whose xsl:stylesheet element contains a 
               template rule containing the literal result
               element; the template rule has a match pattern of /.
The following example shows a stylesheet that simply evaluates one XPath expression:
<out>{count(//*)}</out>
The output of the stylesheet will be an XML document such as <out>17</out>
                  showing the number of elements found in the supplied source document.
This simplified stylesheet is defined to be equivalent to the following expanded stylesheet:
<xsl:stylesheet xmlns="http://www.w3.org/1999/XSL/Transform" version="4.0" expand-text="yes"> <xsl:template match="/"> <out>{count(//*)}</out> </xsl:template> </xsl:stylesheet>
A simplified stylesheet can contain XSLT instructions, in which case the XSLT namespace needs to be declared. This is illustrated in the next example.
This stylesheet outputs an HTML document containing a table that summarizes the value of transactions according to their rate of tax:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xsl:version="4.0"> <head> <title>Expenditure by Tax Rate</title> </head> <body> <table> <thead> <tr> <th>Gross Amount</th> <th>Tax Rate</th> </tr> </thead> <tbody> <xsl:for-each-group select="//transaction" group-by="vat-rate"> <tr> <td>{sum(current-group()/value)}</td> <td>{current-grouping-key()}</td> </tr> </xsl:for-each-group> </tbody> </table> </body> </html>
Note that it is not possible, in a simplified stylesheet, to define
                  serialization properties (for example to request a DOCTYPE
                  declaration). A processor may offer a way to do
                  this using options in the transformation API.
More formally, a simplified stylesheet module is equivalent to the standard
               stylesheet module that would be generated by applying the following transformation to
               the simplified stylesheet module, invoking the transformation by calling the named template
               expand, with the containing literal result element as the context node: 
<xsl:stylesheet version="4.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template name="expand"> <xsl:element name="xsl:stylesheet"> <xsl:attribute name="version" select="@xsl:version otherwise '4.0'"/> <xsl:attribute name="expand-text" select="not(number(@xsl:version) le 3.0)"/> <xsl:element name="xsl:template"> <xsl:attribute name="match" select="'/'"/> <xsl:copy-of select="."/> </xsl:element> </xsl:element> </xsl:template> </xsl:stylesheet>
The allowed content of a literal result element when used as a simplified stylesheet
               is the same as when it occurs within a sequence constructor. Thus, a literal result element used as the
               document element of a simplified stylesheet cannot contain declarations. Simplified stylesheets therefore
               cannot use template rules, global variables, stylesheet parameters, stylesheet functions, keys, attribute-sets, or
               output definitions. In turn this
               means that the only useful way to initiate the transformation is to supply a document
               node as the initial match selection, to be matched by the implicit
               match="/" template rule using the unnamed mode. 
Note:
There are two significant changes to simplified stylesheets in XSLT 4.0.
It is no longer required to include an xsl:version attribute; this
                     in turn means it is often no longer necessary to declare the xsl namespace.
                     The xsl:version attribute defaults to the version of the XSLT processor,
                     that is, "4.0" for an XSLT 4.0 processor.
If the xsl:version attribute is omitted, or is set to "4.0" or a larger
                     value, then the expand-text attribute defaults to true, meaning that 
                     text value templates are recognized.
[Definition: The effective
                     version of an element in a stylesheet module or package manifest is the decimal value of the [xsl:]version attribute
                  (see 3.4 Standard Attributes) on that element or on the innermost
                  ancestor element that has such an attribute, subject
                  to special rules for the xsl:output and xsl:fallback
                     elements.]
These rules do not apply to the xsl:output element, whose
               version attribute has an entirely different purpose: it is used to
               define the version of the output method to be used for serialization.
               The effective version of an xsl:output element
            is the effective version of its parent element.
There are additional rules for an xsl:fallback element: see
            3.10 Forwards Compatible Processing.
[Definition: An element is processed with backwards compatible behavior if its effective version is less than 4.0.]
Specifically:
If the effective version is equal to 1.0, then the element is processed with XSLT 1.0 behavior as described in 3.9.1 XSLT 1.0 Compatibility Mode.
If the effective version is equal to 2.0, then the element is processed with XSLT 2.0 behavior as described in 3.9.2 XSLT 2.0 Compatibility Mode.
If the effective version is equal to 3.0, then the element is processed with XSLT 3.0 behavior as described in 3.9.3 XSLT 3.0 Compatibility Mode.
If the effective version is any other value less than 4.0, the recommended action is to raise a static error; however, processors may recognize such values and process the element in an implementation-defined way.
Note:
XSLT 1.0 allowed the version attribute to take any decimal
                        value, and invoked forwards compatible processing for any value other than
                        1.0. XSLT 2.0 allowed the attribute to take any decimal value, and invoked
                        backwards compatible (i.e. 1.0-compatible) processing for any value less
                        than 2.0. Some stylesheets may therefore be encountered that use values
                        other than 1.0 or 2.0. In particular, the value 1.1 is sometimes
                        encountered, as it was used at one stage in a draft language proposal.
It is implementation-defined whether a particular XSLT 4.0 implementation supports backwards compatible behavior for any XSLT version earlier than XSLT 4.0.
[ERR XTDE0160] It is a dynamic error if an element has an effective version of V (with V < 4.0) when the implementation does not support backwards compatible behavior for XSLT version V.
Note:
By making use of backwards compatible behavior, it is possible to write the stylesheet in a way that ensures that its results when processed with an XSLT 4.0 processor are identical to the effects of processing the same stylesheet using a processor for an earlier version of XSLT. To assist with transition, some parts of a stylesheet may be processed with backwards compatible behavior enabled, and other parts with this behavior disabled.
All data values manipulated by an XSLT 4.0 processor are defined by the XDM data model, whether or not the relevant expressions use backwards compatible behavior. Because the same data model is used in both cases, expressions are fully composable. The result of evaluating instructions or expressions with backwards compatible behavior is fully defined in the XSLT 4.0 and XPath 4.0 specifications, it is not defined by reference to earlier versions of the XSLT and XPath specifications.
To write a stylesheet that makes use of features that
                     are new in version N, while also working with a processor that only
                     supports XSLT version M (M < N),
                  it is necessary to understand both the rules for backwards compatible behavior in
                     XSLT version N, and the rules for
                  forwards compatible behavior in XSLT version
                        M. If the xsl:stylesheet element
                  specifies a version attribute with a value greater than 1.0, then an XSLT 1.0
                  processor will ignore 
                  declarations that were not defined in XSLT
                  1.0, for example xsl:function,
                     xsl:import-schema, 
                        and xsl:mode. If any new XSLT
                  4.0 instructions are used (for example xsl:switch
                     or xsl:array), or if new XPath
                  4.0 features are used (for example, keyword arguments in function calls), 
                     then the stylesheet must provide
                  fallback behavior that relies only on facilities available in the earliest XSLT version supported. The fallback
                  behavior can be invoked by using the xsl:fallback instruction, or
                  by testing the results of the function-available or
                     element-available functions, or by testing the value of
                  the xsl:version property returned by the
                     system-property function.
[Definition: An element in the stylesheet is processed with XSLT 1.0 behavior if its effective version is equal to 1.0.]
In this mode, if any attribute contains an XPath expression, then the expression is evaluated with XPath 1.0 compatibility mode set to
                     true. For details of this mode, see [XPath 4.0] section 2.2.1 Static Context. Expressions contained in
                        text value templates are
                     always evaluated with XPath 1.0
                        compatibility mode set to false, since this construct
                     was not available in XSLT 1.0.
Furthermore, in such an expression any function call for which no implementation is available (unless it uses the standard function namespace) is bound to a fallback error function whose effect when evaluated is to raise a dynamic error [see ERR XTDE1425] . The effect is that with backwards compatible behavior enabled, calls on extension functions that are not available in a particular implementation do not cause an error unless the function call is actually evaluated. For further details, see 24.1 Extension Functions.
Note:
This might appear to contradict the specification of XPath 3.0, which states that a static error [XPST0017] is raised when an expression contains a call to a function that is not present (with matching name and arity) in the static context. This apparent contradiction is resolved by specifying that the XSLT processor constructs a static context for the expression in which every possible function name and arity (other than names in the standard function namespace) is present; when no other implementation of the function is available, the function call is bound to a fallback error function whose run-time effect is to raise a dynamic error.
Certain XSLT constructs also produce different results when XSLT 1.0 compatibility mode is enabled. This is described separately for each such construct.
[Definition: An element is processed with XSLT 2.0 behavior if its effective version is equal to 2.0.]
In this specification, no differences are defined for XSLT 2.0 behavior. An XSLT 4.0 processor will therefore produce the same results whether the effective version of an element is set to 2.0 or 4.0.
Note:
An XSLT 2.0 processor, by contrast, will in some cases produce different
                     results in the two cases. For example, if the stylesheet contains an
                        xsl:switch instruction with an
                     xsl:fallback child, an XSLT 4.0 processor will process the
                        xsl:switch instruction regardless whether the effective
                     version is 2.0, 3.0, or 4.0, while an 
                     XSLT 2.0 processor will raise a static error
                     if the effective version is 2.0, and will take the fallback action if the
                     effective version is 3.0 or 4.0.
[Definition: An element is processed with XSLT 3.0 behavior if its effective version is equal to 3.0.]
In this specification, no differences are defined for XSLT 3.0 behavior. An XSLT 4.0 processor will therefore produce the same results whether the effective version of an element is set to 3.0 or 4.0.
Note:
An XSLT 3.0 processor, by contrast, will in some cases produce different
                     results in the two cases. For example, if the stylesheet contains an
                     xsl:switch instruction with an
                     xsl:fallback child, an XSLT 4.0 processor will process the
                     xsl:switch instruction regardless whether the effective
                     version is 2.0, 3.0, or 4.0, while an 
                     XSLT 3.0 processor will raise a static error
                     if the effective version is 2.0 or 3.0, and will take the fallback action if the
                     effective version is 4.0.
The intent of forwards compatible behavior is to make it possible to write a stylesheet that takes advantage of features introduced in some version of XSLT subsequent to XSLT 4.0, while retaining the ability to execute the stylesheet with an XSLT 4.0 processor using appropriate fallback behavior.
It is always possible to write conditional code to run under different XSLT versions
               by using the use-when feature described in 3.13.3 Conditional Element Inclusion. 
               The rules for forwards compatible behavior
               supplement this mechanism in two ways:
Certain constructs in the stylesheet that mean nothing to an XSLT 4.0 processor are ignored, rather than being treated as errors.
Explicit fallback behavior can be defined for instructions defined in a future
                     XSLT release, using the xsl:fallback instruction.
The detailed rules follow.
[Definition: An element is processed with forwards compatible behavior if its effective version is greater than 4.0.]
These rules do not apply to the version attribute of the
                  xsl:output element, which has an entirely different purpose: it
               is used to define the version of the output method to be used for serialization.
When an element is processed with forwards compatible behavior:
If the element is in the XSLT namespace and appears as a child of the
                        xsl:stylesheet element, and XSLT 4.0 does not allow the element 
                        to appear as a child of the
                        xsl:stylesheet element, then the element and its content
                        must be ignored.
If the element has an attribute that XSLT 4.0 does not allow the element to have, then the attribute must be ignored.
If the element is in the XSLT namespace and appears as a child of an element whose content model requires a sequence constructor, and XSLT 4.0 does not allow such elements to appear as part of a sequence constructor, then:
If the element has one or more xsl:fallback children,
                           then no error is raised either statically or dynamically, and the
                           result of evaluating the instruction is the concatenation of the
                           sequences formed by evaluating the sequence constructors within its
                              xsl:fallback children, in document order. Siblings of
                           the xsl:fallback elements are ignored, even if they are
                           valid XSLT 4.0 instructions.
If the element has no xsl:fallback children, then a
                           static error is raised in the same way as if forwards compatible
                           behavior were not enabled.
For example, an XSLT 4.0 processor will process the following stylesheet without error, although the stylesheet includes elements from the XSLT namespace that are not defined in this specification:
<xsl:stylesheet version="17.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <xsl:exciting-new-17.0-feature> <xsl:fly-to-the-moon/> <xsl:fallback> <html> <head> <title>XSLT 17.0 required</title> </head> <body> <p>Sorry, this stylesheet requires XSLT 17.0.</p> </body> </html> </xsl:fallback> </xsl:exciting-new-17.0-feature> </xsl:template> </xsl:stylesheet>
Note:
If a stylesheet depends crucially on a declaration 
                  introduced by a version of XSLT after 4.0, then the stylesheet can use an
                     xsl:message element with terminate="yes" (see
                     23.1 Messages) to ensure that implementations that conform to an
                  earlier version of XSLT will not silently ignore the declaration.
For example,
<xsl:stylesheet version="18.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:important-new-17.0-declaration/> <xsl:template match="/"> <xsl:choose> <xsl:when test="number(system-property('xsl:version')) lt 17.0"> <xsl:message terminate="yes"> <xsl:text>Sorry, this stylesheet requires XSLT 17.0.</xsl:text> </xsl:message> </xsl:when> <xsl:otherwise> ... </xsl:otherwise> </xsl:choose> </xsl:template> ... </xsl:stylesheet>
Note:
The XSLT 1.0 and XSLT 2.0 specifications did not anticipate the
                  introduction of the xsl:package element. An XSLT 1.0 or 2.0
                  processor encountering this element will raise a static error, regardless of the
                     version setting.
This problem can be circumvented by using the simplified package
                  syntax (whereby an
                        xsl:stylesheet element is implicitly treated as
                        xsl:package), or by writing the stylesheet code in
                  a separate module from the package manifest, and using the separate module as the
                  version of the stylesheet that is presented to a 2.0 processor.
For an XSLT 4.0 processor, the effective version of an 
               xsl:fallback element that has no explicit version attribute 
               is 4.0: more generally, it is the version of XSLT supported by the processor.
               This rule is designed to ensure that the xsl:fallback element
               itself is not processed with forwards compatible behavior,
            which would be pointless since the whole purpose of the instruction is to provide
            code that can be evaluated with an earlier version of XSLT.
Note:
This rule was not present in earlier versions of this specification.
               On a strict reading of the XSLT 3.0 specification, for example, an xsl:fallback
               instruction with no version attribute is evaluated with forwards compatible
               behavior. This means, for example, that if the stylesheet author writes
               <xsl:fallback select="42"/> (which is incorrect, because
               the instruction does not define a select attribute) then the select
               attribute will simply be ignored.
Stylesheet authors can prevent this problem by adding an explicit
               version attribute to xsl:fallback indicating the version
               of XSLT that is needed to evaluate the fallback code.
This specification cannot retrospectively dictate what XSLT 3.0 (or earlier)
               processors should do; however, developers of such processors are encouraged to adopt
               this rule, so that in an XSLT 4.0 stylesheet, an xsl:fallback instruction 
               that cannot be properly evaluated by an XSLT 3.0 processor is rejected rather than 
               being silently ignored.
XSLT provides two mechanisms to construct a package from multiple stylesheet modules:
an inclusion mechanism that allows stylesheet modules to be combined without changing the semantics of the modules being combined, and
an import mechanism that allows stylesheet modules to override each other.
The include and import mechanisms use two declarations,
                     xsl:include and xsl:import, which are defined
                  in the sections that follow.
These declarations use an href attribute, whose value is a URI reference, to identify the stylesheet module to be included or
                  imported. If the value of this attribute is a relative URI reference, it is resolved as described in 5.8 URI References.
After resolving against the base URI, the way in which the URI reference is used to locate a representation of a stylesheet module, and the way in which the stylesheet module is constructed from that representation, are implementation-defined. In particular, it is implementation-defined which URI schemes are supported, whether fragment identifiers are supported, and what media types are supported. Conventionally, the URI is a reference to a resource containing the stylesheet module as a source XML document, or it may include a fragment identifier that selects an embedded stylesheet module within a source XML document; but the implementation is free to use other mechanisms to locate the stylesheet module identified by the URI reference.
The referenced stylesheet module must be either a standard stylesheet module or a simplified stylesheet. It must not be a package manifest. If it is a simplified stylesheet module then it is transformed into the equivalent standard stylesheet module by applying the transformation described in 3.8 Simplified Stylesheet Modules.
Implementations may choose to accept URI references containing a fragment identifier defined by reference to the XPointer specification (see [XPointer Framework]). Note that if the implementation does not support the use of fragment identifiers in the URI reference, then it will not be possible to include an embedded stylesheet module.
[ERR XTSE0165] It is a static error if the processor is not able to retrieve the resource identified by the URI reference, or if the resource that is retrieved does not contain a stylesheet module.
Note:
It is appropriate to use this error code when the resource cannot be retrieved, or when the retrieved resource is not well formed XML. If the resource contains XML that can be parsed but that violates the rules for stylesheet modules, then a more specific error code may be more appropriate.
                     Duplicate xsl:include declarations within a stylesheet level are
                     now ignored, preventing spurious errors caused by the presence of duplicate named components.
                    [Issue 1449  17 September 2024]
<!-- Category: declaration -->
<xsl:include
  href = uri />
A stylesheet module may include another stylesheet module using an
                     xsl:include declaration.
The xsl:include declaration has a required
                  href attribute whose value is a URI reference identifying the
                  stylesheet module to be included. This attribute is used as described in 3.11.1 Locating Stylesheet Modules.
                  [ERR XTSE0170] An xsl:include element must be a
                           top-level element.
               
                  [Definition: A stylesheet
                        level is a collection of stylesheet modules connected using xsl:include
                     declarations: specifically, two stylesheet modules A and
                        B are part of the same stylesheet level if one of them includes
                     the other by means of an xsl:include declaration, or if there
                     is a third stylesheet module C that is in the same stylesheet level
                     as both A and B.]
               
Note:
A stylesheet level thus groups the declarations in a package by import precedence: two declarations within a package are in the same stylesheet level if and only if they have the same import precedence.
                  [Definition: The declarations within a stylesheet level have a total ordering
                     known as declaration order. The order of declarations within a
                     stylesheet level is the same as the document order that would result if each
                     stylesheet module were inserted textually in place of the
                        xsl:include element that references it.] In other
                  respects, however, the effect of xsl:include is not equivalent to
                  the effect that would be obtained by textual inclusion.
If two or more xsl:include declarations within the same stylesheet level
               reference the same absolute URI, or reference different absolute URIs that are known to refer
               to the same resource, then the duplicate xsl:include declarations, other than the
               first in declaration order, are ignored. Similarly, an xsl:include
               declaration that references the top-level stylesheet module within its stylesheet level is ignored.
Note:
The above rule is new in XSLT 4.0. It can prevent the unwanted errors that can
                  occur when assembling a stylesheet from multiple modules, where each module declares its
                  dependencies using potentially redundant, and potentially circular xsl:include 
                  declarations.
In XSLT 3.0 and earlier versions, including the same module more than once would usually lead to errors caused by duplicate definitions of components such as global variables, named templates, or functions. In the rare case where the included module only contains template rules, the new rule could potentially cause a backwards incompatibility. However, it is very unlikely that a stylesheet author would do this intentionally.
The new rule does not apply when multiple xsl:include declarations for the
                  same module appear in different stylesheet levels,
                  that is, at different import precedences.
<!-- Category: declaration -->
<xsl:import
  href = uri />
A stylesheet module may import another stylesheet module using an xsl:import
                  declaration. Importing a stylesheet module
                  is the same as including it (see 3.11.2 Stylesheet Inclusion) except that template rules and other declarations in the importing module take
                  precedence over template rules and declarations in the imported module; this is
                  described in more detail below.
The xsl:import declaration has a required
                  href attribute whose value is a URI reference identifying the
                  stylesheet module to be included. This attribute is used as described in 3.11.1 Locating Stylesheet Modules.
                  [ERR XTSE0190] An xsl:import element must be a top-level element.
               
For example,
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:import href="article.xsl"/> <xsl:import href="bigfont.xsl"/> <xsl:attribute-set name="note-style"> <xsl:attribute name="font-style">italic</xsl:attribute> </xsl:attribute-set> </xsl:stylesheet>
                  [Definition: The stylesheet levels making up a stylesheet are treated as forming an
                        import tree. In the import tree, each stylesheet level has one
                     child for each xsl:import declaration that it
                     contains.] The ordering of the children is the declaration order of the
                     xsl:import declarations within their stylesheet level.
[Definition: A declaration D in the stylesheet is defined to have lower import precedence than another declaration E if the stylesheet level containing D would be visited before the stylesheet level containing E in a post-order traversal of the import tree (that is, a traversal of the import tree in which a stylesheet level is visited after its children). Two declarations within the same stylesheet level have the same import precedence.]
For example, suppose
stylesheet module A imports stylesheet modules B and C in that order;
stylesheet module B imports stylesheet module D;
stylesheet module C imports stylesheet module E.
Then the import tree has the following structure:
A
B
D
C
E
The order of import precedence (lowest first) is D, B, E, C, A.
In general, a declaration with higher import precedence takes precedence over a declaration with lower import precedence. This is defined in detail for each kind of declaration.
                  [ERR XTSE0210] It is a static error if a
                        stylesheet module directly or indirectly references itself via a chain
                        of xsl:include and xsl:import
                        declarations that contains at least one xsl:import.                 
               
Note:
Under the new XSLT 4.0 rules, a cyclic reference that involves
                     xsl:include only is ignored. A cycle involving
                     xsl:import cannot be ignored, because it makes it
                     impossible to determine which declarations have the highest
                     import precedence.
Note:
The case where a stylesheet module with a particular URI is imported several times is not treated specially. The effect is exactly the same as if several stylesheet modules with different URIs but identical content were imported. This might or might not cause an error, depending on the content of the stylesheet module.
An embedded stylesheet module is a stylesheet module whose containing element is not the outermost element of the containing XML document. Both standard stylesheet modules and simplified stylesheet modules may be embedded in this way.
Two situations where embedded stylesheets may be useful are:
The stylesheet may be embedded in the source document to be transformed.
The stylesheet may be embedded in an XML document that describes a sequence of processing of which the XSLT transformation forms just one part.
The xsl:stylesheet element may have an
                  id attribute to facilitate reference to the stylesheet module within
               the containing document.
Note:
In order for such an attribute value to be used as a fragment identifier in a URI,
                  the XDM attribute node must generally have the is-id property: see
                     [XDM 4.0] section 7.6.5 is-id Accessor. This property will typically be set if
                  the attribute is defined in a DTD as being of type ID, or if it is
                  defined in a schema as being of type xs:ID. It is also necessary that
                  the media type of the containing document should support the use of ID values as
                  fragment identifiers. 
                  Such support is widespread in existing products, and is
                     endorsed in respect of the media type application/xml by [RFC7303].
An alternative, if the implementation supports it, is to use an
                     xml:id attribute. XSLT allows this attribute (like other
                  namespaced attributes) to appear on any XSLT
                     element.
The following example shows how the xml-stylesheet processing
                  instruction (see [XML Stylesheet]) can be used to allow a source
                  document to contain its own stylesheet. The URI reference uses  a fragment identifier to locate the
                     xsl:stylesheet element:
<?xml-stylesheet type="application/xslt+xml" href="#style1"?> <!DOCTYPE doc SYSTEM "doc.dtd"> <doc> <head> <xsl:stylesheet id="style1" version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"> <xsl:import href="doc.xsl"/> <xsl:template match="id('foo')"> <fo:block font-weight="bold"><xsl:apply-templates/></fo:block> </xsl:template> <xsl:template match="xsl:stylesheet"> <!-- ignore --> </xsl:template> </xsl:stylesheet> </head> <body> <para id="foo"> ... </para> </body> </doc>
Note:
A stylesheet module that is embedded in the document to which it is to be applied
                  typically needs to contain a template
                     rule that specifies that xsl:stylesheet elements are
                  to be ignored.
Note:
The above example uses the pseudo-attribute
                     type="application/xslt+xml" in the xml-stylesheet
                  processing instruction to denote an XSLT stylesheet. This is the officially
                  registered media type for XSLT: see 3.3 XSLT Media Type. However,
                  browsers developed before this media type was registered are more likely to accept
                  the unofficial designation type="text/xsl".
Note:
Support for the xml-stylesheet processing instruction is not required
                  for conformance with this Recommendation. Implementations are not constrained in
                  the mechanisms they use to identify a stylesheet when a transformation is
                  initiated: see 2.3 Initiating a Transformation.
This specification provides three features that cause the raw stylesheet to be preprocessed as the first stage of static processing:
Whitespace and commentary are stripped (see 3.13.1 Stripping Whitespace and Commentary from the Stylesheet).
Elements
                     may be conditionally included or excluded by means of an [xsl:]use-when
                     attribute as described in 3.13.3 Conditional Element Inclusion.
Attributes may be conditionally computed as described in 3.13.4 Shadow Attributes.
Note that many of the rules affecting the validity of stylesheet documents apply to a stylesheet after this preprocessing phase has been carried out.
The tree representing the stylesheet is preprocessed as follows:
All comments and processing instructions are removed.
All xsl:note elements are removed, together with their content
                     (see 3.13.2 The xsl:note element).
Any text nodes that are now adjacent to each other are merged.
Any whitespace text node that satisfies both the following conditions is removed from the tree:
The parent of the text node is not an xsl:text
                              element
The text node does not have an ancestor element that has an
                              xml:space attribute with a value of
                              preserve, unless there is a closer ancestor element having
                              an xml:space attribute with a value of
                              default.
Any whitespace text node whose
                        parent is one of the following elements is removed from the tree, regardless of
                        any xml:space attributes:
xsl:accumulator
xsl:analyze-string
xsl:apply-imports
xsl:apply-templates
xsl:attribute-set
xsl:call-template
xsl:character-map
xsl:choose
xsl:evaluate
xsl:fork
xsl:merge
xsl:merge-source
xsl:mode
xsl:next-iteration
xsl:next-match
xsl:override
xsl:package
xsl:stylesheet
xsl:switch
xsl:transform
xsl:use-package
Any whitespace text node whose
                        immediate following-sibling node is an xsl:param or
                        xsl:sort
                        or xsl:context-item or
                        xsl:on-completion element is removed from the
                        tree, regardless of any xml:space attributes.
Any whitespace text
                        node whose immediate preceding-sibling node is an
                        xsl:catch
                        element is removed from the
                        tree, regardless of any xml:space attributes.
                  [ERR XTSE0260] Within an XSLT element that is
                        required to be empty, any content other than comments or
                        processing instructions, including any whitespace text node preserved using the
                        xml:space="preserve" attribute, is a static error.
               
Note:
Using xml:space="preserve" in parts of the stylesheet that contain
                     sequence constructors will
                     cause whitespace text nodes in that part of the
                     stylesheet to be copied to the result of the sequence constructor.
                     When the result of the sequence constructor is used to form the content of an
                     element, this can cause errors if such text nodes are followed by attribute nodes
                     generated using xsl:attribute.
Note:
If an xml:space attribute is specified on a literal result element, it will be
                     copied to the result tree in the same way as any other attribute.
xsl:note elementAn xsl:note element may appear anywhere in the stylesheet, except as the outermost element.
<xsl:note
  #any#? = string >
  <!-- Content: any -->
</xsl:note>
The element may have any attributes and any children, subject only to rules imposed by
                  other specifications such as the XML specification. The XSLT processor discards xsl:note
                  elements at an early stage of processing, without performing any validation, as described
               in 3.13.1 Stripping Whitespace and Commentary from the Stylesheet.
An xsl:note element is typically used for documentation. The format of this documentation
               is not prescribed here: it might be free text, or XHTML, or some custom vocabulary understood by a free-standing
               documentation generator.
An xsl:note element might also be used for “commenting out” XSLT declarations or instructions.
Note:
A number of documentation processors have been produced for use with XSLT, and the general convention has been to use user-defined data elements for this purpose. This approach has its drawbacks:
Annotations can only appear at the top level of the stylesheet (between declarations, but not within declarations). Extension instructions can also potentially be used as annotations, but this abuses their intended purpose and may create an unwanted dependency on a specific processor.
Annotations require a custom namespace to be declared, typically on the xsl:stylesheet
                     element, and this namespace becomes part of the static context for all expressions within the stylesheet,
                     thus changing (if only very slightly) the semantics of the stylesheet code. This is true even
                     if the namespace is excluded from the result tree by means of an [xsl:]exclude-result-prefixes
                        attribute.
Implementations must not interpret the contents of an xsl:note element
               to modify the behavior of the stylesheet in any way, whether or not the resulting behavior remains conformant
               with this specification.
Note:
For example, xsl:note elements must not be used to provide processor-specific performance
                     hints. There are better mechanisms for this, such as user-defined data elements
                  and extension attributes.
Any element in the XSLT namespace may have a use-when attribute whose
                  value is an XPath expression that can be evaluated statically. 
                  A literal result element, or
                  any other element within a stylesheet
                     module that is not in the XSLT namespace, may similarly carry an
                  xsl:use-when attribute.      
                  If the attribute is
                  present and the effective boolean
                     valueXP of the expression is false, then the element, together with
                  all the nodes having that element as an ancestor, is effectively excluded from the
                     stylesheet module. When a node is
                  effectively excluded from a stylesheet module the stylesheet module has the same
                  effect as if the node were not there. Among other things this means that no static
                  or dynamic errors will be raised in respect of the element and its contents,
                  other than errors in the use-when attribute itself.
Note:
This does not apply to XML parsing or validation errors, which will be raised
                     in the usual way. It also does not apply to attributes that are necessarily
                     processed before [xsl:]use-when, examples being
                        xml:space and [xsl:]xpath-default-namespace.
If the xsl:package, 
               xsl:stylesheet or xsl:transform element
                  itself is effectively excluded, the effect is to exclude all the children of the
                     xsl:stylesheet or xsl:transform element, but
                  not the xsl:stylesheet or xsl:transform element
                  or its attributes.
Note:
This allows all the declarations that depend on the same condition to be
                     included in one stylesheet module, and for their inclusion or exclusion to be
                     controlled by a single use-when attribute at the level of the
                     module.
Conditional element exclusion happens after stripping of whitespace text nodes from the stylesheet, as described in 3.13.1 Stripping Whitespace and Commentary from the Stylesheet.
The XPath expression used as the value of the
                     xsl:use-when attribute follows the rules for static expressions, including the rules for handling errors.
The use of [xsl:]use-when is illustrated in the following
                  examples.
This example demonstrates the use of the use-when attribute to
                     achieve portability of a stylesheet across schema-aware and non-schema-aware
                     processors.
<xsl:import-schema schema-location="http://example.com/schema" use-when="system-property('xsl:is-schema-aware')='yes'"/> <xsl:template match="/" use-when="system-property('xsl:is-schema-aware')='yes'" priority="2"> <xsl:result-document validation="strict"> <xsl:apply-templates/> </xsl:result-document> </xsl:template> <xsl:template match="/"> <xsl:apply-templates/> </xsl:template>
The effect of these declarations is that a non-schema-aware processor ignores
                     the xsl:import-schema declaration and the first template rule,
                     and therefore raises no errors in respect of the schema-related constructs
                     in these declarations.
This example includes different stylesheet modules depending on which XSLT processor is in use.
<xsl:include href="module-A.xsl" use-when="system-property('xsl:vendor')='vendor-A'"/> <xsl:include href="module-B.xsl" use-when="system-property('xsl:vendor')='vendor-B'"/>
When a no-namespace attribute name N is permitted to appear on an element in the XSLT namespace (provided that N does not start with an underscore), then a value V can be supplied for N in one of two ways:
The conventional way is for an attribute node with name N and value V to appear in the XDM representation of the element node in the stylesheet tree.
As an alternative, a shadow attribute may be supplied allowing the value V to be statically computed during the preprocessing phase. The shadow attribute has a name that is the same as the name N prefixed with an underscore, and the value of the shadow attribute is a value template in which all expressions enclosed between curly braces must be static expressions. The value V is the result of evaluating the value template. If a shadow attribute is present, then any attribute node with name N (sharing the same parent element) is ignored.
For example, an xsl:include element might be written:
<xsl:include _href="common{ $VERSION }.xsl"/>
allowing the stylesheet to include a specific version of a library module based on the value of a static parameter.
Similarly, a mode might be declared like this:
<xsl:param name="streamable" as="xs:boolean" required="yes" static="yes"/> <xsl:mode _streamable="{ $streamable }" on-no-match="shallow-skip"/>
this allowing the streamability of the mode to be controlled using a static parameter
                  (Note: this example relies on the fact that the
                        streamable attribute accepts a boolean value, which means that
                     the values true and false are accepted as synonyms of
                        yes and no).
This mechanism applies to all attributes in the stylesheet where the attribute
                  name is in no namespace and the name of the parent element is in the XSLT namespace. This includes attributes that have static
                  significance such as the use-when attribute, the version
                  attribute, and the static attribute on xsl:variable.
                  The mechanism does not apply to shadow attributes (that is, it is not possible to
                  invoke two stages of preprocessing by using two leading underscores). It does not
                  apply to attributes of literal result elements, nor to attributes in a namespace
                  such as the XML or XSLT namespace, nor to namespace declarations.
Note:
If a shadow attribute and its corresponding target attribute are both present in the stylesheet, the non-shadow attribute is ignored. This may be useful to make stylesheet code compatible across XSLT versions; an XSLT 2.0 processor operating in forwards compatible mode will ignore shadow attributes, and will require the target attribute to be valid.
Note:
The statement that the non-shadow attribute is ignored extends to error detection: it is not an error if the non-shadow attribute has an invalid value. However, this is not reflected in the schema for XSLT stylesheets, so validation using this schema may raise errors in such cases.
Note:
An attribute whose name begins with an underscore is treated specially only when it appears on an element in the XSLT namespace. On a literal result element, it is treated in the same way as any other attribute (that is, its effective value is copied to the result tree). On an extension instruction or user-defined data element, as with other attributes on these elements, its meaning is entirely implementation-defined.
Although it is not usually considered good practice, it sometimes happens that variants or versions of an XML vocabulary exist in which the same local names are used, but in different namespaces. There is then a requirement to write code that will process source documents in a variety of different namespaces.
It is possible to define a static stylesheet parameter containing the target namespace, for example:
<xsl:param name="NS" as="xs:string" static="yes" select="'http://example.com/ns/one'"/>
And this can then be used to set the default namespace for XPath expressions:
_xpath-default-namespace="{ $NS }"
                     However, it is not possible to put this shadow attribute on the
                        xsl:stylesheet or xsl:package element of
                     the principal stylesheet module, because at that point the variable
                        $NS is not in scope. A workaround is to create a stub
                     stylesheet module which contains nothing but the static parameter declaration
                     and an xsl:include of the stylesheet module containing the
                     real logic. The static stylesheet parameter will then be in scope on the
                        xsl:stylesheet element of the included stylesheet module,
                     and the shadow attribute _xpath-default-namespace="{ $NS }" can
                     therefore appear on this xsl:stylesheet element.
The following stylesheet produces a report giving information about selected employees. The predicate defining which employees are to be included in the report is supplied (as a string containing an XPath expression) in a static stylesheet parameter:
<xsl:param name="filter" static="yes" as="xs:string" select="'true()'"/> <xsl:function name="local:filter" as="xs:boolean"> <xsl:param name="e" as="element(employee)"/> <xsl:sequence _select="$e/({ $filter })"/> </xsl:function> <xsl:template match="/"> <report> <xsl:apply-templates mode="report" select="//employee[local:filter(.)]"/> </report> </xsl:template>
If the supplied value of the filter parameter is, say location =
                        "UK", then the report will cover employees based in the UK.
Note:
The stylesheet function local:filter is used here in preference
                        to direct use of the supplied predicate within the select
                        attribute of the xsl:apply-templates instruction because it
                        reduces exposure to code injection attacks. It does not necessarily
                        eliminate all such risks, however. For example, it would be possible for a
                        caller to supply an expression that never terminates, thus creating a
                        denial-of-service risk.
Every XSLT 4.0 processor includes the following named type definitions in the in-scope schema components:
                     All built-in types defined in [XML Schema Part 2], including xs:anyType and
                           xs:anySimpleType.
The following types defined in [XPath 4.0]:
                        xs:yearMonthDuration, xs:dayTimeDuration,
                        xs:anyAtomicType, xs:untyped, and
                        xs:untypedAtomic.
XSLT 4.0 processors may optionally include types
               defined in XSD 1.1 (see [XML Schema 1.1 Part 1]). XSD 1.1 adopts the types
                  xs:yearMonthDuration, xs:dayTimeDuration, and
                  xs:anyAtomicType previously defined in XPath 2.0, and adds one new
               type: xs:dateTimeStamp. XSD 1.1 also allows implementers to define
               additional primitive types, and XSLT 4.0 permits such types to be supported by an
               XSLT processor.
A schema-aware XSLT processor additionally supports:
User-defined types, and element and attribute declarations, that are imported
                     using an xsl:import-schema declaration as described in
                        3.15 Importing Schema Components. These may include both simple and complex
                     types.
Note:
The names that are imported from the XML Schema namespace do not include all the
                  names of top-level types defined in either the Schema for Schema Documents or the
                  Schema for Schema Documents (Datatypes). The Schema for Schema Documents, as well
                  as defining built-in types such as xs:integer and
                     xs:double, also defines types that are intended for use only
                  within that schema, such as xs:derivationControl. A stylesheet that is designed to process XML Schema
                  documents as its input or output may import the Schema for Schema Documents.
An implementation may define mechanisms that allow additional schema components to be added to the in-scope schema components for the stylesheet. For example, the mechanisms used to define extension functions (see 24.1 Extension Functions) may also be used to import the types used in the interface to such functions.
These schema components are the only
               ones that may be referenced in XPath expressions within the stylesheet, or in the
                  [xsl:]type and as attributes of those elements that
               permit these attributes.
The rules concerning the compatibility of schemas imported by different packages have been clarified. It is now explicitly stated that instructions that trigger validation must use the imported schema of the package in which validation is invoked. This differs from the current practice of some XSLT 3.0 processors, which may use (for example) a schema formed from the union of the imported schemas in all packages. [Issue 451 PR 635 24 October 2023]
Different parts of a stylesheet may now use different imported schemas. [Issue 451 PR 1819 18 February 2025]
Note:
The facilities described in this section are not available with a basic XSLT processor. They require a schema-aware XSLT processor, as described in 27 Conformance.
<!-- Category: declaration -->
<xsl:import-schema
  role? = ncname
  namespace? = uri
  schema-location? = uri >
  <!-- Content: xs:schema? -->
</xsl:import-schema>
The xsl:import-schema declaration is used to identify schema components (that is, top-level type
               definitions and top-level element and attribute declarations) that need to be
               available statically, that is, before any source document is available. Names of such
               components used statically within the stylesheet must refer to an in-scope schema component, which means they must either be built-in
               types as defined in 3.14 Built-in Types, or they must be imported using
               an xsl:import-schema declaration.
The xsl:import-schema declaration identifies a namespace containing
               the names of the components to be imported (or indicates that components whose names
               are in no namespace are to be imported). The effect is that the names of top-level
               element and attribute declarations and type definitions from this namespace (or
               non-namespace) become available for use within XPath expressions in the package, and within
               other stylesheet constructs such as the type and as
               attributes of various XSLT elements.
If the role attribute is absent,
               the relevant schema components are available in all stylesheet modules
                  within the declaring
                     package, except within subtrees of a stylesheet module
               where a different schema is selected using an [xsl:]schema-role
               attribute. Importing components in one stylesheet module makes
               them available throughout the package, subject
               to the constraints imposed by the [xsl:]schema-role attribute.
            
The schema components imported into different packages within a stylesheet (regardless of the schema role) must be compatibleDM. Specifically, it is not permitted to use the same name in the same XSD symbol space to refer to different schema components within different packages; and the union of the schema components imported into the packages of a stylesheet must constitute a valid schema (as well as the set of schema components imported into each package forming a valid schema in its own right).
Note:
The fact that the schemas used in different packages must be compatible does not mean they must be identical. There are circumstances where validating an element using one schema might produce a different outcome from validation with a different schema, despite these consistency rules: an example is where the two schemas define different membership for a substitution group.
Nevertheless, the consistency rules are strong enough to ensure that an element
            node validated using one schema can safely be passed to a function declared in another
            package, where the function declares the required
            type of an argument as (say) element(*, T).
The namespace and schema-location attributes are both
               optional.
If the xsl:import-schema element contains an xs:schema
               element, then the schema-location attribute must be
               absent, and one of the following must be true:
the namespace attribute of the xsl:import-schema
                     element and the targetNamespace attribute of the
                        xs:schema element are both absent (indicating a no-namespace
                     schema), or
the namespace attribute of the xsl:import-schema
                     element and the targetNamespace attribute of the
                        xs:schema element are both present and both have the same
                     value, or
the namespace attribute of the xsl:import-schema
                     element is absent and the targetNamespace attribute of the
                        xs:schema element is present, in which case the target
                     namespace is as given on the xs:schema element.
               [ERR XTSE0215] It is a static error if an
                        xsl:import-schema element that contains an
                        xs:schema element has a schema-location attribute,
                     or if it has a namespace attribute that conflicts with the target
                     namespace of the contained schema.
            
If two xsl:import-schema declarations with the same effective role
               name specify the same namespace, or
               if both specify no namespace, then only the one with highest import precedence is used. If this leaves
               more than one, then all the declarations at the highest import precedence are used
               (which may cause conflicts, as described below).
After discarding any xsl:import-schema declarations under the above
               rule, the effect of the remaining xsl:import-schema declarations 
               for each distinct schema role is
               defined in terms of a hypothetical document called the synthetic schema document,
               which is constructed as follows. The synthetic schema document defines an arbitrary
               target namespace that is different from any namespace actually used by the
               application, and it contains xs:import elements corresponding
               one-for-one with the xsl:import-schema declarations 
               with that effective schema role
               in the stylesheet, with the following correspondence:
The namespace attribute of the xs:import element is
                     copied from the namespace attribute of the
                        xsl:import-schema declaration if it is explicitly present,
                     or is implied by the targetNamespace attribute of a contained
                        xs:schema element, and is absent if it is absent.
The schemaLocation attribute of the xs:import element
                     is copied from the schema-location attribute of the
                        xsl:import-schema declaration if present, and is absent if
                     it is absent. If there is a contained xs:schema element, the
                     effective value of the schemaLocation attribute is a URI
                     referencing a document containing a copy of the xs:schema
                     element.
The base URI of the xs:import element is the same as the base URI
                     of the xsl:import-schema declaration.
The schema components included in the 
               in-scope schema components 
               of an XPath expression or other construct within a stylesheet (that is, the components whose names are
               available for use within that construct) depend on the effective schema role for that
               construct, which is determined by the value of the [xsl:]schema-role attribute
               of the innermost ancestor element having such an attribute; in the absence of such an attribute,
               the unnamed schema role applies. The schema components whose names are available
               are the top-level element and attribute
               declarations and type definitions that are available for reference within the
               synthetic schema document for that schema role. See [XML Schema Part 1] (section 4.2.3,
                  References to schema components across namespaces).
[ERR XTSE0220] It is a static error if the synthetic schema document does not satisfy the constraints described in [XML Schema Part 1] (section 5.1, Errors in Schema Construction and Structure). This includes, without loss of generality, conflicts such as multiple definitions of the same name.
Note:
The synthetic schema document does not need to be constructed by a real
                  implementation. It is purely a mechanism for defining the semantics of
                     xsl:import-schema in terms of rules that already exist within
                  the XML Schema specification. In particular, it implicitly defines the rules that
                  determine whether the set of xsl:import-schema declarations are
                  mutually consistent.
These rules do not cause names to be imported transitively. The fact that a name is available for reference within a schema document A does not of itself make the name available for reference in a stylesheet that imports the target namespace of schema document A. (See [XML Schema Part 1] section 3.15.3, Constraints on XML Representations of Schemas.) The stylesheet must import all the namespaces containing names that it actually references.
The namespace attribute indicates that a schema for the given
                  namespace is required by the stylesheet.
                  This information may be enough on its own to enable an implementation to locate
                  the required schema components. The namespace attribute may be
                  omitted to indicate that a schema for names in no namespace is being imported. The
                  zero-length string is not a valid namespace URI, and is therefore not a valid
                  value for the namespace attribute.
The schema-location attribute is a URI Reference that gives a hint indicating where a schema document
                  or other resource containing the required definitions may be found. It is likely
                  that a schema-aware XSLT
                     processor will be able to process a schema document found at this
                  location.
The XML Schema specification gives implementations flexibility in how to handle multiple imports for the same namespace. Multiple imports do not cause errors if the definitions do not conflict.
A consequence of these rules is that it is not intrinsically an error if no schema
                  document can be located for a namespace identified in an
                     xsl:import-schema declaration. This will cause an error only
                  if it results in the stylesheet containing references to names that have not been
                  imported.
An inline schema document (using an xs:schema element as a child of
                  the xsl:import-schema element) has the same status as an external
                  schema document, in the sense that it acts as a hint for a source of schema
                  components in the relevant namespace. To ensure that the inline schema document is
                  always used, it is advisable to use a target namespace that is unique to this
                  schema document.
The use of a namespace in an xsl:import-schema declaration does not
               by itself associate any namespace prefix with the namespace. If names from the
               namespace are used within the stylesheet module then a namespace declaration must be
               included in the stylesheet module, in the usual way.
The following example shows an inline schema document. This declares a simple type
                     local:yes-no, which the stylesheet then uses in the declaration of
                  a variable.
The example assumes the namespace declaration
                     xmlns:local="http://example.com/ns/yes-no"
               
<xsl:import-schema> <xs:schema targetNamespace="http://example.com/ns/yes-no" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:local="http://example.com/ns/yes-no"> <xs:simpleType name="yes-no"> <xs:restriction base="xs:string"> <xs:enumeration value="yes"/> <xs:enumeration value="no"/> </xs:restriction> </xs:simpleType> </xs:schema> </xsl:import-schema> <xsl:variable name="condition" select="local:yes-no('yes')" as="local:yes-no"/>
There are two built-in functions
                  (analyze-string and json-to-xml) whose
               result is an XML structure for which a schema is defined. The namespace for these
               schema definitions is (in both cases) http://www.w3.org/2005/xpath-functions. Schema
               components for these namespaces are available for reference within the stylesheet if
               and only if an xsl:import-schema declaration is present referencing
               this namespace. If such a declaration is present, then the schema that is
               imported is the schema defined in the specification of these functions: the schemaLocation
               attribute has no effect.
A stylesheet might perform a transformation from an input document conforming to
               one schema, to an output document conforming to a different schema. To facilitate this,
               a schema can be imported with a specific role name, and it is then used only in parts
               of the stylesheet within the scope of an [xsl:]schema-role attribute specifying
               this role name.
               
More specifically, within the subtree rooted at an element having an 
               [xsl:]schema-role attribute, the static context uses in-scope schema
                  definitions taken from the named schema role.
[ERR XTSE4045] It is a static error if the value
                  of any [xsl:]schema-role in a stylesheet package does
                  not match the value of the role attribute on some
                  xsl:import-schema element in the same package.
Note:
The introduction of multiple schema roles in XSLT 4.0 enables different input and output documents to be validated against different schemas. For example, a stylesheet might contain the instruction:
<xsl:result-document validation="strict" schema-role="output"> ... </xsl:result-document>
to control which schema is used to validate the result document.
                  Any instructions used to create validated element nodes
                  in this result document should normally also be within the scope of
                  the same [xsl:]schema-role.
The fact that multiple schemas can be imported does not relax the requirement that all schemas used in a transformation must be compatibleDM. This may mean, for example, that a transformation designed to convert documents from one version of a defined schema to a later version of the same schema may be unable to import both.
The reason for this restriction is to ensure that stylesheet components (such as functions) using schema components in their type signatures are compatible across the stylesheet as a whole, and that instance documents whose nodes have type annotations resulting from validation against a schema can be checked for conformance with types declared anywhere in the stylesheet.
It is possible to validate different parts of a constructed document against different schemas. However, validating an element in a document validates the entire subtree rooted at that element, so requesting validation at more than one level may be redundant.
The data model used by XSLT is the XPath 4.0 and XQuery 4.0 data model (XDM), as defined in [XDM 4.0]. XSLT operates on source, result and stylesheet documents using the same data model.
This section elaborates on some particular features of XDM as it is used by XSLT:
The rules in 3.13.1 Stripping Whitespace and Commentary from the Stylesheet and 4.3.2 Stripping Whitespace from a Source Tree make use of the concept of a whitespace text node.
[Definition: A whitespace text node is a text node whose content consists entirely of whitespace characters (that is, U+0009 (TAB) , U+000A (NEWLINE) , U+000D (CARRIAGE RETURN) , or U+0020 (SPACE) ).]
Note:
Features of a source XML document that are not represented in the XDM tree will have no effect on the operation of an XSLT stylesheet. Examples of such features are entity references, CDATA sections, character references, whitespace within element tags, and the choice of single or double quotes around attribute values.
The XDM data model defined in [XDM 4.0] is capable of representing either an XML 1.0 document (conforming to [XML 1.0] and [Namespaces in XML]) or an XML 1.1 document (conforming to [XML 1.1] and [Namespaces in XML 1.1]), and it makes no distinction between the two. In principle, therefore, XSLT 4.0 can be used with either of these XML versions.
Construction of the XDM tree is outside the scope of this specification, so XSLT 4.0 places no formal requirements on an XSLT processor to accept input from either XML 1.0 documents or XML 1.1 documents or both. This specification does define a serialization capability (see 26 Serialization), though from a conformance point of view it is an optional feature. Although facilities are described for serializing the XDM tree as either XML 1.0 or XML 1.1 (and controlling the choice), there is again no formal requirement on an XSLT processor to support either or both of these XML versions as serialization targets.
Because the XDM tree is the same whether the original document was XML 1.0 or XML 1.1, the semantics of XSLT processing do not depend on the version of XML used by the original document. There is no reason in principle why all the input and output documents used in a single transformation must conform to the same version of XML.
Some of the syntactic constructs in XSLT 4.0 and XPath 3.0, for example the productions CharXML and NCNameNames, are defined by reference to the XML and XML Namespaces specifications. There are slight variations between the XML 1.0 and XML 1.1 versions of these productions (and, indeed, between different editions of XML 1.0). Implementations may support any version; it is recommended that an XSLT 4.0 processor that implements the 1.1 versions should also provide a mode that supports the 1.0 versions. It is thus implementation-defined which versions and editions of XML and XML Namespaces are supported by the implementation.
Note:
The specification referenced as [Namespaces in XML] was actually published without a version number.
The current version of [XML Schema 1.1 Part 2] references the XML 1.1 specifications, but the previous version ([XML Schema Part 2]) (that is, XSD 1.0) remains in widespread use, and only
                  references XML 1.0. With processors lacking support for XSD 1.1,
               therefore, datatypes such as xs:NCName and xs:ID may be
               constrained by the XML 1.0 rules, and not allow the full range of values permitted by
               XML 1.1. It is recommended that implementers wishing to support
               XML 1.1 should consult [XML Schema 1.0 and XML 1.1] for guidance.
XSLT 4.0 requires a processor to support XDM 4.0 as defined in [XDM 4.0].
A processor may also provide a user option to support versions of XDM later than 3.1, in which case the way it does so is implementation-defined.
Source documents supplied as input to a transformation may be subject to preprocessing. Two kinds of preprocessing are defined: stripping of type annotations (see 4.3.1 Stripping Type Annotations from a Source Tree), and stripping of whitespace text nodes (see 4.3.2 Stripping Whitespace from a Source Tree).
Stripping of type annotations happens before stripping of whitespace text nodes.
The source documents to which this applies are as follows:
The document containing the global context item if it is a node;
Any documents containing a node present in the initial match selection;
Any document containing a node that is returned by the functions document, doc,
                  or collection;
Any document read using xsl:source-document.
Note:
This list excludes documents passed as the values of 
               stylesheet parameters or parameters 
               of the initial named template or initial function, 
               trees created by functions such as parse-xml, parse-xml-fragment,
               analyze-string, or json-to-xml,
               and values returned from extension
                  functions.
            
If a node other than a document node is supplied (for example as the global context item), 
               then the preprocessing is applied to the entire document containing that node. If several nodes within the same 
               document are supplied (for example as nodes in the initial match selection, or as nodes returned by the 
               collection function), then the preprocessing is only applied to that document once.
               If a whitespace text node is supplied (for example as the global context item) and the rules cause this node
               to be stripped from its containing tree, then the behavior is as if this node had not been supplied 
               (which may cause an error, for example if a global context item is required.)
            
The rules determining whether or not stripping of annotations and/or whitespace 
               happens are defined at the level of a package. Declarations within a library package 
               only affect the handling of documents loaded using a call on the document, doc,
               or collection functions or an evaluation of an xsl:source-document instruction 
               appearing lexically within the same package. Declarations within the top-level package also affect the processing 
               of the global context item and the initial match selection.
            
The semantics of the document, doc,
               and collection functions are formally defined in terms of mappings from URIs to document nodes 
               maintained within the dynamic context (see 5.3.3 Initializing the Dynamic Context). The effect of the 
               declarations that control stripping of type annotations 
               and whitespace is therefore to modify this mapping (so it now maps the URI to a stripped document). The modification 
               applies to the dynamic context for calls to these function appearing within a particular package; each package therefore 
               has a different set of mappings. This means that when two calls to the doc function appear in 
               different packages, specifying the same absolute URI, then in general different documents are returned. An implementation 
               may return the same document for two such calls if it is able to determine that the effect of the annotation 
               and whitespace stripping rules in both packages is the same.
            
The effect of dynamic calls to the document, doc,
               and collection functions is defined in the same way as for other functions with dependencies on 
               the dynamic context. As described in 5.3.4 Additional Dynamic Context Components used by XSLT, named function references 
               (such as doc#1) and calls on function-lookup (for example, function-lookup("doc", 1)) 
               are defined to retain the XPath static and dynamic context at the point of invocation as part of the closure of the 
               resulting function item, and to use this preserved context when a dynamic function call is subsequently made using the function item.
            
               [Definition: The term type
                     annotation is used in this specification to refer to the value returned
                  by the dm:type-name accessor of a node: see [XDM 4.0] section 7.6.13 type-name Accessor.]
            
There is sometimes a requirement to write stylesheets that produce the same results
               whether or not the source documents have been validated against a schema. To achieve
               this, an option is provided to remove any type
                  annotations on element and attribute nodes in a source tree, replacing them with an annotation of
                  xs:untyped in the case of element nodes, and
                  xs:untypedAtomic in the case of attribute nodes.
Such stripping of type annotations can be
               requested by specifying input-type-annotations="strip" on the xsl:package element. This
               attribute has three permitted values: strip, preserve, and
                  unspecified. The default value is unspecified. 
            Specifying unspecified has the same effect
            as omitting the attribute.
The input-type-annotations attribute may also
               be specified on the xsl:stylesheet element; if it is specified at
               this level then it must be consistent for all stylesheet modules within the same
               package.
               [ERR XTSE0265]  It is a static error if there is a
                        stylesheet module in a
                        package that specifies
                        input-type-annotations="strip" and another stylesheet module that specifies
                        input-type-annotations="preserve", or if a stylesheet module specifies the value
                           strip or preserve and the same value is not
                        specified on the xsl:package element of the containing
                        package.
            
Type annotations are stripped from relevant source documents if 
               at least one stylesheet module in the stylesheet
               specifies input-type-annotations="strip" on the xsl:package, 
               xsl:stylesheet, or xsl:transform element.
When type annotations are stripped, the following changes are made to the source tree:
The type annotation of every element node is changed to xs:untyped
                  
The type annotation of every attribute node is changed to
                        xs:untypedAtomic
                  
The typed value of every element and attribute node is set to be the same as
                     its string value, as an instance of xs:untypedAtomic.
The is-nilled property of every element node is set to
                        false.
The values of the is-id and is-idrefs properties are not
               changed.
Note:
Stripping type annotations does not
                  necessarily return the document to the state it would be in had validation not
                  taken place. In particular, any defaulted elements and attributes that were added
                  to the tree by the validation process will still be present, and elements and
                  attributes validated as IDs will still be accessible using the
                     id function.
A source tree supplied as input to the transformation process may contain whitespace text nodes that are of no interest, and that do not need to be retained by the transformation. Conceptually, an XSLT processor makes a copy of the source tree from which unwanted whitespace text nodes have been removed. This process is referred to as whitespace stripping.
The stripping process takes as input a set of element names whose child whitespace text nodes are to be preserved.
               The way in which this set of element names is established using the
                  xsl:strip-space and xsl:preserve-space
               declarations is described later in this section.
The stripping process that applies for a particular
               package is determined by the xsl:strip-space
               and xsl:preserve-space declarations within that package.
A whitespace text node is preserved if either of the following apply:
The element name of the parent of the text node is in the set of whitespace-preserving element names.
An ancestor element of the text node has an xml:space attribute
                     with a value of preserve, and no closer ancestor element has
                        xml:space with a value of default.
Otherwise, the whitespace text node is stripped.
The xml:space attributes are not removed from the tree.
<!-- Category: declaration -->
<xsl:strip-space
  elements = tokens />
<!-- Category: declaration -->
<xsl:preserve-space
  elements = tokens />
The set of whitespace-preserving element names is specified by
                  xsl:strip-space and xsl:preserve-space
               declarations. Whether an element name is
               included in the set of whitespace-preserving names is determined by the best match
               among all the xsl:strip-space or xsl:preserve-space
               declarations: it is included if and only if there is no match or the best match is an
                  xsl:preserve-space element. The xsl:strip-space
               and xsl:preserve-space elements each have an elements
               attribute whose value is a whitespace-separated list of NameTestsXP; an element name matches an
                  xsl:strip-space or xsl:preserve-space element if
               it matches one of the NameTestsXP.
               An element matches a NameTestXP if
               and only if the NameTestXP would be
               true for the element as an XPath node test.
[ERR XTSE0270] It is a static error if within any package the same NameTestXP appears in both an
                        xsl:strip-space and an xsl:preserve-space
                     declaration if both have the same import
                        precedence. Two NameTests are considered the same if they match
                     the same set of names (which can be determined by comparing them after
                     expanding namespace prefixes to URIs).
Otherwise, when more than one
                  xsl:strip-space and xsl:preserve-space element
                  within the relevant package matches, the best matching element is determined by
               the best matching NameTestXP.
                  
               The rules are similar to those for
               template rules:
First, any match with lower import precedence than another match is ignored.
Next, any match that has a lower default priority than the default priority of another match is ignored.
If several matches have the same default priority (which can only happen
                     if one of the NameTests takes the form *:local and the other takes
                     the form prefix:*), then the declaration that appears last in
                        declaration order is used.
If an element in a source document has a type
                  annotation that is a simple type or a complex type with simple content,
               then any whitespace text nodes among its children are preserved, regardless of any
                  xsl:strip-space declarations. The reason for this is that
               stripping a whitespace text node from an element with simple content could make the
               element invalid: for example, it could cause the minLength facet to be
               violated.
Stripping of type annotations happens
               before stripping of whitespace text nodes, so this situation will not occur if
                  input-type-annotations="strip" is specified.
Note:
In [XDM 4.0], processes are described for constructing an
                  XDM tree from an Infoset or from a PSVI. Those processes deal with whitespace
                  according to their own rules, and the provisions in this section apply to the
                  resulting tree. In practice this means that elements that are defined in a DTD or
                  a Schema to contain element-only content will have whitespace text nodes stripped,
                  regardless of the xsl:strip-space and
                     xsl:preserve-space declarations in the stylesheet.
However, source trees are not necessarily constructed using those processes; indeed, they are not necessarily constructed by parsing XML documents. Nothing in the XSLT specification constrains how the source tree is constructed, or what happens to whitespace text nodes during its construction. The provisions in this section relate only to whitespace text nodes that are present in the tree supplied as input to the XSLT processor. The XSLT processor cannot preserve whitespace text nodes unless they were actually present in the supplied tree.
The mapping from the Infoset to the XDM data model, described in [XDM 4.0], does not retain attribute types. This means, for
               example, that an attribute described in the DTD as having attribute type
                  NMTOKENS will be annotated in the XDM tree as
                  xs:untypedAtomic rather than xs:NMTOKENS, and its typed
               value will consist of a single xs:untypedAtomic item rather than a
               sequence of xs:NMTOKEN items.
Attributes with a DTD-derived type of ID, IDREF, or IDREFS will be marked in the XDM
               tree as having the is-id or is-idrefs properties. It is
               these properties, rather than any type
                  annotation, that are examined by the functions id
               and idref described in [Functions and Operators 4.0].
The XDM data model (see [XDM 4.0]) leaves it to the host language to define limits. This section describes the limits that apply to XSLT.
Limits on some primitive datatypes are defined in [XML Schema Part 2]. Other limits, listed below, are implementation-defined. Note that this does not necessarily mean that each limit must be a simple constant: it may vary depending on environmental factors such as available resources.
The following limits are implementation-defined:
For the xs:decimal type, the maximum number of decimal digits (the
                        totalDigits facet). This must be at least 18 digits. (Note,
                     however, that support for the full value range of xs:unsignedLong
                     requires 20 digits.) 
For the types xs:date, xs:time,
                        xs:dateTime, xs:gYear, and
                        xs:gYearMonth: the range of values of the year component, which
                     must be at least +0001 to +9999; and the maximum number of fractional second
                     digits, which must be at least 3.
For the xs:duration type: the maximum absolute values of the
                     years, months, days, hours, minutes, and seconds components. 
For the xs:yearMonthDuration type: the maximum absolute value,
                     expressed as an integer number of months.
For the xs:dayTimeDuration type: the maximum absolute value,
                     expressed as a decimal number of seconds.
For the types xs:string, xs:hexBinary,
                        xs:base64Binary, xs:QName, xs:anyURI,
                        xs:NOTATION, and types derived from them: the maximum length of
                     the value. 
For sequences, the maximum number of items in a sequence.
For backwards compatibility reasons, XSLT 4.0
               continues to support the disable-output-escaping feature introduced in
               XSLT 1.0. This is an optional feature and implementations are not
                  required to support it. A new facility, that of named character maps (see 26.3 Character Maps) was introduced in XSLT 2.0. It provides
               similar capabilities to disable-output-escaping, but without distorting
               the data model.
If an implementation supports the
                  disable-output-escaping attribute of xsl:text and
                  xsl:value-of, (see 26.5 Disabling Output Escaping),
               then the data model for trees constructed by the processor is augmented with a boolean value representing the value of
               this property. This boolean value, however, can be set only within a final result tree that is being passed to the
               serializer.
Conceptually, each character in a text node on such a result tree has a boolean
               property indicating whether the serializer is to disable the normal rules for
               escaping of special characters (for example, outputting of & as
                  &) in respect of this character.
Note:
In practice, the nodes in a final result
                     tree will often be streamed directly from the XSLT processor to the
                  serializer. In such an implementation, disable-output-escaping can be
                  viewed not so much a property stored with nodes in the tree, but rather as
                  additional information passed across the interface between the XSLT processor and
                  the serializer.
Many constructs appearing in a stylesheet, for example named templates, modes, and attribute sets, are named using a qualified name: this consists of a local name and an optional namespace URI.
In most cases where such names are written in a stylesheet, the syntax for expressing the name is given by the production EQNameXP in the XPath specification. In practice, this means that three forms are permitted:
A simple NCName appearing on its own (without any prefix). This
                        represents the local name of the object. The interpretation of unprefixed
                        names is described below.
A lexical QName written in the
                        form NCName ":" NCName where the first part is a namespace
                        prefix and the second part is the local name. The namespace part of the
                        object’s name is then derived from the prefix by examining the
                        applicable static namespaces 
                        for the element node in the stylesheet where the
                        name appears.
A URIQualifiedNameXP in the form "Q{" URI? "}" NCName
                        where the two parts of the name, that is the namespace part and the local
                        part, both appear explicitly. If the URI part is omitted (for example
                           Q{}local), the resulting expanded QName is a QName whose
                        namespace part is absent.
The rules for the use of these constructs generally permit leading and trailing whitespace, which is ignored.
Note:
There are a few places where the third form, a URIQualifiedName, is not
                     permitted. These include the name attribute of
                        xsl:element and xsl:attribute (which have
                     a separate namespace attribute for the purpose), and constructs
                     defined by other specifications. For example, names appearing within an
                     embedded xs:schema element must follow the XSD rules.
                  [Definition: An expanded
                        QName is a value in the value space of the xs:QName
                     datatype as defined in the XDM data model (see [XDM 4.0]): that is, a triple containing namespace prefix (optional), namespace URI
                     (optional), and local name. Two expanded QNames are equal if the namespace URIs
                     are the same (or both absent) and the local names are the same. The prefix
                     plays no part in the comparison, but is used only if the expanded QName needs
                     to be converted back to a string.]
               
[Definition: An EQName is a string representing an expanded QName where the string, after removing leading and trailing whitespace, is in the form defined by the EQNameXP production in the XPath specification.]
                  [Definition: A lexical QName
                     is a string representing an expanded
                        QName where the string, after removing leading and trailing
                     whitespace, is within the lexical space of the xs:QName datatype
                     as defined in XML Schema (see [XML Schema Part 2]): that is, a local
                     name optionally preceded by a namespace prefix and a colon.]
               
Note that every lexical QName is an EQName, but the converse is not true.
The following rules are used when interpreting a lexical QName:
[Definition: A string in the form of a lexical QName may occur as the value of an attribute node in a stylesheet module, or within an XPath expression contained in an attribute or text node within a stylesheet module, or as the result of evaluating an XPath expression contained in such a node. The element containing this attribute or text node is referred to as the defining element of the lexical QName.]
If the lexical QName has a prefix, then the prefix is expanded into a URI reference using the namespace declarations in effect on its defining element. The expanded QName consisting of the local part of the name and the possibly null URI reference is used as the name of the object. The default namespace of the defining element (see [XDM 4.0] section 7.5.2 Element nodes) is not used for unprefixed names.
[ERR XTSE0280] In the case of a prefixed lexical QName used as the value (or as part of the value) of an attribute in the stylesheet, or appearing within an XPath expression in the stylesheet, it is a static error if the defining element has no namespace node whose name matches the prefix of the lexical QName.
[ERR XTDE0290] Where the result of evaluating an XPath expression (or an attribute value template) is required to be a lexical QName, or if it is permitted to be a lexical QName and the actual value takes the form of a lexical QName, then unless otherwise specified it is a dynamic error if the value has a prefix and the defining element has no namespace node whose name matches that prefix. This error may be raised as a static error if the value of the expression can be determined statically.
If the lexical QName has no prefix, then:
In the case of an unprefixed QName used as a NameTest
                              within an XPath expression (see
                                 5.2 Expressions), and in certain other contexts, the
                              namespace to be used in expanding the QName may be specified by means
                              of the [xsl:]xpath-default-namespace attribute, as
                              specified in 5.1.2 Unprefixed Lexical QNames in Expressions and Patterns.
If the name is in one of the following categories, then the default namespace of the defining element is used:
Where a QName is used to define the name of an element being
                                    constructed. This applies both to cases where the name is known
                                    statically (that is, the name of a literal result element) and
                                    to cases where it is computed dynamically (the value of the
                                       name attribute of the
                                       xsl:element instruction).
The default namespace is used when expanding the first argument
                                    of the function element-available.
The default namespace applies to any unqualified element names
                                    appearing in the cdata-section-elements
                                    or
                                          suppress-indentation attributes of
                                       xsl:output or
                                       xsl:result-document
                                 
In all other cases, a lexical
                                 QName with no prefix represents an expanded QName in no namespace
                              (that is, an xs:QName value in which both the prefix and
                              the namespace URI are absent).
The attribute [xsl:]xpath-default-namespace (see 3.4 Standard Attributes) 
                  may be used on an element in the stylesheet to define the 
                  namespace that will be used for an unprefixed element or type name within an XPath expression, and
                  in certain other contexts listed below.
The value of the attribute is either the namespace URI to be used, or a zero-length string,
                  or the value ##any.
For any element in the stylesheet, this attribute has an effective value, which is the value of 
                     the [xsl:]xpath-default-namespace on that element or on the innermost containing 
                     element that specifies such an attribute, or the zero-length string if no containing 
                     element specifies such an attribute.
For any element in the stylesheet, the effective value of the attribute determines the value of the default namespace for elements and typesXP in the static context of any XPath expression contained in an attribute or text node of that element (including XPath expressions in attribute value templates and text value templates). The effect of this is specified in [XPath 4.0]; in summary, it determines the namespace used for any unprefixed type name or element name.
The special value ##any only affects:
An unprefixed element name used in a 
                        NameTestXP, 
                        either within an XPath expression or a pattern.
                        Its effect is that an unprefixed name matches any element having the required local name,
                        irrespective of the namespace URI (or lack of it). A pattern such as match="title"
                        is therefore interpreted as a wildcard match match="*:title. The default priority
                        of such a pattern changes accordingly.
An unprefixed type name; the effect is to treat the name as
                     referring to a type whose namespace is http://www.w3.org/2001/XMLSchema.
Note:
To take an example, older versions of the internet index of RFCs (requests for comments)
                     use the namespace URI http://www.rfc-editor.org/rfc-index, while newer
                     versions use https://www.rfc-editor.org/rfc-index (note the change of URI scheme).
                     XSLT code that needs to work with either version can be simplified by setting the
                     default namespace to ##any: but be aware that this might lead to spurious matching
                     of names in an unrelated namespace.
Any other value of this attribute sets the default namespace for any of the following constructs appearing within its scope:
any unprefixed element name used in a pattern
any unprefixed element name used in the elements attribute of
                           the xsl:strip-space or xsl:preserve-space
                           instructions
any unprefixed element name used in the as
                           attribute of an XSLT element
                        
any unprefixed type name used in the type attribute of an 
                           XSLT element
                        
any unprefixed type name used in the xsl:type attribute of a 
                           literal result element.
                        
The [xsl:]xpath-default-namespace attribute must
                  be in the XSLT namespace if and only if
                  its parent element is not in the XSLT namespace.
If the effective value of the attribute is a zero-length string, which will be the case if it is explicitly set to a zero-length string or if it is not specified at all, then an unprefixed element name or type name refers to a name that is in no namespace. The default namespace of the parent element (see [XDM 4.0] section 7.5.2 Element nodes) is not used.
The attribute does not affect other names, for example function names, 
                     variable names, or template names, or strings that are interpreted 
                     as lexical QNames during stylesheet evaluation, such as the effective value 
                     of the name attribute of xsl:element or the string supplied as the first 
                     argument to the key function.
                  
Unprefixed function names are treated as names in the standard function namespace.
For other unprefixed names, for example variable
                     names, template names, mode names, or strings that are interpreted as lexical QNames during stylesheet evaluation,
                     such as the effective value of the
                     name attribute of xsl:element or the string
                     supplied as the first argument to the key function, any unprefixed
                  lexical QName is taken as being a no-namespace name.
[Definition: The XSLT namespace, together with certain other namespaces recognized by an XSLT processor, are classified as reserved namespaces and must be used only as specified in this and related specifications.] The reserved namespaces are those listed below.
Each of the reserved namespaces has a conventional
               prefix. As described in 3.7.1 The fixed-namespaces Attribute, the fixed-namespaces
               attribute may bind one of the reserved namespaces simply by referring to its conventional
               prefix. For example, fixed-namespaces="xs" has the effect of binding the prefix
               xs to the namespace http://www.w3.org/2001/XMLSchema.
The XSLT namespace described in
                        3.1.1 XSLT Namespace, is reserved, 
                        with conventional prefix xsl.
                        [Definition: The standard function
                              namespace
                           http://www.w3.org/2005/xpath-functions,
                           with conventional prefix fn,
                           is used for functions
                           in the function library defined in [Functions and Operators 4.0] and
                           for standard functions defined in this specification.]
                     
 The namespace
                           http://www.w3.org/2005/xpath-functions/math,
                        with conventional prefix math,
                        is used for
                        mathematical functions in the function library defined in [Functions and Operators 4.0]. 
 The namespace
                           http://www.w3.org/2005/xpath-functions/map,
                        with conventional prefix map,
                        is used for
                        functions defined in this specification relating to the manipulation of
                           maps. 
 The namespace
                           http://www.w3.org/2005/xpath-functions/array,
                        with conventional prefix array,
                        is reserved for
                        use as described in [Functions and Operators 4.0].
                        [Definition: The XML
                              namespace, defined in [Namespaces in XML] as
                              http://www.w3.org/XML/1998/namespace, is used for
                           attributes such as xml:lang, xml:space, and
                              xml:id.] 
                        This namespace is always bound to the prefix xml.
                     
[Definition: The schema
                              namespace
                           http://www.w3.org/2001/XMLSchema,
                        with conventional prefix xs,
                        is used as defined in
                              [XML Schema Part 1]]. In a stylesheet this namespace may be used to
                        refer to built-in schema datatypes and to the constructor functions
                        associated with those datatypes.
[Definition: The schema instance namespace
                           http://www.w3.org/2001/XMLSchema-instance,
                        with conventional prefix xsi,
                        is used as defined
                           in [XML Schema Part 1]]. Attributes in this namespace,
                        if they appear in a stylesheet, are
                        treated by the XSLT processor in the same way as any other attributes.
[Definition: The standard error namespace
                           http://www.w3.org/2005/xqt-errors,
                        with conventional prefix err,
                        is used for error codes
                           defined in this specification and related specifications. It is also used
                           for the names of certain predefined variables accessible within the scope
                           of an xsl:catch element.]
The namespace http://www.w3.org/2000/xmlns/ is reserved for use
                        as described in [Namespaces in XML]. No element or attribute node can
                        have a name in this namespace, and although the prefix xmlns is
                        implicitly bound to this namespace, no namespace node will ever define this
                        binding.
Note:
With the exception of the XML namespace, any of the above namespaces that are used in a stylesheet must be explicitly declared with a namespace declaration. Although conventional prefixes are used for these namespaces in this specification, any prefix may be used in a user stylesheet.
Reserved namespaces may be used without restriction to refer to the names of elements and attributes in source documents and result documents. As far as the XSLT processor is concerned, reserved namespaces other than the XSLT namespace may be used without restriction in the names of literal result elements and user-defined data elements, and in the names of attributes of literal result elements or of XSLT elements: but other processors may impose restrictions or attach special meaning to them. Reserved namespaces must not be used, however, in the names of stylesheet-defined objects such as variables and stylesheet functions, nor in the names of extension functions or extension instructions.
It is not an error to use a reserved namespace in the name of an 
                  extension attribute: 
                  attributes such as xml:space and xsi:type 
                  fall into this category. XSLT processors must not reject such attributes, 
                  and must not attach any meaning to them other than any meaning 
                  defined by the relevant specification.
                  [ERR XTSE0080] It is a static error to use a
                           reserved namespace in the
                        name of a named template, a
                           mode, an attribute set, a key, a
                           decimal-format, a variable or parameter, a stylesheet
                           function, a named output
                           definition, an accumulator, or a character map; except that the name
                              xsl:initial-template is permitted as a template
                           name.
               
Note:
The name xsl:original is used within xsl:override
                     to refer to a component that is being overridden. Although
                     the name xsl:original is used to refer to the component, the
                     component has its own name, and no component ever has the name
                        xsl:original. 
XSLT uses the expression language defined by XPath 4.0 [XPath 4.0]. Expressions are used in XSLT for a variety of purposes including:
selecting nodes for processing;
specifying conditions for different ways of processing a node;
generating text to be inserted in a result tree.
[Definition: Within this specification, the term XPath expression, or simply expression, means a string that matches the production ExprXP defined in [XPath 4.0].]
XPath expressions may occur:
As the value of certain attributes on XSLT-defined instructions (for example,
            the select attribute of the xsl:apply-templates instruction)
Within curly brackets in attribute value templates and text value templates.
As the content of a text node within an xsl:select instruction.
In the above cases, the static processing (compilation) of XPath expressions takes place at the same time as the static processing of the stylesheet itself, while evaluation of the XPath expressions takes place dynamically during stylesheet evaluation. There are also, however:
XPath expressions where both the static processing and dynamic evaluation of the XPath expression takes place during static processing of the stylesheet. These are referred to as static expressions, and they perform the same function as preprocessing directives in other languages.
XPath expressions that are dynamically constructed (as character strings): both the static processing and dynamic evaluation of these expressions occurs during stylesheet evaluation. See ???.
In general:
It is a static error if an XPath expression does not match the XPath production ExprXP, or if it fails to satisfy other static constraints defined in the XPath specification, for example that all variable references must refer to variables that are in scope. Error codes are defined in [XPath 4.0].
The transformation fails with a dynamic error if any XPath expression is evaluated and raises a dynamic error. Error codes are defined in [XPath 4.0].
The transformation fails with a type error if an XPath expression raises a type error, or if the result of evaluating the XPath expression is evaluated and raises a type error, or if the XPath processor raises a type error during static analysis of an expression. Error codes are defined in [XPath 4.0].
There are some exceptions to these rules, for example:
Static errors may be suppressed where forwards compatible behavior is enabled (see 3.10 Forwards Compatible Processing).
Dynamic errors evaluating a predicate within a pattern do not cause the transformation to fail, they merely cause the pattern not to match.
               [Definition: The context within a 
                  stylesheet where an XPath 
                  expression appears may specify the required
                     type of the expression. The required type indicates the type of the
                  value that the expression is expected to return.] If no required type is
               specified, the expression may return any value: in effect, the required type is then
                  item()*. 
               [Definition:  The term coercion rules 
                  means the coercion rules defined in [XPath 4.0], applied 
                  unless otherwise specified with XPath 1.0 
                  compatibility mode set to false.]
            
Note:
In earlier versions of this specification, the coercion rules were referred to as the function conversion rules.
Note:
 These are the rules defined in [XPath 4.0] for converting the
                  supplied argument of a function call to the required type of that argument, as
                  defined in the function signature. The same rules are used in XSLT for converting
                  the value of a variable to the declared type of the variable, or the result of
                  evaluating a function or template body to the declared type of the function or
                  template. They are also used when parameters are supplied to a template using
                     xsl:with-param. In all such cases, the rules that apply are
                  the XPath 4.0 rules without XPath 1.0 compatibility mode. The rules with XPath 1.0
                  compatibility mode set to true are used only for XPath function calls, and for the
                  operands of certain XPath operators. 
This specification also invokes the XPath
               coercion rules to
               convert the result of evaluating an XSLT sequence constructor to a required type (for example, the sequence
               constructor enclosed in an xsl:variable,
                  xsl:template, or xsl:function element).
Any dynamic error or type error that occurs when applying the coercion rules to convert a value to a required type results in the transformation failing, in the same way as if the error had occurred while evaluating an expression.
Note:
Note the distinction between the two kinds of error that may occur. Attempting to
                  convert an integer to a date is a type error, because such a conversion is never
                  possible. Type errors can be raised statically if they can be detected
                  statically, whether or not the construct in question is ever evaluated. Attempting
                  to convert the xs:untypedAtomic item 
                  2003-02-29 to a date is a dynamic error rather
                  than a type error, because the problem is with this particular value, not with its
                  type. Dynamic errors are raised only if the instructions or expressions that
                  cause them are actually evaluated. 
The XPath specification states (see [XPath 4.0] section A.3.3 End-of-Line Handling) that the host language must specify whether the XPath processor normalizes all line breaks on input, before parsing, and if it does so, whether it uses the rules of [XML 1.0] or [XML 1.1]. In the case of XSLT, all handling of line breaks is the responsibility of the XML parser (which may support either XML 1.0 or XML 1.1); the XSLT and XPath processors perform no further changes.
Note:
Most XPath expressions in a stylesheet appear within
                  XML attributes. They are therefore subject to XML line-ending normalization (for
                  example, a CRLF sequence is normalized to LF) and also to XML attribute-value
                  normalization, which replaces tabs and newlines by spaces. Normalization of whitespace can be
                  prevented by using character references such as 	.
XPath expressions appearing in text nodes, (specifically, in text value templates
                  — see 5.6.2 Text Value Templates,  
                  or in the xsl:select instruction) 
                  are subject to line-ending normalization but not
                  attribute-value normalization.
In both cases it is unwise to include the characters U+0009 (TAB) ,
               U+000A (NEWLINE) , and U+000D (CARRIAGE RETURN) , as literal characters within string literals.
               Instead they should be escaped as 	, 
,
               and 
 respectively, or constructed dynamically by a call on 
               the char function. This can be conveniently embedded
               within a string template delimited by backticks: for example `Width:{char(9)}8mm`.
               (The advantage of using this form in preference to XML character references is that
               they are more likely to survive when the stylesheet is processed using tools such as XML editors.)
XPath defines the concept of an expression contextXP which contains all the information that can affect the result of evaluating an expression. The expression context has two parts, the static contextXP, and the dynamic contextXP. The components that make up the expression context are defined in the XPath specification (see [XPath 4.0] section 2.2 Expression Context). This section describes the way in which these components are initialized when an XPath expression is contained within an XSLT stylesheet.
               This section does not apply to static expressions 
               (whose context is defined in 9.7 Static Expressions), nor to XPath expressions 
               evaluated using xsl:evaluate (whose context is defined in 
               10.5.2 Dynamic context for the target expression).
            
As well as providing values for the static and dynamic context components defined in
               the XPath specification, XSLT defines additional context components of its own. These
               context components are used by XSLT instructions (for example,
                  xsl:next-match and xsl:apply-imports), and also
               by the functions in the extended function library described in this
               specification.
The following four sections describe:
5.3.1 Initializing the Static Context
5.3.2 Additional Static Context Components used by XSLT
5.3.3 Initializing the Dynamic Context
5.3.4 Additional Dynamic Context Components used by XSLT
The static contextXP of an XPath expression appearing in an XSLT stylesheet is initialized as follows. In these rules, the term containing element means the element within the stylesheet that is the parent of the attribute or text node whose value contains the XPath expression in question, and the term enclosing element means the containing element or any of its ancestors.
                        XPath 1.0 compatibility mode
                        is set to true if and only if the containing element is processed with
                           XSLT 1.0 behavior (see
                           3.9 Backwards Compatible Processing).
The statically known namespacesXP are the applicable static namespaces for the containing element.
The default namespace for elements and typesXP is determined as described in 5.1.2.1 Unprefixed Element Names.
The default function namespaceXP is
                        http://www.w3.org/2005/xpath-functions (and cannot be changed).
The in-scope schema definitionsXP for the XPath expression are the same as the in-scope schema components for the stylesheet, and are as specified in 3.14 Built-in Types.
The in-scope variablesXP are defined by the variable binding elements that are in scope for the containing element (see 9 Variables and Parameters).
The statically known function definitionsXP are:
The functions defined in [Functions and Operators 4.0] in
                              namespaces http://www.w3.org/2005/xpath-functions and
                                 http://www.w3.org/2005/xpath-functions/math;
The functions defined in this specification in namespaces
                                 http://www.w3.org/2005/xpath-functions and
                                 http://www.w3.org/2005/xpath-functions/map;
Constructor functions for all the simple types in the in-scope schema definitionsXP, including both built-in types and user-defined types;
The stylesheet functions defined in the containing package;
Stylesheet functions defined in used packages, subject to visibility: see 3.5.2 Dependencies between Packages;
any extension functions bound using implementation-defined mechanisms (see 24 Extensibility and Fallback).
Note:
The term extension function includes both vendor-supplied and user-written extension functions.
Note:
It follows from the above that a conformant XSLT processor must implement the entire library of functions defined in [Functions and Operators 4.0] as well as those defined in this specification.
The statically known collationsXP are implementation-defined, except that they must always include (a) the Unicode codepoint collation, defined in [Functions and Operators 4.0] section 5.3 Comparison of strings, and (b) the family of UCA collations described in [Functions and Operators 4.0] section 5.3.4 The Unicode Collation Algorithm.
Static base URI: In a conventional interpreted environment, the static base URI of an expression in the stylesheet is the base URI of the containing element in the stylesheet. The concept of the base URI of a node is defined in [XDM 4.0] section 7.6.2 base-uri Accessor.
When stylesheets are executed in an environment where no source code is present
                        (for example, because the code of the stylesheet has been compiled and is distributed 
                        as executable object code), it is recommended (subject to operational
                        constraints such as security) that the static base URI used during stylesheet evaluation
                        should be the location from which the stylesheet was loaded for execution 
                        (its “deployed location”). This means, for example, that when the doc
                        or document functions are called with a relative URI, the required document
                        is by default located relative to the deployed location of the stylesheet.
                     
Whether or not the stylesheet is executed directly from source code,
                     it is possible that no static base URI is available, for example because the code was supplied
                     as an anonymous input stream, or because security policies are set to prevent executable code discovering
                     the location from which it was loaded. If the static base URI is not known, the static-base-uri
                     function returns an empty sequence, and other operations that depend on the static base URI may fail with
                     a dynamic error.
The set of statically
                           known decimal formatsXP is the set of decimal formats defined by
                           xsl:decimal-format declarations in the stylesheet. 
Some of the components of the XPath static context are used also by XSLT elements. For example, the
                     xsl:sort element makes use of the collations defined in the
                  static context, and attributes such as type and as may
                  reference types defined in the in-scope schema components.
Many top-level declarations in a stylesheet, and attributes on the
                     xsl:stylesheet element, affect the behavior of instructions
                  within the stylesheet. Each of these constructs is described in its appropriate
                  place in this specification.
A number of these constructs are of particular significance because they are used by functions defined in XSLT, which are added to the library of functions available for use in XPath expressions within the stylesheet. These are:
The set of named keys, used by the key function
The set of named character maps, used by the character-map function
The values of system properties, used by the
                           system-property function
The set of available instructions, used by the
                           element-available function
The default mode, used by the
                     apply-templates function
Note:
If these functions are called within a static expression, the results will reflect the capabilities and configuration of the processor used to perform static analysis, while if they are called elsewhere, the results should reflect the capabilities and configuration of the processor used to perform dynamic evaluation, which might give a different result. These calls should not be pre-evaluated at compile time unless it is known that this will give the same result.
For convenience, the dynamic context is described in two parts: the focus, which represents the place in the source document that is currently being processed, and a collection of additional context variables.
A number of functions specified in [Functions and Operators 4.0] are defined
                  to be deterministicFO,
                  meaning that if they are called twice during the same execution scopeFO, with the same arguments, then
                  they return the same results (see [Functions and Operators 4.0] section 1.9 Terminology). In
                  XSLT, the execution of a stylesheet defines the execution scope. This means, for
                  example, that if the function current-dateTime is called
                  repeatedly during a transformation, it produces the same result each time. By
                  implication, the components of the dynamic context on which these functions depend
                  are also stable for the duration of the transformation. Specifically, the
                  following components defined in [XPath 4.0] section 2.2.2 Dynamic Context must be
                  stable: function implementations, current dateTime,
                     implicit timezone, available documents,
                     available collections, and default collection. The
                  values of global variables and stylesheet parameters are also stable for the
                  duration of a transformation. The focus is not stable; the additional
                  dynamic context components defined in 5.3.4 Additional Dynamic Context Components used by XSLT
                  are also not stable.
As specified in [Functions and Operators 4.0], implementations may provide
                  user options that relax the requirement for the doc and
                     collection functions (and therefore, by implication, the
                     document function) to return stable results. By default,
                  however, the functions must be stable. The manner in which such user options are
                  provided, if at all, is implementation-defined.
XPath expressions contained in [xsl:]use-when attributes are not
                  considered to be evaluated “during the transformation” as defined above. For
                  details see 3.13.3 Conditional Element Inclusion.
[Definition: A component of the context that has no value is said to be absent.] This is a distinguishable state, and is not the same as having the empty sequence as its value.
[Definition: When a sequence constructor is evaluated, the processor keeps track of which items are being processed by means of a set of implicit variables referred to collectively as the focus.] More specifically, the focus consists of the following three values:
[Definition: The context
                                 item is the item currently being processed. An item (see
                                 [XDM 4.0]) is either an atomic item (such
                              as an integer, date, or string), a node, or
                                 a function item. It changes whenever instructions such as
                                 xsl:apply-templates and
                                 xsl:for-each are used to process a sequence of
                              items; each item in such a sequence becomes the context item while
                              that item is being processed.] The context item is returned
                           by the XPath expression
                           . (dot).
Note:
Although XPath 4.0 allows the context value to be an arbitrary sequence, at the interface between XSLT 4.0 and XPath 4.0 it is always either a single item, or absent. XSLT 4.0 therefore continues to use the term context item rather than context valueXP.
[Definition: The
                                 context position is the position of the context item
                              within the sequence of items currently being processed. It changes
                              whenever the context item changes. When an instruction such as
                                 xsl:apply-templates or
                                 xsl:for-each is used to process a sequence of
                              items, the first item in the sequence is processed with a context
                              position of 1, the second item with a context position of 2, and so
                              on.] The context position is returned by the XPath expression
                           position().
[Definition: The context
                                 size is the number of items in the sequence of items
                              currently being processed. It changes whenever instructions such as
                                 xsl:apply-templates and
                                 xsl:for-each are used to process a sequence of
                              items; during the processing of each one of those items, the context
                              size is set to the count of the number of items in the sequence (or
                              equivalently, the position of the last item in the
                              sequence).] The context size is returned by the XPath
                              expression
                           last().
                     [Definition: If the context item is a node (as distinct from
                        an atomic item such as an integer), then it is also referred to as the
                           context node. The context node is not an independent
                        variable, it changes whenever the context item changes. When the context
                        item is an atomic item or a function
                           item, there is no context node.] The context node is
                     returned by the XPath expression
                     self::node(), and it is used as the starting node for all relative
                     path expressions.
Where the containing element of an XPath expression is an instruction or a literal result element, the initial context item, context position, and context size for the XPath expression are the same as the context item, context position, and context size for the evaluation of the containing instruction or literal result element.
The context valueXP for evaluating global variables declared in the top-level package is set to the global context item supplied when the transformation is invoked (see 2.3 Initiating a Transformation). For global variables declared in a library package, the context value is absent.
For an XPath expression contained in a value template, the initial context item, context position, and context size for the XPath expression are the same as the context item, context position, and context size for the evaluation of the containing sequence constructor.
In other cases (for example, where the containing element is
                        xsl:sort, xsl:with-param, or
                        xsl:key), the rules are given in the specification of the
                     containing element.
The current function can be used within any XPath expression to select the item that was
                     supplied as the context item to the XPath expression by the XSLT processor.
                     Unlike . (dot) this is unaffected by changes to the context item
                     that occur within the XPath expression. The current
                     function is described in 20.5.1 fn:current.
On completion of an instruction that changes the focus (such as xsl:apply-templates or
                        xsl:for-each), the focus reverts to its previous value.
When a stylesheet function is called, the focus within the body of the function is initially absent.
When the focus is absent, evaluation of any expression that references the context item, context position, or context size results in a type error [ERR XPDY0002] XP40
The description above gives an outline of the way the focus works. Detailed rules for the effect of each instruction are given separately with the description of that instruction. In the absence of specific rules, an instruction uses the same focus as its parent instruction.
[Definition: A singleton focus based on an item J has the context item (and therefore the context node, if J is a node) set to J, and the context position and context size both set to 1 (one).]
The previous section explained how the focus for an XPath expression appearing in an XSLT stylesheet is initialized. This section explains how the other components of the dynamic contextXP of an XPath expression are initialized.
The dynamic variablesXP are the current values of the in-scope variable binding elements.
The dynamically known function definitionsXP
                        (representing the functions accessible using function-available or function-lookup)
                           include all the functions available in the static context, and may also include an additional 
                           implementation-defined set of functions that are available dynamically but not statically.
                        
Note:
This set therefore includes some functions that are not available for
                        dynamic calling using xsl:evaluate, for example stylesheet functions
                        whose visibility is private, and XSLT-defined functions such as current and key.
Note:
The rule that all functions present in the static context must always be present in 
                           the dynamic context is a consistency constraint. The effect of violating a consistency constraint is 
                           implementation-defined: it does not necessarily lead to an error. 
                           For example, if the version of a used package that is available
                           at evaluation time does not include all public user-defined functions that were available in the version that was
                           used at analysis time, then a processor may recover by raising an error only if the function
                           is actually called. Conversely, if the evaluation-time version of the package includes additional public functions, these may
                        be included in the dynamic context even though they were absent from the static context. 
                        Dynamic calling of functions using function-lookup
                        may therefore be an effective strategy for coping with variations between versions of a library package on which a stylesheet
                        depends.
The default
                           collationXP is defined by the value of the
                           [xsl:]default-collation attribute on the innermost enclosing
                           element that has such an attribute. For details, see 3.7.2 The default-collation Attribute.
                           [Definition: In this
                              specification the term default collation means the collation
                              that is used by XPath operators such as eq and
                              lt appearing in XPath expressions within the
                              stylesheet.]
                        
This collation is also used by default when comparing strings in the
                           evaluation of the xsl:key and
                           xsl:for-each-group elements. This may
                           also (but need not necessarily) be the same as the default collation used
                           for xsl:sort elements within the stylesheet. Collations
                           used by xsl:sort are described in 13.1.3 Sorting Using Collations.
Note:
The default collation is usually known
                        statically. One notable exception is when the function call default-collation()
                        appears in the initializing expression of an optional xsl:function parameter,
                           for example:
<xsl:function name="f:myfunc"> <xsl:param name="collation" required="no" select="default-collation()"/> </xsl:function>
In this situation the call on default-collation() returns the default
                              collation from the context of the function call, which may differ from the default
                              collation of the function declaration.
                        
The available
                              documentsXP are defined as part of the XPath 3.0 dynamic context to support the
                              doc function, but this component is also
                           referenced by the similar XSLT document function:
                           see 20.1 fn:document. This variable defines a mapping
                           between URIs passed to the doc or
                              document function and the document nodes that are
                           returned.
The mapping from URIs to document nodes is
                           affected by xsl:strip-space declarations and by the
                              input-type-annotations attribute, and may therefore vary
                           from one package to another.
Note:
Defining this as part of the evaluation context is a formal way of specifying that the way in which URIs get turned into document nodes is outside the control of the language specification, and depends entirely on the run-time environment in which the transformation takes place.
The XSLT-defined document function allows the use of
                           URI references containing fragment identifiers. The interpretation of a
                           fragment identifier depends on the media type of the resource
                           representation. Therefore, the information supplied in 
                           available documentsXP for
                           XSLT processing must provide not only a mapping from URIs to document
                           nodes as required by XPath, but also a mapping from URIs to media
                           types.
All other aspects of the dynamic context (for example, the current date and time, the implicit timezone, the default language, calendar, and place, the available documents, text resources, and collections, and the default collection) are implementation-defined, and do not change in the course of a single transformation, except to the extent that they may be different from one package to another.
In addition to the values that make up the focus, an XSLT processor maintains a number of other dynamic context components that reflect aspects of the evaluation context. These components are fully described in the sections of the specification that maintain and use them. They are:
The current template rule,
                        which is the template rule most
                        recently invoked by an xsl:apply-templates,
                           xsl:apply-imports, or xsl:next-match
                        instruction: see 6.9 Overriding Template Rules; 
The current mode, which is the
                           mode set by the most recent call of
                           xsl:apply-templates (for a full definition see 6.7 Modes);
The current group and current grouping key, which
                        provide information about the collection of items currently being processed
                        by an xsl:for-each-group
                        
                        instruction: see 14.2.1 fn:current-group and 14.2.2 fn:current-grouping-key;
Note:
In XSLT 3.0 the initial value of these two properties is “absent”, which means that any reference to their values causes a dynamic error. Previously, the initial value was an empty sequence.
The current merge group and current merge key, which provide information about the
                        collection of items currently being processed by an
                           xsl:merge instruction.
The current captured
                           substrings: this is a sequence of strings, which is maintained
                        when a string is matched against a regular expression using the
                           xsl:analyze-string instruction, and which is accessible
                        using the regex-group function: see 17.2 fn:regex-group.
The output state: this is a flag
                        whose two possible values are final
                           output state and temporary output state.  The initial setting when the stylesheet is invoked by executing a
                           template is final output
                           state, and it is switched to temporary output state by
                        instructions such as xsl:variable. For more details, see
                           25.2 Restrictions on the use of xsl:result-document.
The current output URI: this
                        is the URI associated with the result tree to which instructions are
                        currently writing. The current output URI is initially the same as the
                           base output URI. During the evaluation of an
                           xsl:result-document instruction, the current output URI
                        is set to the absolute URI identified by the href attribute of
                        that instruction.
The following non-normative table summarizes the initial state of each of the components in the evaluation context, and the instructions which cause the state of the component to change.
[Definition: The initial setting of a component of the dynamic context is used
                     when evaluating global variables
                     and stylesheet parameters,
                     when evaluating the use and match attributes of
                        xsl:key, and when evaluating the initial-value of
                        xsl:accumulator and the select expressions or
                     contained sequence constructors of
                     xsl:accumulator-rule].
[Definition: The term non-contextual function
                        call is used to refer to function calls that do not pass the dynamic
                     context to the called function. This includes all calls on stylesheet functions and all
                        dynamic function
                        callsXP, (that is calls to function items). It excludes calls to some
                        functions in the namespace
                           http://www.w3.org/2005/xpath-functions, in
                     particular those that explicitly depend on the context, such as the
                        current-group and regex-group
                     functions. It is implementation-defined whether, and under what circumstances,
                     calls to extension functions are
                     non-contextual.]
Named function references (such as position#0) and
                  calls on function-lookup (for example,
                     function-lookup("position", 0)) are defined to retain the XPath
                  static and dynamic context at the point of invocation as part of the closure of
                  the resulting function item, and to use this preserved context when a dynamic
                  function call is subsequently made using the function item. This rule does not
                  extend to the XSLT extensions to the dynamic context defined in this section. If a
                  dynamic function call is made that depends on the XSLT part of the dynamic context
                  (for example, regex-group#1(2)), then the relevant components of the
                  context are cleared as described in the table above. 
XSLT 4.0 introduces two new and closely-related constructs allowing item types to be given names, and to be referred to by name anywhere that item types are used, for example in function declarations and variable declarations.
The xsl:item-type declaration allows any item type to be given
            a name. It is particularly useful to avoid repetitive use of the same choice types,
            enumeration types, or function types, and means that if the definition changes, the change only
            needs to be made in one place.
The xsl:record-type declaration takes this a step further.
            Like xsl:item-type, it allows a name to be given to any
            record type. In addition, though, it offers two further capabilities:
Named record types can be recursive, allowing definitions of recursive data structures such as lists and trees.
Declaring a named record type automatically establishes a constructor function for records of that type; the constructor function has the same name as the record type itself.
                     Named item types can be declared using the new xsl:item-type
                     element. This is designed to avoid repeating lengthy type definitions (for example
                     function types) every time they are used. [This feature was
                     present in the editor's draft presented to the WG when it started work.]
                    [  1 January 2022]
<!-- Category: declaration -->
<xsl:item-type
  name = eqname
  as? = item-type〔'item()*'〕
  visibility? = "private" | "public"〔'private'〕 />
An xsl:item-type declaration associates a name with an item type, and allows the type
               to be referenced by name throughout the stylesheet package.
The following example declares a named item type for colors, and uses it in three variable declarations and a function declaration.
<xsl:item-type name="my:color" as="enum('red', 'green', 'blue')"/> <xsl:variable name="RED" as="my:color" select="'red'"/> <xsl:variable name="GREEN" as="my:color" select="'green'"/> <xsl:variable name="BLUE" as="my:color" select="'blue'"/> <xsl:function name="my:html-color" as="xs:string"> <xsl:param name="color" as="my:color"/> <xsl:switch select="$color"> <xsl:when test="$RED">#FF0000</xsl:when> <xsl:when test="$GREEN">#008000</xsl:when> <xsl:when test="$BLUE">#0000FF</xsl:when> </xsl:switch> </xsl:function>
The following example declares a named choice type for the two binary
                     types xs:hexBinary and xs:base64Binary
                     and uses it in a function declaration that compares two such values
                     for equality.
<xsl:item-type name="my:binary" as="(xs:hexBinary | xs:base64Binary)"/> <xsl:function name="my:binary-equal" as="xs:boolean"> <xsl:param name="x" as="my:binary"/> <xsl:param name="y" as="my:binary"/> <xsl:sequence select="$x eq $y"/> </xsl:function>
Using named item types makes the stylesheet more readable, and improves potential for change: a change
               to the set of colors allowed by the type my:color is less likely to affect users of a function
               library. However, named item types do not provide true encapsulation or information hiding; users of the 
               function library can still treat enumeration values as simple strings if they wish.
The xsl:item-type declaration adds an entry to the 
                  in-scope named item typesXP
               component of the static context for XPath expressions, and also becomes available for use wherever
               XSLT allows an ItemType to appear.
The scope of a named item type is the package in which it is declared. If it
               is declared with visibility="public" then it also becomes available for use in using
               packages. (Since there is no mechanism for the using package to override the definition,
               public effectively means final.)
A named item type is essentially an abbreviation for the item type designator appearing in the
               as attribute, and the semantics can be defined in terms of textual replacement
               of the name by its definition. In consequence, named item types cannot be recursive, since
               this would make the textual expansion non-terminating.
The name of the item type is the expanded name formed by resolving the name attribute.
               A lexical QName with no prefix is treated as being in the 
               default namespace for elements and typesXP.
If two xsl:item-type declarations in a package have the same
               name, then the one with higher import precedence is used. 
[ERR XTSE4030] It is a static error if a package contains two 
                     xsl:item-type or xsl:record-type
                     declarations having the same name and the same import
                        precedence, unless there is another definition with the same
                     name and higher import precedence. It is also a static error if the name
                  of the item type uses a reserved namespace, or if it has the same
                  name as a type in the in-scope schema typesXP of
                  the static context.
[ERR XTSE4035] It is a static error for an item type named
                     N to contain in its as attribute a reference to N,
                     or to an item type that references N directly or indirectly.
It is permissible to use a private named item type in the declaration of a public variable, function, or template. A package that uses (or overrides) such a component will not be able to use the type name, but it can use the underlying type definition, or provide its own declaration of the relevant item type, using the same name or a different name.
<!-- Category: declaration -->
<xsl:record-type
  name = eqname
  constructor? = boolean〔'no'〕
  extensible? = boolean〔'no'〕
  visibility? = "private" | "public"〔'private'〕 >
  <!-- Content: (xsl:field*) -->
</xsl:record-type>
<xsl:field
  name = ncname
  as? = sequence-type〔'item()*'〕
  required? = boolean〔'yes'〕
  default? = expression />
An xsl:record-type declaration associates a name 
                  with a record type, and allows the record type
                  to be referenced by name throughout the stylesheet package.
The following example declares a named record type for complex numbers, and uses it in a variable declaration and a function declaration.
<xsl:record-type name="cx:complex"> <xsl:field name="r" as="xs:double"/> <xsl:field name="i" as="xs:double"/> </xsl:record-type> <xsl:variable name="i" as="cx:complex" select="cx:complex(0, 1)"/> <xsl:function name="cx:add" as="cx:complex"> <xsl:param name="x" as="cx:complex"/> <xsl:param name="y" as="cx:complex"/> <xsl:sequence select="cx:complex($x?r + $y?r, $x?i + $y?i)"/> </xsl:function>
Note how the record type declaration has implicitly declared a constructor function
                     cx:complex that can be used to create instances of the item type.
[ERR XTSE4050] It is a static error 
                     if the names of the fields in an xsl:record-type
                     declaration are not distinct.
[ERR XTSE4051] It is a static error 
                     if an xsl:field element has a default
                     attribute unless it specifies required="no".
An xsl:record-type declaration has two effects:
In the same way as xsl:item-type, it defines
                  a named item type in the static context, allowing the record type to
                  be referenced by name anywhere an ItemType can appear,
                  for example in the declarations of functions and variables. Unlike
                  types declared in xsl:item-type, however,
                  named record types can be recursive.
An xsl:record-type declaration also
                  implicitly defines a constructor function, of the same name,
                  and adds this to the set of 
                  statically known function definitionsXP
                  in the static context.
Because of its dual role, the name of an xsl:record-type
               declaration must be valid both as an item type name and as a function name.
               This means the name must be distinct from other type names and function names
               in the static context. It also means that the name must be in a namespace.
Considered as an item type, the xsl:record-type
               declaration is equivalent to an xsl:item-type declaration
               formed by the following template rule, evaluated in the context of 
               a namespace alias <xsl:namespace-alias stylesheet-prefix="t"
               result-prefix="xsl"/>:
<xsl:template match="xsl:record-type" expand-text="yes"> <t:item-type name="{@name}" visibility="{@visibility otherwise 'private'}"> <xsl:attribute name="as"> <xsl:text>record(</xsl:text> <xsl:for-each select="xsl:field" separator=", "> <xsl:variable name="optional" as="xs:boolean" select="normalize-space(@required) = ('no','false','0')"/> {@name}{'?'[$optional]} as {@as otherwise 'item()*'} </xsl:for-each> <xsl:if test="normalize-space(@extensible) = ('yes','true','1')"> <xsl:text>, *</xsl:text> </xsl:if> <xsl:text>)</xsl:text> </xsl:attribute> </t:item-type> </xsl:template>
This generated xsl:item-type declaration must
               meet all the constraints placed on user-written 
               xsl:item-type declarations, including the rule
               requiring names to be unique, but not including the rule
               disallowing recursive references.
For example, the declaration:
<xsl:record-type name="cx:complex" extensible="yes"> <xsl:field name="r" as="xs:double"/> <xsl:field name="i" as="xs:double" required="no" default="0"/> </xsl:record-type>
produces the equivalent item type declaration:
<xsl:item-type name="cx:complex" as="record(r as xs:double, i? as xs:double, *)"/>
Considered as a function declaration, an xsl:record-type
               declaration is equivalent to an xsl:function declaration
               formed by the following template rule, evaluated in the context of 
               a namespace alias <xsl:namespace-alias stylesheet-prefix="t"
               result-prefix="xsl"/>:
<xsl:template match="xsl:record-type"> <t:function name="{@name}" as="{@name}" visibility="{(@visibility otherwise 'private')}"> <!-- if the record type is extensible, choose a name for the options parameter --> <xsl:variable name="options-param" as="xs:string?"> <xsl:if test="normalize-space(@extensible) = ('yes', 'true', 'a')" then="('options', (1 to count(xsl:field)) ! `options{.}`) [not(. = current()/xsl:field/@name)][1]"/> </xsl:variable> <!-- declare the parameters --> <xsl:for-each select="xsl:field"> <t:param name="{@name}" required="{@required otherwise 'yes'}"> <xsl:attribute name="as"> <xsl:variable name="as" select="normalize-space(@as otherwise 'item()*')"/> <xsl:variable name="optional" select="normalize-space(@required) = ('no', 'false', '0')"/> <xsl:choose> <xsl:when test="not($optional)" select="$as"/> <!-- for optional fields, amend the required type to allow () --> <xsl:when test="matches($as, '[?*]$')" select="$as"/> <xsl:when test="matches($as, '\+$')" select="replace($as, '\+$', '*')"/> <xsl:otherwise select="$as || '?'"/> </xsl:choose> </xsl:attribute> <xsl:if test="@default"> <xsl:attribute name="select" select="@default"/> </xsl:if> </t:param> </xsl:for-each> <!-- for an extensible record type, declare the options parameter --> <xsl:if test="exists($options-param)"> <t:param name="{$options-param}" as="map(*)" required="no" select="{}"/> </xsl:if> <!-- function body: construct a map --> <t:map duplicates="fn($first, $second){{$first}}"> <xsl:for-each select="xsl:field"> <xsl:variable name="optional" select="normalize-space(@required) = ('no', 'false', '0')"/> <xsl:choose> <xsl:when test="$optional and not(@default)"> <!-- omit map entries for optional fields if no value is supplied --> <t:if test="exists(${@name})"> <t:map-entry key="'{@name}'" select="${@name}"/> </t:if> </xsl:when> <xsl:otherwise> <t:map-entry key="'{@name}'" select="${@name}"/> </xsl:otherwise> </xsl:choose> </xsl:for-each> <!-- if the record type is extensible, add entries from the options parameter --> <xsl:if test="exists($options-param)"> <t:sequence select="${$options-param}"/> </xsl:if> </t:map> </t:function> </xsl:template>
For example, the declaration:
<xsl:record-type name="cx:complex"> <xsl:field name="r" as="xs:double"/> <xsl:field name="i" as="xs:double" required="no" default="0"/> </xsl:record-type>
produces the equivalent function declaration:
<xsl:function name="cx:complex" as="cx:complex" visibility="private"> <xsl:param name="r" as="xs:double"/> <xsl:param name="i" as="xs:double" required="no" select="0"/> <xsl:map> <xsl:map-entry key="'r'" select="$r"/> <xsl:map-entry key="'i'" select="$i"/> </xsl:map> </xsl:function>
No entry is generated in the constructed map for a field that is declared as optional with no default. So the declaration:
<xsl:record-type name="cx:complex" visibility="public"> <xsl:field name="r" as="xs:double"/> <xsl:field name="i" as="xs:double" required="no"/> </xsl:record-type>
produces the equivalent function declaration:
<xsl:function name="cx:complex" as="cx:complex" visibility="public"> <xsl:param name="r" as="xs:double"/> <xsl:param name="i" as="xs:double?" required="no"/> <xsl:map> <xsl:map-entry key="'r'" select="$r"/> <xsl:if test="exists($i)"> <xsl:map-entry key="'i'" select="$i"/> </xsl:if> </xsl:map> </xsl:function>
If the record type is extensible, the generated function
                  includes an optional options parameter So the declaration:
<xsl:record-type name="cx:complex" extensible="yes"> <xsl:field name="r" as="xs:double"/> <xsl:field name="i" as="xs:double"/> </xsl:record-type>
produces the equivalent function declaration:
<xsl:function name="cx:complex" as="cx:complex" visibility="private"> <xsl:param name="r" as="xs:double"/> <xsl:param name="i" as="xs:double"/> <xsl:param name="options" as="map(*)" required="no" default="{}"/> <xsl:map duplicates="fn($first, $second){$first}"> <xsl:map-entry key="'r'" select="$r"/> <xsl:map-entry key="'i'" select="$i"/> <xsl:sequence select="$options"/> </xsl:map> </xsl:function>
This generated xsl:function declaration must
               meet all the constraints placed on user-written 
               xsl:function declarations, including the rule
               requiring the combination of name and arity to be unique.
The generated xsl:function declaration has the
               import precedence associated with the stylesheet module in which the
               xsl:record-type declaration appears, and it may be
               overridden by another xsl:function declaration with
               higher import precedence. If the visibility is public
               then it can also be overridden using xsl:override
               in another package.
The scope of a named record type is the package in which it is declared. If it
               is declared with visibility="public" then it also becomes available for use in using
               packages. 
The name of the record type is the expanded name formed by resolving the name attribute.
               Because function names are always in a namespace, the name must be prefixed.
If two xsl:record-type declarations in a package have the same
               name, then the one with higher import precedence is used. 
A record type declaration may refer directly or indirectly to itself if it satisfies the conditions defined in [XPath 4.0] section 3.2.8.3.1 Recursive Record Types. This allows types to be declared that match recursive data structures such as linked lists and trees.
A named record type with visibility private may be used in the definition of a 
                  component (such as a variable, a function, a template, or another named record 
                  type) that is itself public. Another package may reference such a component 
                  even though it cannot reference the types used in its definition. The fact that the
                  record type is private, however, means that it is impossible to
                  override a variable or function that references the record type.
This example illustrates the definition of a recursive record type.
                  The record type represents a node of a binary tree containing a payload value
                  in each node, together with optional references to left and right subtrees.
                  As well as the data fields, the record type defines a depth function 
                  that returns the maximum depth of the tree, by making recursive calls on its
                  subtrees.
<xsl:record-type name="my:binary-tree"> <xsl:field name="left" as="my:binary-tree?"/> <xsl:field name="payload" as="item()*"/> <xsl:field name="right" as="my:binary-tree?"/> <xsl:field name="depth" as="fn(my:binary-tree) as xs:integer" default="fn {1 + max((?left =?> depth(), ?right =?> depth())) otherwise 0)}"/> </xsl:record-type>
Method calls (using the operator =?>) are described in
                     [XPath 4.0] section 4.14.4 Method Calls. The effect is to
                     give a function item contained in a map access to the containing
                     map.
                  They thus mimic method invocation in object-oriented languages, though
                  there is no inheritance or encapsulation.
The following code builds a simple tree and calculates its depth:
let $tree := my:binary-tree(
               my:binary-tree((), 17, ()),
               18,
               my:binary-tree((), 19, 
                 my:binary-tree((), 20, ())))
return $tree =?> depth()
                     Returning the result 3.
A more detailed example that uses a recursive named record type appears in the following section.
This example demonstrates a library package that provides a new data type to manipulate sets of atomic items.
A stylesheet that incorporates this package (by referencing
               it in an xsl:use-package declaration) can use constructs such as:
<xsl:variable name="empty" as="set:atomic-set" select="set:build(())"/>
<xsl:variable name="evens" as="set:atomic-set" select="set:build((1 to 100)[. mod 2 = 0])"/>
<xsl:variable name="odds" as="set:atomic-set" select="set:build((1 to 100)) ? except($evens)"/>
<xsl:function name="my:is-even" as="xs:boolean"> <xsl:param name="n" as="xs:integer"/> <xsl:sequence select="$evens ? contains($n)"/> </xsl:function>
Here is the implementation of the package.
<xsl:package name="http://qt4cg.org/atomic-set" package-version="1.0.0" xmlns:set="http://qt4cg.org/atomic-set" xmlns:map="http://www.w3.org/2005/xpath-functions/map" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xsl:note> This package defines a type set:atomic-set which represents a set of distinct atomic items. Atomic items are considered distinct based on the comparison function fn:atomic-equal. An instance of an atomic set can be constructed using a function call such as set:build((1, 3, 5, 7, 9)). If $A and $B are instances of set:atomic-set, then they can be manipulated using methods including: $A =?> size() - returns the number of items in the set $A =?> empty() - returns true if the set is empty $A =?> contains($k) - determines whether $k is a member of the set $A =?> contains-all($B) - returns true if $B is a subset of $A $A =?> values() - returns the items in $A, as a sequence $A =?> add($k) - returns a new atomic set containing an additional item $A =?> remove($k) - returns a new atomic set in which the given item is absent $A =?> union($B) - returns a new atomic set holding the union of $A and $B $A =?> intersect($B) - returns a new atomic set holding the intersection of $A and $B $A =?> except($B) - returns a new atomic set holding the difference of $A and $B </xsl:note> <xsl:record-type name="set:atomic-set" visibility="public" extensible="yes"> <xsl:field name="_data" as="map(xs:anyAtomicType, xs:boolean)"/> <xsl:field name="size" as="fn(set:atomic-set) as xs:integer"/> <xsl:field name="empty" as="fn(set:atomic-set) as xs:boolean"/> <xsl:field name="contains" as="fn(set:atomic-set, xs:anyAtomicType) as xs:boolean"/> <xsl:field name="contains-all" as="fn(set:atomic-set, set:atomic-set) as xs:boolean"/> <xsl:field name="add" as="fn(set:atomic-set, xs:anyAtomicType) as set:atomic-set"/> <xsl:field name="remove" as="fn(set:atomic-set, xs:anyAtomicType) as set:atomic-set"/> <xsl:field name="union" as="fn(set:atomic-set, set:atomic-set) as set:atomic-set"/> <xsl:field name="intersect" as="fn(set:atomic-set, set:atomic-set) as set:atomic-set"/> <xsl:field name="except" as="fn(set:atomic-set, set:atomic-set) as set:atomic-set"/> </xsl:record-type> <xsl:variable name="DATA" select="'_data'" visibility="private"/> <xsl:note> The private function set:replaceData processes the internal map by applying a supplied function, and returns a new atomic set with the resulting internal map </xsl:note> <xsl:function name="set:replaceData" visibility="private" as="map(xs:anyAtomicType, xs:boolean)"> <xsl:param name="input" as="set:atomic-set"/> <xsl:param name="update" as="fn(map(*)) as map(*)"/> <xsl:sequence select="map:put($input, $DATA, $update($input?$DATA))"/> </xsl:function> <xsl:function name="set:build" as="set:atomic-set" visibility="public"> <xsl:param name="values" as="xs:anyAtomicType*" default="()"/> <xsl:record as="set:atomic-set" _data= "map:build($values, values:=true#0, {'duplicates': 'use-first'})" size= "fn($this as set:atomic-set) as xs:integer { map:size($this?$DATA) }" empty= "fn($this as set:atomic-set) as xs:boolean { map:empty($this?$DATA) }" contains= "fn($this as set:atomic-set, $value as xs:anyAtomicType) as xs:boolean { map:contains($this?$DATA, $value) }" contains-all= "fn($this as set:atomic-set, $other as set:atomic-set) as xs:boolean { every($other, map:contains($this?$DATA, ?)) }" values= "fn($this as set:atomic-set) as xs:anyAtomicType* { keys($this?$DATA) }" add= "fn($this as set:atomic-set, $value as xs:anyAtomicType) as xs:anyAtomicType* { set:replaceData($this, map:put(?, $value, true())) }" remove= "fn($this as set:atomic-set, $value as xs:anyAtomicType) as xs:anyAtomicType* { set:replaceData($this, map:remove(?, $value)) }" union= "fn($this as set:atomic-set, $other as set:atomic-set) as set:atomic-set { set:replaceData($this, fn($m) {map:merge(($m, $other?$DATA), {'duplicates': 'use-first'})}) }" intersect= "fn($this as set:atomic-set, $other as set:atomic-set) as set:atomic-set { set:replaceData($this, map:filter(?, $other?contains)) }" except= "fn($this as set:atomic-set, $other as set:atomic-set) as set:atomic-set { set:replaceData($this, map:remove(?, $other?values())) }"/> </xsl:function> </xsl:package>
| Editorial note | |
| The example is not yet tested. | |
The definition of the format-number function
               is now in [Functions and Operators 4.0]. This section is a specification of
               the xsl:decimal-format declaration, which provides the context for
               this function when used in an XSLT stylesheet.
<!-- Category: declaration -->
<xsl:decimal-format
  name? = eqname
  decimal-separator? = string〔'.'〕
  grouping-separator? = string〔','〕
  infinity? = string〔'Infinity'〕
  minus-sign? = string〔'-'〕
  exponent-separator? = string〔'e'〕
  NaN? = string〔'NaN'〕
  percent? = string〔'%'〕
  per-mille? = string〔'‰'〕
  zero-digit? = char〔'0'〕
  digit? = char〔'#'〕
  pattern-separator? = char〔';'〕 />
The xsl:decimal-format element sets the
               statically known decimal formats component of the static context
               for XPath expressions, which controls the interpretation of a picture string used by the
               format-number function.
[Definition: The picture string
               is the string supplied as the second argument of the
               format-number function.]
            
A package may
               contain multiple xsl:decimal-format declarations and may include or
               import stylesheet modules that also
               contain xsl:decimal-format declarations. The name of an
               xsl:decimal-format declaration is the value of its
               name attribute, if any.
               [Definition: All the
                  xsl:decimal-format declarations in a package that share the same name are grouped into a named
                  decimal format; those that have no name are grouped into a single
                  unnamed decimal format.]
            
 The attributes of the xsl:decimal-format
               declaration define the value of the corresponding property in the relevant decimal
               format in the statically known
                  decimal formatsXP component of the static context for all XPath
               expressions in the package. The attribute names used in the XSLT 4.0 syntax are the
               same as the property names used in the definition of the static context. 
The scope of an xsl:decimal-format name is the
               package in which it is declared; the name is available for use only in calls to
               format-number that appear within the same package.
If a package does not contain a declaration of
               the unnamed decimal format, a declaration equivalent to an
               xsl:decimal-format element with no attributes is implied.
The attributes of the xsl:decimal-format declaration establish
               values for a number of variables used as input to the algorithm followed by the
               format-number function. An outline of the purpose of each
               attribute is given below; however, the definitive explanations are given as part of the specification of
               format-number.
For any named decimal format, the
               effective value of each attribute is taken from an
               xsl:decimal-format declaration that has that name, and that
               specifies an explicit value for the required attribute. If there is no such
               declaration, the default value of the attribute is used. If there is more than one
               such declaration, the one with highest import
                  precedence is used.
For any unnamed decimal format, the
               effective value of each attribute is taken from an
               xsl:decimal-format declaration that is unnamed, and that
               specifies an explicit value for the required attribute. If there is no such
               declaration, the default value of the attribute is used. If there is more than one
               such declaration, the one with highest import
                  precedence is used.
               [ERR XTSE1290] It is a static error if a named or
                     unnamed decimal format contains two
                     conflicting values for the same attribute in different
                     xsl:decimal-format declarations having the same import precedence, unless there is
                     another definition of the same attribute with higher import precedence.
            
The following attributes control the interpretation of characters in the 
               picture string supplied to the
               format-number function, and also specify characters that
               may appear in the result of formatting the number. In each case the value
               must either be a single character, or a string
               in the form m:r where m is a single character
               (the marker) used to represent the property in the picture
               string, and r (the rendition) 
               is an arbitrary string used to represent
               the property in the formatted result: [see ERR XTSE0020].
                     decimal-separator specifies the string used to separate the
                     integer part from the fractional part of the formatted number; the default
                     value is U+002E (FULL STOP, PERIOD, .) .
                     exponent-separator specifies the string used to separate the
                     mantissa from the exponent in scientific notation; the default value is 
                     U+0065 (LATIN SMALL LETTER E, e) .
                     grouping-separator specifies the string typically used as a
                     thousands separator; the default value is U+002C (COMMA, ,) .
                     percent specifies the string used to indicate that the number
                     is represented as a per-hundred fraction; the default value is U+0025 (PERCENT SIGN, %) .
                     per-mille specifies the string used to indicate that the number
                     is represented as a per-thousand fraction; the default value is U+2030 (PER MILLE SIGN, ‰) .
               [ERR XTSE1295] It is a static error if the character
                     specified in the zero-digit attribute is not a digit or is a digit
                     that does not have the numeric value zero. 
            
The following attributes control the interpretation of characters in the picture string supplied to the
               format-number function. In each case the value
               must be a single character [see ERR XTSE0020].
               The zero-digit property also affects the characters used to render
               digits in the formatted result:
            
                     zero-digit specifies the character used to represent the digit
                     zero; the default value is U+0030 (DIGIT ZERO, 0) . This
                     character must be a digit (category Nd in the
                     Unicode property database), and it must have the numeric
                     value zero. This attribute implicitly defines the Unicode character that is
                     used to represent each of the values 0 to 9 in the final result string: Unicode
                     is organized so that each set of decimal digits forms a contiguous block of
                     characters in numerical sequence.
                     digit specifies the character used in the picture string as a place-holder for an
                     optional digit; the default value is U+0023 (NUMBER SIGN, #) .
                     pattern-separator specifies the character used to separate
                     positive and negative sub-pictures in a picture string; 
                     the default value is U+003B (SEMICOLON, ;) .
The following attributes specify strings that may appear in the result of formatting the number:
                     infinity specifies the string used to represent the
                     xs:double value INF; the default value is the
                     string Infinity
                  
                     NaN specifies the string used to represent the
                     xs:double value NaN (not-a-number); the default
                     value is the string NaN
                  
                     minus-sign specifies the string used to indicate a negative
                     number; the default value is U+002D (HYPHEN-MINUS, -) .
[ERR XTSE1300] It is a static error if, for any named or unnamed decimal format, the properties identifying marker characters to be used in a picture string do not identify distinct values. These properties are decimal-separator, grouping-separator, exponent-separator, percent, per-mille, zero-digit, digit, and pattern-separator.
Every (named or unnamed) decimal format defined in a package is added to the statically known decimal formatsXP in the
               static contextXP of every
               expression in the package, excluding expressions
               appearing in [xsl:]use-when attributes.
The string value of an attribute or text node in the stylesheet may in particular circumstances contain embedded expressions enclosed between curly brackets. Attributes and text nodes that use (or are permitted to use) this mechanism are referred to respectively as attribute value templates and text value templates.
[Definition: Collectively, attribute value templates and text value templates are referred to as value templates.]
A value template is a string consisting of an alternating sequence of fixed parts and variable parts:
A variable part consists of an optional XPath expression enclosed in curly brackets ({}):
                  more specifically, a string conforming 
                     to the XPath production Expr?.
Note:
An expression within a variable part may contain an unescaped curly bracket within a StringLiteralXP or within a comment.
Currently no XPath expression starts with an opening curly
                        bracket, so the use of {{ creates no ambiguity. If an enclosed
                        expression ends with a closing curly bracket, no whitespace is required between
                        this and the closing delimiter.
The fact that the expression is optional means that the string contained between the curly brackets may be zero-length, may comprise whitespace only, or may contain XPath comments. The effective value in this case is a zero-length string, which is equivalent to omitting the variable part entirely, together with its curly-bracket delimiters.
A fixed part
                  may contain any characters, except that a left curly bracket must
                  be written as {{ and a right curly bracket must be
                  written as }}. 
[ERR XTSE0350] It is a static error if an unescaped left curly bracket appears in a fixed part of a value template without a matching right curly bracket.
It is a static error if the string contained between matching curly brackets in a value template does not match the XPath production Expr?XP, or if it contains other XPath static errors. The error is raised using the appropriate XPath error code.
[ERR XTSE0370] It is a static error if an unescaped right curly bracket occurs in a fixed part of a value template.
The result of evaluating a value template is referred to as its effective value. The effective value is the string obtained by concatenating the expansions of the fixed and variable parts:
The expansion of a fixed part is obtained by replacing any double curly
                     brackets ({{ or }}) by the corresponding single curly
                     bracket.
The expansion of a variable part is as follows:
If an expression is present, the result of evaluating the enclosed XPath expression and converting the resulting value to a string. This conversion is done using the rules given in 5.7.2 Constructing Simple Content.
If the expression is omitted, a zero-length string.
Note:
This process can raise dynamic errors, for example if the sequence contains an element with a complex content type (which cannot be atomized).
In the case of an attribute value template, the effective value becomes the string value of the new attribute node. In the case of a text value template, the effective value becomes the string value of the new text node.
                  [Definition: In an
                     attribute that is designated as an attribute value template, such
                     as an attribute of a literal result
                        element, an expression can
                     be used by surrounding the expression with curly brackets ({}),
                     following the general rules for value
                        templates].
Curly brackets are not treated specially in an attribute value in an XSLT stylesheet unless the attribute is specifically designated as one that permits an attribute value template; in an element syntax summary, the value of such attributes is surrounded by curly brackets.
Note:
Not all attributes are designated as attribute value templates. Attributes
                     whose value is an expression or pattern, attributes of declaration elements and attributes that
                     refer to named XSLT objects are generally not designated as attribute value
                     templates (an exception is the format attribute of
                        xsl:result-document). Namespace declarations are not XDM
                     attribute nodes and are therefore never treated as attribute value
                     templates.
If the element containing the attribute is processed with XSLT 1.0 behavior, then the rules for converting the value of the expression to a string (given in 5.6 Value Templates) are modified as follows. After atomizing the result of the expression, all items other than the first item in the resulting sequence are discarded, and the effective value is obtained by converting the first item in the sequence to a string. If the atomized sequence is empty, the result is a zero-length string.
Note:
The above rule applies to attribute value templates but not to text value templates, since the latter were not available in XSLT 1.0.
The following example creates an img result element from a
                        photograph element in the source; the value of the
                        src and width attributes are computed using XPath
                     expressions enclosed in attribute value templates:
<xsl:variable name="image-dir" select="'/images'"/> <xsl:template match="photograph"> <img src="{ $image-dir }/{ href }" width="{ size/@width }"/> </xsl:template>
With this source
<photograph> <href>headquarters.jpg</href> <size width="300"/> </photograph>
the result would be
<img src="/images/headquarters.jpg" width="300"/>
The following example shows how the values in a sequence are output as a space-separated list. The following literal result element:
<temperature readings="{10.32, 5.50, 8.31}"/>
produces the output node:
<temperature readings="10.32 5.5 8.31"/>
Curly brackets are not recognized recursively inside expressions.
The standard attribute
                  [xsl:]expand-text may appear on any element in the stylesheet, and
                  determines whether descendant text nodes of that element are treated as text value
                  templates. A text node in the stylesheet is treated as a text value template if
                  (a) it is part of a sequence
                     constructor, (b) there is an ancestor element with an
                     [xsl:]expand-text attribute, and (c) on the innermost ancestor
                  element that has such an attribute, the value of the attribute is
                  yes. The attribute is boolean and
                        must therefore take one of the values yes
                     (synonyms true or 1) or no (synonyms
                        false or 0). 
This section describes how text nodes  are processed when the effective value is
                     yes. Such text nodes are referred to as text value templates.
                  [Definition: In a text node
                     that is designated as a text value template, expressions can be used by surrounding each
                     expression with curly brackets ({}).]
The rules for text value templates are given in 5.6 Value Templates. A text node whose value is a text value template results in the construction of a text node in the result of the containing sequence constructor. The string value of that text node is obtained by computing the effective value of the value template.
Note:
The result of evaluating a text value template is a (possibly zero-length) text node. This text node becomes part of the result of the containing sequence constructor, and is thereafter handled exactly as if the value had appeared explicitly as a text node in the stylesheet.
The way in which the effective value is computed does not depend on any
                        separator attribute on a containing
                        xsl:text, xsl:value-of or 
                     xsl:attribute instruction.
                     The separator attribute only affects how the text node is combined
                     with adjacent items in the result of the containing sequence constructor.
Fixed parts consisting entirely of whitespace are significant and are handled in the same way as any other fixed part. This is different from the default treatment of “boundary space” in XQuery.
<xsl:variable name="id" select="'A123'"/> <xsl:variable name="step" select="5"/> <xsl:message expand-text="yes">Processing id={ $id }, step={ $step }</xsl:message>
This will typically output the message text Processing id=A123,
                        step=5.
<xsl:function name="f:sum" expand-text="yes" as="xs:integer"> <xsl:param name="x" as="xs:integer"/> <xsl:param name="y" as="xs:integer"/> { $x + $y } </xsl:function>
Note that although this is a very readable way of expressing the computation
                     performed by the function, the semantics are somewhat complex, and this could
                     mean that execution is inefficient. The function computes the value of $x
                        + $y as an integer, and then constructs a text node containing the
                     string representation of this integer (preceded and followed by whitespace).
                     Because the declared result type of the function is xs:integer,
                     this text node is then atomized, giving an xs:untypedAtomic item,
                     and the xs:untypedAtomic item is then cast to an
                        xs:integer.
Note:
The main motivations for adding text value templates to the XSLT language are
                     firstly, to make it easier to construct parameterized text in contexts such as
                        xsl:text, xsl:value-of, 
                     and xsl:message, and
                     secondly, to allow use of complex multi-line XPath expressions where
                     maintaining correct indentation is important for readability. The fact that XML
                     processors are required to normalize whitespace in attribute values means that
                     writing such expressions within a select attribute is not
                     ideal.
The facility is only present if enabled using the
                        [xsl:]expand-text attribute. This is partly for backwards
                     compatibility, and partly to avoid creating difficulties when constructing
                     content that is rich in curly brackets, for example JavaScript code or CSS
                     style sheets.
[Definition: A sequence constructor is a sequence of zero or more sibling nodes in the stylesheet that can be evaluated to return a sequence of nodes, atomic items, and function items. The way that the resulting sequence is used depends on the containing instruction.]
Many XSLT elements, and also literal result elements, are defined to take a sequence constructor as their content.
Four kinds of nodes may be encountered in a sequence constructor:
A Text node appearing in the stylesheet (if it has not been removed in the process of whitespace stripping: see 3.13.1 Stripping Whitespace and Commentary from the Stylesheet) is processed as follows:
if the effective value of the standard attribute
                              [xsl:]expand-text is no, or in the absence
                           of this attribute, the text node in the stylesheet is copied to create a
                           new parentless text node in the result of the sequence constructor.
Otherwise (the effective value of [xsl:]expand-text is
                              yes), the text node in the stylesheet is processed as
                           described in 5.6.2 Text Value Templates.
A literal result element is evaluated to create a new parentless element node, having the same expanded QName as the literal result element: see 11.1 Literal Result Elements.
An XSLT instruction produces a sequence
                     of zero, one, or more items as its result. For most XSLT instructions, these
                     items are nodes, but some instructions (such
                        as xsl:sequence, xsl:select, 
                     xsl:map, xsl:array, and xsl:copy-of) can also
                     produce atomic items or function items.
Several instructions, such as xsl:element, return a newly
                     constructed parentless node (which may have its own attributes, namespaces,
                     children, and other descendants). Other instructions, such as
                        xsl:if, pass on the items produced by their own nested
                     sequence constructors.
Three instructions serve primarily to evaluate XPath expressions:
The xsl:sequence instruction evaluates an
                        XPath expression written statically in its select
                        attribute.
The xsl:select instruction evaluates
                        an XPath expression written statically in its contained text node.
The xsl:evaluate instruction
                        compiles and evaluates an XPath expression that is constructed
                        dynamically as a character string.
These three instructions may return atomic items, function items, or nodes.
An extension instruction (see 24.2 Extension Instructions) also produces a sequence of items as its result.
[Definition: The result of evaluating a sequence constructor is the sequence of items formed by concatenating the results of evaluating each of the nodes in the sequence constructor, retaining order. This is referred to as the immediate result of the sequence constructor.]
However:
For the effect of the xsl:fallback instruction, see 24.2.3 Fallback.
For the effect of the xsl:on-empty and
                        xsl:on-non-empty instructions, see 8.5 Conditional Content Construction.
The way that immediate result of a sequence constructor is used depends on the containing element in the stylesheet, and is specified in the rules for that element. It is typically one of the following:
The immediate result may be bound to a variable or 
                     delivered as the result of a stylesheet function.
                     In this case the as attribute of the containing xsl:variable
                     or xsl:function element may be used to declare its required type, 
                     and the immediate result is then converted to the required type 
                     by applying the coercion rules.
Note:
In the absence of an as attribute, the result of a 
                              function is the immediate result of the sequence constructor; 
                              but the value of a variable (for backwards compatibility reasons) is a document node 
                              whose content is formed by applying the rules in 5.7.1 Constructing Complex Content 
                              to the immediate result.
                           
The coercion rules do not merge adjacent text nodes 
                              or insert separators between adjacent items. This means it is often inappropriate 
                              to use xsl:value-of in the body of xsl:variable or 
                              xsl:function, especially when the intent is to return an atomic result. 
                              The xsl:sequence instruction is designed for this purpose, and 
                              is usually a better choice.
                           
The result of a function, or the value of a variable, may contain nodes 
                              (such as elements, attributes, and text nodes) that are not attached to any parent node 
                              in a result tree.  The semantics of XPath expressions when applied to parentless nodes 
                              are well-defined; however, such expressions should be used with care. For example, 
                              the expression / causes a type error if the root of the tree containing 
                              the context node is not a document node.
                           
Parentless attribute nodes require particular care because they have no namespace nodes associated with them. A parentless attribute node is not permitted to contain namespace-sensitive content (for example, a QName or an XPath expression) because there is no information enabling the prefix to be resolved to a namespace URI. Parentless attributes can be useful in an application (for example, they provide an alternative to the use of attribute sets: see 10.2 Named Attribute Sets) but they need to be handled with care.
The sequence may be returned as the result of the containing element. This
                     happens, for example, when 
                     the element containing the
                     sequence constructor is 
                        xsl:break,
                        xsl:catch, 
                        xsl:fallback, xsl:for-each,
                        xsl:for-each-group, xsl:fork, xsl:if, xsl:iterate,
                        xsl:matching-substring, 
                        xsl:non-matching-substring, xsl:on-completion,
                        xsl:otherwise, xsl:perform-sort,
                        xsl:sequence, xsl:try, or xsl:when. 
The sequence may be used to construct the content of a new element or document
                     node. This happens when the sequence constructor appears as the content of a
                        literal result element,
                     or of one of the instructions xsl:copy,
                        xsl:element, xsl:document,
                        xsl:result-document, xsl:assert, or xsl:message.
                     It also happens when the sequence constructor is contained in one of the
                     elements xsl:variable, xsl:param, or
                        xsl:with-param,  when this instruction has no
                        as attribute. For details, see 5.7.1 Constructing Complex Content.
The sequence may be used to construct the string
                        value of an attribute node, text node, namespace node, comment
                     node, or processing instruction node. This happens when the sequence
                     constructor is contained in one of the elements xsl:attribute,
                        xsl:text, xsl:value-of, xsl:namespace,
                        xsl:comment, or
                     xsl:processing-instruction. For details, see 5.7.2 Constructing Simple Content.
Many instructions, for example xsl:copy, xsl:element, 
                  xsl:document, xsl:result-document, and 
                  literal result elements, 
                  create a new parent node, and evaluate a sequence constructor 
                  forming the content of the instruction to create the attributes, 
                  namespaces, and children of the new parent node. The immediate result 
                  of the sequence constructor is processed to create the content of the new parent 
                  node as described in this section.
When constructing the content of an element, the inherit-namespaces
                  attribute of the xsl:element or xsl:copy
                  instruction, or the xsl:inherit-namespaces property of the literal
                  result element, determines whether namespace nodes are to be inherited. The effect
                  of this attribute is described in the rules that follow.
The immediate result of the sequence constructor is processed as follows (applying the rules in the order they are listed):
The containing instruction may generate attribute nodes and/or namespace
                        nodes, as specified in the rules for the individual instruction. For
                        example, these nodes may be produced by expanding an
                           [xsl:]use-attribute-sets attribute, or by expanding the
                        attributes of a literal result
                           element. Any such nodes are prepended to the 
                        immediate result of the sequence constructor.
Any array item in the sequence (see 22 Arrays)
                     is replaced by its members, recursively. This is equivalent to applying
                     the array:flatten function defined in 
                     [Functions and Operators 4.0].
Any atomic item in the sequence is cast to a string.
Note:
Casting from xs:QName or xs:NOTATION to
                              xs:string always succeeds, because these values retain a
                           prefix for this purpose. However, there is no guarantee that the prefix
                           used will always be meaningful in the context where the resulting string
                           is used.
Any consecutive sequence of strings in the sequence is converted to a single text node, whose string value contains the content of each of the strings in turn, with U+0020 (SPACE) used as a separator between successive strings.
Any document node within the sequence is replaced by a sequence containing each of its children, in document order.
Zero-length text nodes within the sequence are removed.
Adjacent text nodes within the sequence are merged into a single text node.
Invalid items in the sequence are detected as follows.
[ERR XTDE0410] It is a dynamic error if the sequence used to construct the content of an element node contains a namespace node or attribute node that is preceded in the sequence by a node that is neither a namespace node nor an attribute node.
[ERR XTDE0420] It is a dynamic error if the sequence used to construct the content of a document node contains a namespace node or attribute node.
[ERR XTDE0430] It is a dynamic error if the sequence contains two or more namespace nodes having the same name but different string values (that is, namespace nodes that map the same prefix to different namespace URIs).
[ERR XTDE0440] It is a dynamic error if the sequence contains a namespace node with no name and the element node being constructed has a null namespace URI (that is, it is an error to define a default namespace when the element is in no namespace).
[ERR XTDE0450] It is a type error if the result sequence contains a function item.
Note:
The error code reflects the fact that this error was at one time classified as a dynamic error rather than a type error.
If the sequence contains two or more namespace nodes with the same name (or no name) and the same string value (that is, two namespace nodes mapping the same prefix to the same namespace URI), then all but one of the duplicate nodes are discarded.
Note:
Since the order of namespace nodes is implementation-dependent, it is not significant which of the duplicates is retained.
If an attribute A in the sequence has the same name as another attribute B that appears later in the sequence, then attribute A is discarded from the sequence. Before discarding attribute A, the processor may raise any type errors that would be raised if attribute B were not present.
Each node in the resulting sequence is attached as a namespace, attribute,
                        or child of the newly constructed element or document node. Conceptually
                        this involves making a deep copy of the node; in practice, however, copying
                        the node will only be necessary if the existing node can be referenced
                        independently of the parent to which it is being attached. When copying an
                        element or processing instruction node, its base URI property is changed to
                        be the same as that of its new parent, unless it has an
                           xml:base attribute (see [XML Base]) that
                        overrides this. If the copied element has an xml:base
                        attribute, its base URI is the value of that attribute, resolved (if it is
                        relative) against the base URI of the new parent node.
Except for the handling of base URI, the copying
                        of a node follows the rules of the xsl:copy-of instruction
                        with attributes copy-namespaces="yes" copy-accumulators="no"
                           validation="preserve".
Note:
This has the consequence that the type annotation and the values of the
                              nilled, is-id, and is-idrefs
                           properties are retained. However, if the node under construction (the new
                           parent of the node being copied) uses a validation mode other than
                              preserve, this will be transient: the values will be
                           recomputed when the new parent node is validated.
If the newly constructed node is an element node, then namespace fixup is applied to this node, as described in 5.7.3 Namespace Fixup.
If the newly constructed node is an element node, and if namespaces are inherited, then each namespace node of the newly constructed element (including any produced as a result of the namespace fixup process) is copied to each descendant element of the newly constructed element, unless that element or an intermediate element already has a namespace node with the same name (or absence of a name) or that descendant element or an intermediate element is in no namespace and the namespace node has no name.
Consider the following stylesheet fragment:
<td> <xsl:attribute name="valign">top</xsl:attribute> <xsl:value-of select="@description"/> </td>
This fragment consists of a literal result element td, containing
                     a sequence constructor that consists of two instructions:
                        xsl:attribute and xsl:value-of. The
                     sequence constructor is evaluated to produce a sequence of two nodes: a
                     parentless attribute node, and a parentless text node. The td
                     instruction causes a td element to be created; the new attribute
                     therefore becomes an attribute of the new td element, while the
                     text node created by the xsl:value-of instruction becomes a
                     child of the td element (unless it is zero-length, in which case
                     it is discarded).
Consider the following stylesheet fragment:
<doc> <e><xsl:sequence select="1 to 5"/></e> <f> <xsl:for-each select="1 to 5"> <xsl:value-of select="."/> </xsl:for-each> </f> </doc>
This produces the output (when indented):
<doc> <e>1 2 3 4 5</e> <f>12345</f> </doc>
The difference between the two cases is that for the e element,
                     the sequence constructor generates a sequence of five atomic items, which are
                     therefore separated by spaces. For the f element, the content is a
                     sequence of five text nodes, which are concatenated without space
                     separation.
It is important to be aware of the distinction between
                        xsl:sequence, which returns the value of its
                        select expression unchanged, and xsl:value-of,
                     which constructs a text node.
The instructions xsl:attribute, xsl:comment,
                     xsl:processing-instruction, xsl:namespace,
                  xsl:text, and xsl:value-of 
                  all create nodes that cannot have children.
                  Specifically, the xsl:attribute instruction creates an attribute
                  node, xsl:comment creates a comment node,
                     xsl:processing-instruction creates a processing instruction
                  node, xsl:namespace creates a namespace node, and
                     xsl:text and xsl:value-of create text nodes. 
                  The string value of the new
                  node is constructed using either the select attribute of the
                  instruction, or the sequence
                     constructor that forms the content of the instruction. The
                     select attribute allows the content to be specified by means of an
                  XPath expression, while the sequence constructor allows it to be specified by
                  means of a sequence of XSLT instructions. The select attribute or
                  sequence constructor is evaluated to produce a result sequence, and the string value of the new node is derived from
                  this result sequence according to the rules below.
These rules are also used to compute the effective value of a value template. In this case the sequence being processed is the result of evaluating an XPath expression enclosed between curly brackets, and the separator is a single space character.
Zero-length text nodes in the sequence are discarded.
Adjacent text nodes in the sequence are merged into a single text node.
The sequence is atomized (which may cause a dynamic error).
Every value in the atomized sequence is cast to a string.
The strings within the resulting sequence are concatenated, with a (possibly zero-length) separator inserted between successive strings. The default separator depends on the containing instruction; except where otherwise specified, it is a single space.
In the case of xsl:attribute,
                        xsl:text, and xsl:value-of,
                        the default separator is a single space
                     when the select attribute is used, or a zero-length string otherwise; 
                     a different separator can be specified
                        using the separator attribute of the instruction.
In the case of xsl:comment,
                        xsl:processing-instruction, and
                           xsl:namespace, and when expanding a value
                        template, the default separator cannot be changed.
In the case of xsl:processing-instruction, any leading
                        spaces in the resulting string are removed.
The resulting string forms the string value of the new attribute, namespace, comment, processing-instruction, or text node.
Consider the following stylesheet fragment:
<doc> <xsl:attribute name="e" select="1 to 5"/> <xsl:attribute name="f"> <xsl:for-each select="1 to 5"> <xsl:value-of select="."/> </xsl:for-each> </xsl:attribute> <xsl:attribute name="g" expand-text="yes">{1 to 5}</xsl:attribute> </doc>
This produces the output:
<doc e="1 2 3 4 5" f="12345" g="1 2 3 4 5"/>
The difference between the three cases is as follows. For the
                        e attribute, the sequence constructor generates a sequence of
                     five atomic items, which are therefore separated by spaces. For the
                        f attribute, the content is supplied as a sequence of five text
                     nodes, which are concatenated without space separation. For the g
                     attribute, the text value template constructs a text node
                     using the rules for constructing simple content, which insert space separators
                     between atomic items; the text node is then atomized to form the value of the
                     attribute.
Specifying separator="" on the first
                        xsl:attribute instruction would cause the attribute value
                     to be e="12345". A separator attribute on the second
                        xsl:attribute instruction would have no effect, since the
                     separator only affects the way adjacent atomic items are handled: separators
                     are never inserted between adjacent text nodes. A
                           separator on the third xsl:attribute
                        instruction would also have no effect, because text value templates are
                        evaluated without regard to the containing instruction.
Note:
If an attribute value template contains a sequence of fixed and variable parts,
                     no additional whitespace is inserted between the expansions of the fixed and
                     variable parts. For example, the effective
                        value of the attribute a="chapters{4 to 6}" is
                        a="chapters4 5 6".
In a tree supplied to or constructed by an XSLT processor, the constraints relating to namespace nodes that are specified in [XDM 4.0] must be satisfied. For example:
If an element node has an expanded QName with a non-null namespace URI, then that element node must have at least one namespace node whose string value is the same as that namespace URI.
If an element node has an attribute node whose expanded QName has a non-null namespace URI, then the element must have at least one namespace node whose string value is the same as that namespace URI and whose name is non-empty.
Every element must have a namespace node whose expanded QName has local-part
                           xml and whose string
                           value is http://www.w3.org/XML/1998/namespace. The
                        namespace prefix xml
                        must not be associated with any other namespace URI, and
                        the namespace URI http://www.w3.org/XML/1998/namespace
                        must not be associated with any other prefix.
A namespace node must not have the name
                           xmlns or the string value
                           http://www.w3.org/2000/xmlns/.
[Definition: The rules for the individual XSLT instructions that construct a result tree (see 11 Creating Nodes) prescribe some of the situations in which namespace nodes are written to the tree. These rules, however, are not sufficient to ensure that the prescribed constraints are always satisfied. The XSLT processor must therefore add additional namespace nodes to satisfy these constraints. This process is referred to as namespace fixup.]
The actual namespace nodes that are added to the tree by the namespace fixup process are implementation-dependent, provided firstly, that at the end of the process the above constraints must all be satisfied, and secondly, that a namespace node must not be added to the tree unless the namespace node is necessary either to satisfy these constraints, or to enable the tree to be serialized using the original namespace prefixes from the source document or stylesheet.
Namespace fixup must not result in an element having multiple namespace nodes with the same name.
Namespace fixup may, if necessary to resolve conflicts, change
                  the namespace prefix contained in the QName value that holds the name of an
                  element or attribute node. This includes the option to add or remove a prefix.
                  However, namespace fixup must not change the prefix component
                  contained in a value of type xs:QName or xs:NOTATION
                  that forms the typed value of an element or attribute node.
Note:
Namespace fixup is not used to create namespace declarations for
                        xs:QName or xs:NOTATION values appearing in the
                     content of an element or attribute.
Where values acquire such types as the result of validation, namespace fixup does not come into play, because namespace fixup happens before validation: in this situation, it is the user’s responsibility to ensure that the element being validated has the required namespace nodes to enable validation to succeed.
Where existing elements are copied along with their existing type annotations
                        (validation="preserve") the rules require that existing
                     namespace nodes are also copied, so that any namespace-sensitive values remain
                     valid.
Where existing attributes are copied along with their existing type
                     annotations, the rules of the XDM data model require that a parentless
                     attribute node cannot contain a namespace-sensitive typed value; this means
                     that it is an error to copy an attribute using
                        validation="preserve" if it contains namespace-sensitive
                     content.
Namespace fixup is applied to every element that is constructed using a literal result element, or one of the
                  instructions xsl:element, xsl:copy, or
                     xsl:copy-of. An implementation is not
                     required to perform namespace fixup for elements in any
                  source document, that is, for a document in the initial match selection, documents loaded using the
                     document, doc or
                     collection function, documents supplied as the value of
                  a stylesheet parameter, or
                  documents returned by an extension
                     function or extension
                     instruction.
Note:
A source document (an input document, a document returned by the
                        document, doc or
                        collection functions, a document returned by an
                     extension function or extension instruction, or a document supplied as a
                     stylesheet parameter) is required to satisfy the constraints described in
                        [XDM 4.0], including the constraints imposed by the
                     namespace fixup process. The effect of supplying a pseudo-document that does
                     not meet these constraints is implementation-dependent.
In an Infoset (see [XML Information Set]) created from a document conforming
                  to [Namespaces in XML], it will always be true that if a parent element has
                  an in-scope namespace with a non-empty namespace prefix, then its child elements
                  will also have an in-scope namespace with the same namespace prefix, though
                  possibly with a different namespace URI. This constraint is removed in [Namespaces in XML 1.1]. XSLT 4.0 supports the
                  creation of result trees that do not satisfy this constraint: the namespace fixup
                  process does not add a namespace node to an element merely because its parent node
                  in the result tree has such a namespace
                  node. However, the process of constructing the children of a new element, which is
                  described in 5.7.1 Constructing Complex Content, does cause the
                  namespaces of a parent element to be inherited by its children unless this is
                  prevented using [xsl:]inherit-namespaces="no" on the instruction that
                  creates the parent element.
Note:
This has implications on serialization, defined in [Serialization 4.0]. It means that it is possible to create
                        final result trees that cannot
                     be faithfully serialized as XML 1.0 documents. When such a result tree is
                     serialized as XML 1.0, namespace declarations written for the parent element
                     will be inherited by its child elements as if the corresponding namespace nodes
                     were present on the child element, except in the case of the default namespace,
                     which can be undeclared using the construct xmlns="". When the
                     same result tree is serialized as XML 1.1, however, it is possible to undeclare
                     any namespace on the child element (for example, xmlns:foo="") to
                     prevent this inheritance taking place.
               [Definition: Within this specification, the
                  term URI Reference, unless otherwise stated, refers to a string in
                  the lexical space of the xs:anyURI datatype as defined in [XML Schema Part 2].] Note that this is a wider definition than that
               in [RFC3986]: in particular, it is designed to accommodate
               Internationalized Resource Identifiers (IRIs) as described in [RFC3987], and thus allows the use of non-ASCII characters without escaping.
URI References are used in XSLT with three main roles:
As namespace URIs
As collation URIs
As identifiers for resources such as stylesheet modules; these resources are
                     typically accessible using a protocol such as HTTP. Examples of such
                     identifiers are the URIs used in the href attributes of
                        xsl:import, xsl:include, 
                        xsl:result-document, and xsl:package-location.
The rules for namespace URIs are given in [Namespaces in XML] and [Namespaces in XML 1.1]. Those specifications deprecate the use of relative URI references as namespace URIs.
The rules for collation URIs are given in [Functions and Operators 4.0] section 5.3.1 Collations.
URI references used to identify external resources must conform to the same rules as
               the locator attribute (href) defined in section 5.4 of [XLink]. If the URI reference is relative, then it is resolved (unless
               otherwise specified) against the base URI of the containing element node, according
               to the rules of [RFC3986], after first escaping all characters that
               need to be escaped to make it a valid RFC3986 URI reference. (But a relative URI
                  reference in the href attribute of
                  xsl:result-document is resolved against the Base Output URI.)
Other URI references appearing in an XSLT stylesheet document, for example the system
               identifiers of external entities or the value of the xml:base attribute,
               must follow the rules in their respective specifications.
The base URI of an element node in the stylesheet
               is determined as defined in [XDM 4.0] section 7.6.2 base-uri Accessor. Some
               implementations may allow the output of the static analysis phase of stylesheet
               processing (a “compiled stylesheet”) to be evaluated in a different location from
               that where static analysis took place. Furthermore, stylesheet authors may in such
               cases wish to avoid exposing the location of resources that are private to the
               development environment. If the base URI of an element in the stylesheet is defined
               by an absolute URI appearing in an xml:base attribute within the
               stylesheet, this value must be used as the static base URI. In
               other cases where processing depends on the static base URI of a stylesheet module,
               implementations may use different values for the static base URI
               during static analysis and during dynamic evaluation (for example, an implementation
                  may use different base URIs for resolving
                  xsl:import module references and for resolving a relative
               reference used as an argument to the doc function). In such
               cases an implementation must document how the static base URI is
               computed for each situation in which it is required. 
Template rules define the processing that can be applied to items that match a particular pattern.
<!-- Category: declaration -->
<xsl:template
  match? = pattern
  name? = eqname
  priority? = decimal
  mode? = tokens
  as? = sequence-type〔'item()*'〕
  visibility? = "public" | "private" | "final" | "abstract" >
  <!-- Content: (xsl:context-item?, xsl:param*, sequence-constructor) -->
</xsl:template>
               [Definition: An xsl:template
                  declaration defines a template, which contains a sequence constructor;
                  this sequence constructor is evaluated to determine
                     the result of the template. A template can serve either as a template rule, invoked by matching items against a pattern, or as a named
                     template, invoked explicitly by name. It is also possible for the
                  same template to serve in both capacities.]
            
               [ERR XTSE0500] An xsl:template element must have either a
                        match attribute or a name attribute, or both. An
                        xsl:template element that has no match
                     attribute must have no mode attribute and no
                        priority attribute. An
                           xsl:template element that has no name
                        attribute must have no visibility
                        attribute.
            
If an xsl:template element has a match attribute, then
               it is a template rule. If it has a
                  name attribute, then it is a named
                  template.
A template may be invoked in a number of ways,
               depending on whether it is a template rule,
               a named template, or both. The result of
               invoking the template is the result of evaluating the sequence constructor contained in the
                  xsl:template element (see 5.7 Sequence Constructors).
For details of the optional xsl:context-item child
               element, see 10.1.4 Declaring the Context Item for a Template.
If an as attribute of the xsl:template element is
               present, the as attribute defines the required type of the result. The
               result of evaluating the sequence
                  constructor is then converted to the required type using the 
               coercion rules. If no
                  as attribute is specified, the default value is item()*,
               which permits any value. No conversion then takes place.
[ERR XTTE0505] It is a type error if the result of evaluating the sequence constructor cannot be coerced to the required type.
If the visibility attribute is present with the value
                  abstract then (a) the sequence constructor
               defining the template body must be empty: that is, the only
               permitted children are xsl:context-item and
                  xsl:param, and (b) there must be no
                  match attribute.
If the parent of the xsl:template element is an
               xsl:override element, then either or both of the following conditions
               must be true:
There is a name attribute, and the package identified by the containing
                  xsl:use-package element contains among its components a named
                        template whose symbolic
                           identifier is the same as that of this named template, and which has a compatible signature.
Both the following conditions are true:
There is a match attribute.
The value of the mode attribute,
                        or in its absence the string #default,
                        is a whitespace-separated sequence of tokens in which each token satisfies
                        one of the following conditions:
The token is an EQName representing the name of a mode that is exposed,
                           with visibility equal to public, by the package identified by the containing
                           xsl:use-package element.
The token is #default, and there is an ancestor-or-self element with
                              a default-mode attribute whose value is an EQName representing the name of a mode that is exposed,
                              with visibility equal to public, by the package identified by the containing
                              xsl:use-package element.
Note:
The token #unnamed is not allowed because the unnamed mode never has public visibility. 
                     The token #all is not allowed because its intended meaning would not be obvious.
                  
This section describes template rules. Named templates are described in 10.1 Named Templates.
A template rule is specified using the
                  xsl:template element with a match attribute. The
                  match attribute is a Pattern that identifies
               the items to which the rule applies. The result of
               applying the template rule is the result of evaluating the sequence constructor
               contained in the xsl:template element, with the matching item used as the context item.
For example, an XML document might contain:
This is an <emph>important</emph> point.
The following template rule matches
                     emph elements and produces a fo:wrapper element with
                  a font-weight property of bold.
<xsl:template match="emph"> <fo:wrapper font-weight="bold" xmlns:fo="http://www.w3.org/1999/XSL/Format"> <xsl:apply-templates/> </fo:wrapper> </xsl:template>
A template rule is evaluated when an
                  xsl:apply-templates instruction selects an item that matches the pattern specified in the match
               attribute. The xsl:apply-templates instruction is described in the
               next section. If several template rules match a selected item, only one of them is evaluated, as described in 6.6 Conflict Resolution for Template Rules.
In XSLT 4.0, patterns can match any kind of item: atomic items and function items as well as nodes.
A template rule identifies the items to which it applies by means of a pattern. As well as being used in template rules, patterns are used for numbering (see 12 Numbering), for grouping (see 14 Grouping), and for declaring keys (see 20.2 Keys).
[Definition: A pattern specifies a set of conditions on an item. An item that satisfies the conditions matches the pattern; an item that does not satisfy the conditions does not match the pattern.]
There are several kinds of pattern:
[Definition: A predicate pattern is written as
                           . (dot) followed by zero or more predicates in square
                        brackets, and it matches any item for which each of the predicates evaluates
                        to true.]
A predicate pattern .[P1][P2]... can be regarded as an abbreviation
                     for the type pattern type(item())[P1][P2]....
The detailed semantics are given in 6.3.2.1 Predicate Patterns. This construct can be used to match items of any
                     kind (nodes, atomic items, and function items). For example, the pattern
                     .[starts-with(., '$')] matches any string that starts with the
                     character $, or a node whose atomized value starts with 
                     $. This example shows a predicate pattern with a single
                     predicate, but the grammar allows any number of predicates (zero or more).
[Definition: A type pattern can be written as
                     type(T) (where T is an ItemTypeXP
                     followed by zero or more predicates in square
                     brackets, and it matches any item of type T for which each of the predicates evaluates
                     to true.]
The parameter T can also be a list of item types, separated by "|".
                  For example, type(array(*) | map(*)) matches arrays and maps, while 
                  type(text() | comment()) matches text nodes and comment nodes.
The most commonly used type patterns can be abbreviated. For example, match="type(record(F1, F2, *))" 
                     can be abbrevated to match="record(F1, F2, *)", while match="type(array(xs:string))"
                     can be abbreviated to match="array(xs:string)". The main case where such abbreviation is
                  not possible is with atomic items: match="type(xs:date)" cannot be abbreviated because
                  a bare QName is interpreted as a node pattern, matching elements named xs:date.
The type pattern match="type(text() | comment())" has almost the same effect as
                  the XNode pattern match="text() | comment()", but the rules for calculating a default priority
                  are different.
[Definition: An XNode pattern uses a subset of the syntax for path expressions, and is defined to match an XNode if the corresponding path expression would select the XNode.]
The syntax for XNode patterns
                        (PathExprP in the grammar:
                        see 6.3.2 Syntax of Patterns) is a subset of the syntax for
                        expressions. XNode patterns,
                        except in a few special cases, are used only for matching nodes.
                     As explained in detail below, a node matches a node pattern if the node can be selected by
                     deriving an equivalent expression, and evaluating this expression with respect
                     to some possible context.
[Definition: A JNode Pattern matches a JNode by specifying constraints on the values of its ·selector· and/or ·content· properties.]
Patterns may be combined using the union, intersect, and
            except operators. If P and Q are patterns, then:
P union Q (which can also be written
               P | Q) matches an item if either or both
               of P and Q match the item.
P intersect Q matches an item if 
               P and Q both match the item.
P except Q matches an item if 
               P matches the item and Q does not.
P except (Q
                        union R), by virtue of the fact that an XNodePattern
                     may be a ParenthesizedPattern.Note:
The meaning of a top-level union, intersect, or
               except operator has changed in XSLT 4.0. Previously these operators were 
               defined in terms of the corresponding XPath operators applied to sets of nodes,
               which meant they could not be used when matching items other than nodes.
Note:
The specification uses the phrases an item matches a pattern and a pattern matches an item interchangeably. They are equivalent: an item matches a pattern if and only if the pattern matches the item.
Here are some examples of patterns:
Predicate Patterns:
. matches any item.
.[. castable as xs:date] matches any item
                                 that can be successfully cast to xs:date: for example,
                              an xs:date or xs:dateTime value, or a string
                              in the lexical form of a date, or a node whose typed value is an xs:date
                              or a string in the form of a date.
.[string() => matches('^[0-9]$')] matches any
                                 item whose string value is a sequence of digits.
.[. castable as xs:date][xs:date(.) le current-date()] matches any
                                 item that is castable to xs:date provided that the result of casting
                                 the value to xs:date is a date in the past.
Type Patterns
type(item()) matches any item.
type(node()) matches any node.
                                 (Note the distinction from the pattern node().)
type(xs:date) matches any
                                 atomic item of type xs:date (or a type derived by
                                 restriction from xs:date).
type(xs:date)[. gt current-date()] matches any date in
                                 the future.
type(xs:string)[starts-with(., 'e')] matches any xs:string
                                 value that starts with the letter e. Note there is no type conversion; the pattern
                              will not match an xs:untypedAtomic or xs:anyURI value,
                              nor will it match a node.
type(fn(*)) matches any
                                 function item.
type(fn($x as xs:integer) as xs:boolean)[.(42)] matches any function that
                                 accepts an xs:integer argument and returns a boolean result, provided
                                 that the result of calling the function with the argument value 42 is true.
type(xs:date | xs:dateTime | xs:time) matches any atomic item
                                 that is an instance of xs:date, xs:dateTime, or xs:time.
type(array(xs:date) | array(xs:dateTime) | array(xs:time)) matches any array whose
                                 members are all of type xs:date, any array whose
                                 members are all of type xs:dateTime, or any array whose
                                 members are all of type xs:time. Contrast 
                              type(array(xs:date | xs:dateTime | xs:time)) which allows
                              the three types to be mixed within a single array.
type(map((xs:string|xs:untypedAtomic), *) matches any map
                                 whose keys are all instances of xs:string or xs:untypedAtomic.
enum("red", "green", "blue") matches any one of the three strings
                                 "red", "green", or "blue".
record(first, last, *)[?location = 'UK'] matches any map whose keys include the strings "first"
                                 and "last", and that also has an entry with key "location" whose
                              value is "UK".
record(longitude, latitude) matches any map with two entries whose keys are the strings "longitude"
                                 and "latitude".
record(title, author as enum("Dickens"), *) matches having an entry whose keys is the string "title",
                                 plus an entry whose key is the string "author" and whose associated value
                                 is the string "Dickens".
array(xs:integer)[array:size(.) eq 4] matches any array of four integers.
array(record(first, last, *)) matches any array of maps where each map
                                 contains entries with keys "first" and "last". Note that
                              this includes the empty array.
array(record(first, last, *))[array:size(.) gt 0] matches any non-empty array of maps where each map
                                 contains entries with keys "first" and "last". 
type(complex) matches any value that is an instance of the item type 
                                 declared in an xsl:item-type or xsl:record-type
                                 declaration with name "complex"
type(complex)[?i eq 0] matches any value that is an instance of the 
                                 item type declared in an xsl:item-type or xsl:record-type
                                 declaration with name "complex" and that is a map with an entry having key i and value zero.
XNode Patterns
* matches any element.
para matches any para element.
chapter|appendix matches any chapter element
                              and any appendix element.
child::(chapter|appendix) matches any chapter element
                                 and any appendix element. Note that although the child axis
                              is explicitly written, an element can match even though it has no parent.
olist/entry matches any entry element with an
                              olist parent.
appendix//para matches any para element with an
                              appendix ancestor element.
appendix/descendant::(para|table) matches any para 
                                 or tableelement with an
                                 appendix ancestor element.
schema-element(us:address) matches any element that is
                              annotated as an instance of the type defined by the schema element
                              declaration us:address, and whose name is either
                              us:address or the name of another element in its
                              substitution group. 
attribute(*, xs:date) matches any attribute annotated as
                              being of type xs:date.
/ matches a document node.
document-node() matches a document node.
document-node(schema-element(my:invoice)) matches the
                              document node of a document whose document element is named
                              my:invoice and matches the type defined by the global
                              element declaration my:invoice.
text() matches any text node.
namespace-node() matches any namespace
                              node.
node() matches any node other than an attribute node,
                              namespace node, or document node.
id("W33") matches the element with unique ID
                              W33. 
para[1] matches any para element that is the
                              first para child element of its parent. It also matches a
                              parentless para element.
//para matches any para element in a tree that is rooted at a document node.
bullet[position() mod 2 = 0] matches any bullet
                              element that is an even-numbered bullet child of its
                              parent.
div[@class="appendix"]//p matches any p element
                              with a div ancestor element that has a class
                              attribute with value appendix. 
@class matches any class attribute
                              (not any element that has a class
                              attribute).
@(class|type|kind) matches any attribute named class 
                                 or type or kind.
@* matches any attribute node.
$xyz matches any XNode that is present in
                              the value of the variable $xyz. Note that it will not
                              match any other item that is present in the value of the variable.
$xyz//* matches any element that is a
                              descendant of a node that is present in the value of the variable
                              $xyz.
doc('product.xml')//* matches any element
                              within the document whose document URI is product.xml.
JNode Patterns
jnode(*, *) matches any JNode.
jnode("date of birth", *) matches any JNode representing a map
                              entry with key "date of birth".
jnode(*, array(xs:integer)) matches any JNode representing a map
                              entry or array item whose value is an array of integers.
jnode(books, array(record(Author, Title, *))) 
                              matches any JNode representing a map
                              entry whose key is "books" and whose content is an array of records,
                              each record having entries named "Author" and "Title" (with other
                              entries also allowed).
jnode(*, record(Author as enum("Dickens"), Title, *)) 
                              matches any JNode whose content is a map
                              having an entry with key "Author" and value "Dickens",
                              plus an entry with key "Title" (with other
                              entries also allowed).
[ERR XTSE0340] Where an attribute is defined to contain a pattern, it is a static error if the pattern does not match the production Pattern.
The complete grammar for patterns is listed in E Pattern Syntax Summary. It uses the notation defined in [XPath 4.0] section A.1.1 Notation.
The lexical rules for patterns are the same as the lexical rules
                  for XPath expressions, as defined in [XPath 4.0] section A.3 Lexical structure. Comments are permitted between tokens, using the
                  syntax (: ... :). All other provisions of the XPath grammar apply
                  where relevant, for example the rules for whitespace handling and
                  extra-grammatical constraints.
| Pattern | ::= | UnionPattern | 
| UnionPattern | ::= | IntersectExceptPattern  (("union"  |  "|")  IntersectExceptPattern)* | 
| IntersectExceptPattern | ::= | PrimaryPattern  (("intersect"  |  "except")  PrimaryPattern)* | 
| PrimaryPattern | ::= | PredicatePattern  |  TypePattern  |  XNodePattern  |  JNodePattern | 
| PredicatePattern | ::= | "."  PredicateXP* | 
| TypePattern | ::= | (WrappedItemTest  |  AnyItemTestXP  |  FunctionTypeXP  |  MapTypeXP  |  ArrayTypeXP  |  RecordTypeXP  |  EnumerationTypeXP)  PredicateXP* | 
| XNodePattern | ::= | PathExprP | 
| JNodePattern | ::= | "jnode"  "("  JNodePatternSelector  ","  JNodePatternContent  ")"  PredicateXP* | 
Patterns fall into four groups:
A PredicatePattern matches items according to conditions that the item must
                  satisfy: for example .[. castable as xs:integer] matches any value (it might
                  be an atomic item, a node, or an array) that is castable as an integer.
A TypePattern matches items according to their type. For example
                  type(xs:integer) matches an atomic item that is an instance of xs:integer,
                  while record(longitude, latitude) matches a map that has exactly two entries, with
                  keys "longitude" and "latitude"
An XNodePattern matches XNodes in an XTree (that is, typically a tree
                     representing the contents of an XML document), by specifying a path that
                  can be used to locate the nodes: for example order matches an element node
                  named order, while billing-address/city matches an element named city
                  whose parent node is an element named billing-address.
The grammar for XNodePattern also allows a
                  ParenthesizedPattern, which can be used to match items other than
                  XNodes. This allows patterns such as P except (Q union R),
                  where P, Q, and R are arbitrary patterns.
A JNodePattern matches JNodes in a JTree (a tree of maps and arrays,
                     often representing the contents of a JSON document), by specifying constraints on
                     the properties of the JNode, notably its ·selector· and ·content· properties.
                   For example the pattern jnode(order, *) matches a JNode corresponding
                     to a map entry with the key "order".
The four kinds of primary pattern listed above may be combined using the union
               (or |), intersect, and except operators.
               By virtue of the fact that the grammar for XNodePattern allows a parenthesized
               pattern, they can also be combined using parentheses.
The following sections define the rules for each of these groups.
| PredicatePattern | ::= | "."  PredicateXP* | 
| Predicate | ::= | "["  ExprXP  "]" | 
| Expr | ::= | (ExprSingleXP ++ ",") | 
| ExprSingle | ::= | ForExprXP | 
| ForExpr | ::= | ForClauseXP  ForLetReturnXP | 
| ForClause | ::= | "for"  (ForBindingXP ++ ",") | 
| ForLetReturn | ::= | ForExprXP  |  LetExprXP  |  ("return"  ExprSingleXP) | 
| LetExpr | ::= | LetClauseXP  ForLetReturnXP | 
| LetClause | ::= | "let"  (LetBindingXP ++ ",") | 
| QuantifiedExpr | ::= | ("some"  |  "every")  (QuantifierBindingXP ++ ",")  "satisfies"  ExprSingleXP | 
| QuantifierBinding | ::= | VarNameAndTypeXP  "in"  ExprSingleXP | 
| IfExpr | ::= | "if"  "("  ExprXP  ")"  (UnbracedActionsXP  |  BracedActionXP) | 
| UnbracedActions | ::= | "then"  ExprSingleXP  "else"  ExprSingleXP | 
| BracedAction | ::= | EnclosedExprXP | 
A PredicatePattern PP matches an item J if and only if the XPath expression taking the same form as PP returns a non-empty sequence when evaluated with a singleton focus based on J.
Note:
The pattern ., which is a PredicatePattern with no predicates,
                        matches every item.
A predicate with the numeric value 1 (one) always matches, and a predicate with
                        any other numeric value never matches. Numeric predicates in a
                        PredicatePattern are therefore not useful, but are defined this
                        way in the interests of consistency with XPath.
For example, the pattern .[contains(., "XSLT")]
                  matches any item whose atomized value contains "XSLT" as a substring. 
                  It matches values such as the string "XSLT Transformations", the
                     xs:anyURI value
                     http://www.w3.org/TR/XSLT, the attribute node 
                     class="XSD XSLT XPath", and the singleton array [ "XSLT 4.0" ].
Note:
                     Evaluation of this example pattern may fail with a dynamic error if the item in question
                     has an atomized value that is not a string, or that is a sequence of strings: an example might
                     be the array [ "XSLT", 1999 ]. It will also fail if the item cannot be atomized,
                     for example if it is a map. The rules in 6.3.4 Errors in Patterns cause these errors
                     to be masked: they simply result in the pattern being treated as non-matching.
                  
                        Patterns (especially those used in template rules) can now be defined
                        by reference to item types, so any item type can be used as a match
                        pattern. For example match="record(longitude, latitude, *)"
                        matches any map that includes the key values "longitude"
                        and "latitude".
                       [Issue 400 PR 401 21 March 2023]
| TypePattern | ::= | (WrappedItemTest  |  AnyItemTestXP  |  FunctionTypeXP  |  MapTypeXP  |  ArrayTypeXP  |  RecordTypeXP  |  EnumerationTypeXP)  PredicateXP* | 
| WrappedItemTest | ::= | "type"  ChoiceItemTypeXP | 
| ChoiceItemType | ::= | "("  (ItemTypeXP ++ "|")  ")" | 
| ItemType | ::= | RegularItemTypeXP  |  FunctionTypeXP  |  TypeNameXP  |  ChoiceItemTypeXP | 
| RegularItemType | ::= | AnyItemTestXP  |  NodeKindTestXP  |  GNodeTypeXP  |  JNodeTypeXP  |  MapTypeXP  |  ArrayTypeXP  |  RecordTypeXP  |  EnumerationTypeXP | 
| AnyItemTest | ::= | "item"  "("  ")" | 
| NodeKindTest | ::= | DocumentTestXP | 
| GNodeType | ::= | "gnode"  "("  ")" | 
| JNodeType | ::= | "jnode"  "("  SequenceTypeXP?  ")" | 
| MapType | ::= | AnyMapTypeXP  |  TypedMapTypeXP | 
| ArrayType | ::= | AnyArrayTypeXP  |  TypedArrayTypeXP | 
| RecordType | ::= | AnyRecordTypeXP  |  TypedRecordTypeXP | 
| EnumerationType | ::= | "enum"  "("  (StringLiteralXP ++ ",")  ")" | 
| FunctionType | ::= | AnyFunctionTypeXP | 
| AnyFunctionType | ::= | ("function"  |  "fn")  "("  "*"  ")" | 
| TypedFunctionType | ::= | ("function"  |  "fn")  "("  (TypedFunctionParamXP ** ",")  ")"  "as"  SequenceTypeXP | 
| TypeName | ::= | EQNameXP | 
| EQName | ::= | QName  |  URIQualifiedNameXP | 
| TypedFunctionParam | ::= | ("$"  EQNameXP  "as")?  SequenceTypeXP | 
| URIQualifiedName | ::= | BracedURILiteral  (NCName  ":")?  NCName | 
| /* ws: explicit */ | ||
| SequenceType | ::= | ("empty-sequence"  "("  ")") | 
| OccurrenceIndicator | ::= | "?"  |  "*"  |  "+" | 
| /* xgs: occurrence-indicators */ | ||
| AnyMapType | ::= | "map"  "("  "*"  ")" | 
| TypedMapType | ::= | "map"  "("  ItemTypeXP  ","  SequenceTypeXP  ")" | 
| AnyArrayType | ::= | "array"  "("  "*"  ")" | 
| TypedArrayType | ::= | "array"  "("  SequenceTypeXP  ")" | 
| AnyRecordType | ::= | "record"  "("  "*"  ")" | 
| TypedRecordType | ::= | "record"  "("  (FieldDeclarationXP ** ",")  ExtensibleFlagXP?  ")" | 
| FieldDeclaration | ::= | FieldNameXP  "?"?  ("as"  SequenceTypeXP)? | 
| FieldName | ::= | NCNameXP  |  StringLiteralXP | 
| StringLiteral | ::= | AposStringLiteral  |  QuotStringLiteral | 
| /* ws: explicit */ | ||
| ExtensibleFlag | ::= | ","  "*" | 
| AposStringLiteral | ::= | "'"  (EscapeApos  |  [^'])*  "'" | 
| /* ws: explicit */ | ||
| QuotStringLiteral | ::= | '"'  (EscapeQuot  |  [^"])*  '"' | 
| /* ws: explicit */ | ||
| Predicate | ::= | "["  ExprXP  "]" | 
| Expr | ::= | (ExprSingleXP ++ ",") | 
| ExprSingle | ::= | ForExprXP | 
| ForExpr | ::= | ForClauseXP  ForLetReturnXP | 
| ForClause | ::= | "for"  (ForBindingXP ++ ",") | 
| ForLetReturn | ::= | ForExprXP  |  LetExprXP  |  ("return"  ExprSingleXP) | 
| LetExpr | ::= | LetClauseXP  ForLetReturnXP | 
| LetClause | ::= | "let"  (LetBindingXP ++ ",") | 
| QuantifiedExpr | ::= | ("some"  |  "every")  (QuantifierBindingXP ++ ",")  "satisfies"  ExprSingleXP | 
| QuantifierBinding | ::= | VarNameAndTypeXP  "in"  ExprSingleXP | 
| IfExpr | ::= | "if"  "("  ExprXP  ")"  (UnbracedActionsXP  |  BracedActionXP) | 
| UnbracedActions | ::= | "then"  ExprSingleXP  "else"  ExprSingleXP | 
| BracedAction | ::= | EnclosedExprXP | 
A type pattern tests whether an item matches a given item type, optionally qualified with one or more predicates that the value must also satisfy.
The general-purpose construct type(ItemType) allows any ItemType
                  to be used in a pattern. Where syntactic constraints permit, many ItemTypes can 
                     also be used directly: for example
                  type(item()) can be abbreviated as item().
For example:
type(xs:integer) matches any instance of
                        xs:integer
type(xs:integer)[. gt 0] matches
                        any positive integer.
type(xs:string | xs:untypedAtomic)[matches(., '[0-9]+')] matches
                        any instance of xs:string or xs:untypedAtomic that
                        contains a sequence of decimal digits.
type(node()) matches any node. (This is not the same as the pattern
                        node(), which for historical reasons only matches  element, text, comment, 
                        and processing instruction nodes).
More formally, an item $J matches a pattern type(T)[P1][P2][P3] if
                  the XPath expression $J instance of T and exists($J[P1][P2][P3]) is true.
Note:
As with predicate patterns, numeric predicates are allowed, but serve no useful purpose.
A pattern written as record(A, B, C) 
                     is an abbreviation for type(record(A, B, C))
                     (retaining any predicates). For example, the pattern record(first as enum("Sharon"), last, *)
                  matches any map having entries with the string-valued keys "first" and "last",
                     where the entry for the key "first" is equal to the string "Sharon".
Note:
The item type in a pattern can be any ItemType, but patterns that match
                        XNodes or JNodes can usually be expressed more economically
                        as an XNode Pattern (see 6.3.2.3 XNode Patterns) or JNode Pattern
                           (see 6.3.2.4 JNode Patterns): 
                        for example match="type(element(PERSON))" has the same meaning as
                        match="element(PERSON)", which in turn is usually abbreviated to match="PERSON".
Although match="type(element(PERSON))" matches exactly the same items as
                     match="PERSON", the priority relative to other template rules (in the absence of an explicit
                     priority attribute) may be different.
                        A function call at the outermost level can now be named using any valid EQName
                        (for example fn:doc) provided it binds to one of the permitted functions
                        fn:doc, fn:id, fn:element-with-id, 
                        fn:key, or fn:root. 
                        If two functions are called, for example doc('a.xml')/id('abc'),
                        it is no longer necessary to put the second call in parentheses.
                       [Issues 1375 1522 PR 1378 15 October 2024]
                        The semantics of patterns using the intersect and except
                        operators have been changed to reflect the intuitive meaning: for example
                        a node now matches A except B if it matches A
                        and does not match B.
                       [Issue 402 ]
| XNodePattern | ::= | PathExprP | 
| PathExprP | ::= | RootedPath | 
| /* xgs: leading-lone-slash */ | ||
| RootedPath | ::= | VarRefXP  PredicateXP*  (("/"  |  "//")  RelativePathExprP)? | 
| VarRef | ::= | "$"  EQNameXP | 
| EQName | ::= | QName  |  URIQualifiedNameXP | 
| URIQualifiedName | ::= | BracedURILiteral  (NCName  ":")?  NCName | 
| /* ws: explicit */ | ||
| Predicate | ::= | "["  ExprXP  "]" | 
| Expr | ::= | (ExprSingleXP ++ ",") | 
| ExprSingle | ::= | ForExprXP | 
| RelativePathExprP | ::= | StepExprP  (("/"  |  "//")  StepExprP)* | 
| StepExprP | ::= | PostfixExprP  |  AxisStepP | 
| PostfixExprP | ::= | (FunctionCallP  |  ParenthesizedPattern)  PredicateXP* | 
| AxisStepP | ::= | ForwardStepP  PredicateXP* | 
| FunctionCallP | ::= | OuterFunctionName  ArgumentListP | 
| ParenthesizedPattern | ::= | "("  Pattern  ")" | 
| ForwardStepP | ::= | (ForwardAxisP  NodeTestXP)  |  AbbrevForwardStepP | 
XNode Patterns are used to match XNodes (typically, nodes in a tree representing
                  an XML document). In addition, an XNodePattern that consists
               simply of a ParenthesizedPattern, followed optionally by one
                  or more predicates, can match any kind of item.
The names of many of these constructs are chosen to align with the XPath 4.0 grammar.
                  Constructs whose names are suffixed with P are restricted forms of
                  the corresponding XPath 4.0 construct without the suffix. Constructs labeled with
                  the suffix “XP” are defined in [XPath 4.0].
In addition to satisfying the grammar as given, the content of any
                  ParenthesizedPattern within an XNodePattern
               that contains a / or // operator (other than within
               a predicate) must itself parse as an XNodePattern.
Note:
For example, this means that (array(*))/para
                  is not a valid pattern; neither is para/(array(*)).
The reason for this rule is to ensure that every non-trivial XNodePattern
                  is a valid XPath expression, which enables the semantics to be defined
                  in terms of the semantics of XPath expressions: see 6.3.2.3.1 The Meaning of an XNode Pattern.
In a FunctionCallP, the
                     EQName used for the function name must bind to
                  one of the functions fn:doc#1, fn:id#1, 
                  fn:id#2, fn:element-with-id#1,
                  fn:element-with-id#2
                  fn:key#2, fn:key#3
                  or fn:root#0.
Note:
In the case of a call to the
                     fn:root function, the argument list must be empty: that is,
                  only the zero-arity form of the function is allowed.
Note:
As with XPath expressions, the pattern / union /* can be parsed in
                     two different ways, and the chosen interpretation is to treat
                        union as an element name rather than as an operator. The other
                     interpretation can be achieved by writing (/) union (/*)
The meaning of an XNode pattern is defined formally as follows, where “if” is to be read as “if and only if”.
A ParenthesizedPattern followed by zero or more
                        predicates matches an item if the pattern
                        within the parentheses matches the item and each of the predicates
                        matches the item.
An XNode matches a PathExprP under the following conditions:
The PathExprP pattern is converted to an 
                           expression, 
                           called the equivalent expression. The
                           equivalent expression to a PathExprP is the XPath
                           expression that takes the same lexical form as the PathExprP as
                           written, with the following adjustment:
If any PathExprP in the
                              Pattern is a RelativePathExprP, then the
                           first StepExprP
                           PS of this RelativePathExprP is adjusted
                        to allow it to match a parentless element, attribute, or namespace node. The
                        adjustment depends on the axis used in this step, whether it appears
                        explicitly or implicitly (according to the rules of [XPath 4.0] section 4.7.7 Abbreviated Syntax), 
                        and is made as follows:
If the NodeTest in PS is
                                 document-node() (optionally with arguments), and if no
                              explicit axis is specified, then the axis in step PS is
                              taken as self rather than child.
If PS uses the child axis (explicitly or implicitly), and
                              if the NodeTest in PS is not
                                 document-node() (optionally with arguments), then the
                              axis in step PS is replaced by child-or-top,
                              which is defined as follows. If the context node is a parentless
                              element, comment, processing-instruction, or text node then the
                                 child-or-top axis selects the context node; otherwise
                              it selects the children of the context node. It is a forwards axis
                              whose principal node kind is element.
If PS uses the attribute axis (explicitly or implicitly),
                              then the axis in step PS is replaced by
                                 attribute-or-top, which is defined as follows. If the
                              context node is an attribute node with no parent, then the
                                 attribute-or-top axis selects the context node;
                              otherwise it selects the attributes of the context node. It is a
                              forwards axis whose principal node kind is attribute.
If PS uses the namespace axis (explicitly or implicitly), then the axis in step
                                 PS is replaced by namespace-or-top, which
                              is defined as follows. If the context node is a namespace node with no
                              parent, then the namespace-or-top axis selects the
                              context node; otherwise it selects the namespace nodes of the context
                              node. It is a forwards axis whose principal node kind is
                              namespace.
The axes child-or-top, attribute-or-top, and
                           namespace-or-top are introduced only for definitional
                        purposes. They cannot be used explicitly in a user-written pattern or
                        expression.
Note:
The purpose of this adjustment is to ensure that a pattern such as
                              person matches any element named person,
                           even if it has no parent; and similarly, that the pattern
                              @width matches any attribute named width,
                           even a parentless attribute. The rule also ensures that a pattern using a
                              NodeTest of the form document-node(...)
                           matches a document node. The pattern node() will match any
                           element, text node, comment, or processing instruction, whether or not it
                           has a parent. For backwards compatibility reasons, the pattern
                              node(), when used without an explicit axis, does not
                           match document nodes, attribute nodes, or namespace nodes. The rules are
                           also phrased to ensure that positional patterns of the form
                              para[1] continue to count nodes relative to their parent,
                           if they have one. To match any node at all,
                              XSLT 4.0 allows the pattern type(node()) to be
                              used.
The meaning of the pattern is then defined in terms of the semantics of the
                  equivalent expression, denoted below as EE.
Specifically, an item N matches a PathExprP
                  pattern P if  the following applies, where
                     EE is the equivalent expression to P:
N is an XNode, and the result of evaluating the expression
                           root(.)//(EE) with a singleton focus based on N is a sequence that
                        includes the XNode N.
                     
If a pattern appears in an attribute of an element that
                     is processed with XSLT 1.0
                        behavior (see 3.9 Backwards Compatible Processing), then the
                  semantics of the pattern are defined on the basis that the equivalent XPath
                  expression is evaluated with XPath 1.0
                     compatibility mode set to true.
Note:
This version of the specification includes an incompatible change
                  to the semantics of patterns using the intersect and
                  except operators. This change is made to eliminate 
                  cases where the behavior defined in XSLT 3.0 was counter-intuitive.
Consider the pattern para except appendix//para.
                  In XSLT 4.0 this matches any para element that is not
                  the descendant of an appendix element. In XSLT 3.0 it
                  would match the para element in the XML tree shown below:
<appendix> <section> <para/> </section> </appendix>
because there is an element $S (specifically, 
                     the section element), such that the expression
                     $S//(para except appendix//para) selects this
                     para element.
It is recommended that processors should report
                  a compatibility warning when such constructs are encountered. The problem
                  arises with patterns using intersect or except
                  where one of the branches uses the descendant axis: it does not arise
                  in simple cases like * except A, or @* except @code,
                  where the branches only use the child or attribute axis.
The change does not affect the meaning of patterns that use the intersect
                  or except operators nested within a path expression, for example
                  a pattern such as A[.//C except B//C].
The XNode pattern
                     p matches any p element, because a p
                     element will always be present in the result of evaluating the expression
                     root(.)//(child-or-top::p). Similarly, / matches a
                     document node, and only a document node, because the result of the expression
                     root(.)//(/) returns the root node of the tree containing the
                     context node if and only if it is a document node.
The XNode pattern
                     node() matches all XNodes selected by the expression
                        root(.)//(child-or-top::node()), that is, all element, text,
                     comment, and processing instruction nodes, whether or not they have a parent.
                     It does not match attribute or namespace nodes because the expression does not
                     select nodes using the attribute or namespace axes. It does not match document
                     nodes because for backwards compatibility reasons the child-or-top
                     axis does not match a document node.
Note:
The pattern type(node()) matches all XNodes.
The XNode pattern
                     $V matches all XNodes selected by the expression
                        root(.)//($V), that is, all XNodes in the value of $V (which
                     will typically be a global variable, though when the pattern is used in
                     contexts such as the xsl:number or
                        xsl:for-each-group instructions, it can also be a local
                     variable).
The XNode pattern
                     doc('product.xml')//product matches all XNodes selected by the
                     expression root(.)//(doc('product.xml')//product), that is, all
                        product elements in the document whose URI is
                        product.xml.
The XNode pattern
                     root(.)/self::E matches an E element that is the root
                     of a tree (that is, an E element with no parent node).
Although the semantics of XNode patterns are
                  specified formally in terms of expression evaluation, it is possible to understand
                  pattern matching using a different model. A XNode pattern such as
                     book/chapter/section can be examined from right to left. A node
                  will only match this pattern if it is a section element; and then,
                  only if its parent is a chapter; and then, only if the parent of that
                     chapter is a book. When the pattern uses the
                     // operator, one can still read it from right to left, but this
                  time testing the ancestors of a node rather than its parent. For example
                     appendix//section matches every section element that
                  has an ancestor appendix element.
The formal definition, however, is useful for understanding the meaning of a
                  pattern such as para[1]. This matches any node selected by the
                  expression root(.)//(child-or-top::para[1]): that is, any
                     para element that is the first para child of its
                  parent, or a para element that has no parent.
Note:
An implementation, of course, may use any algorithm it wishes for evaluating patterns, so long as the result corresponds with the formal definition above. An implementation that followed the formal definition by evaluating the equivalent expression and then testing the membership of a specific node in the result would probably be very inefficient.
| JNodePattern | ::= | "jnode"  "("  JNodePatternSelector  ","  JNodePatternContent  ")"  PredicateXP* | 
| JNodePatternSelector | ::= | "*"  |  NCNameXP  |  Constant | 
| Constant | ::= | StringLiteralXP  |  ("-"?  NumericLiteralXP)  |  QNameLiteralXP  |  ("true"  "("  ")")  |  ("false"  "("  ")") | 
| StringLiteral | ::= | AposStringLiteral  |  QuotStringLiteral | 
| /* ws: explicit */ | ||
| AposStringLiteral | ::= | "'"  (EscapeApos  |  [^'])*  "'" | 
| /* ws: explicit */ | ||
| QuotStringLiteral | ::= | '"'  (EscapeQuot  |  [^"])*  '"' | 
| /* ws: explicit */ | ||
| NumericLiteral | ::= | IntegerLiteral  |  HexIntegerLiteral  |  BinaryIntegerLiteral  |  DecimalLiteral  |  DoubleLiteral | 
| IntegerLiteral | ::= | Digits | 
| /* ws: explicit */ | ||
| Digits | ::= | DecDigit  ((DecDigit  |  "_")*  DecDigit)? | 
| /* ws: explicit */ | ||
| DecDigit | ::= | [0-9] | 
| /* ws: explicit */ | ||
| HexIntegerLiteral | ::= | "0x"  HexDigits | 
| /* ws: explicit */ | ||
| HexDigits | ::= | HexDigit  ((HexDigit  |  "_")*  HexDigit)? | 
| /* ws: explicit */ | ||
| HexDigit | ::= | [0-9a-fA-F] | 
| /* ws: explicit */ | ||
| BinaryIntegerLiteral | ::= | "0b"  BinaryDigits | 
| /* ws: explicit */ | ||
| BinaryDigits | ::= | BinaryDigit  ((BinaryDigit  |  "_")*  BinaryDigit)? | 
| /* ws: explicit */ | ||
| BinaryDigit | ::= | [01] | 
| /* ws: explicit */ | ||
| DecimalLiteral | ::= | ("."  Digits)  |  (Digits  "."  Digits?) | 
| /* ws: explicit */ | ||
| DoubleLiteral | ::= | (("."  Digits)  |  (Digits  ("."  Digits?)?))  [eE]  [+-]?  Digits | 
| /* ws: explicit */ | ||
| QNameLiteral | ::= | "#"  EQNameXP | 
| EQName | ::= | QName  |  URIQualifiedNameXP | 
| URIQualifiedName | ::= | BracedURILiteral  (NCName  ":")?  NCName | 
| /* ws: explicit */ | ||
| JNodePatternContent | ::= | "*"  |  SequenceTypeXP | 
| SequenceType | ::= | ("empty-sequence"  "("  ")") | 
| ItemType | ::= | RegularItemTypeXP  |  FunctionTypeXP  |  TypeNameXP  |  ChoiceItemTypeXP | 
| RegularItemType | ::= | AnyItemTestXP  |  NodeKindTestXP  |  GNodeTypeXP  |  JNodeTypeXP  |  MapTypeXP  |  ArrayTypeXP  |  RecordTypeXP  |  EnumerationTypeXP | 
| AnyItemTest | ::= | "item"  "("  ")" | 
| NodeKindTest | ::= | DocumentTestXP | 
| GNodeType | ::= | "gnode"  "("  ")" | 
| JNodeType | ::= | "jnode"  "("  SequenceTypeXP?  ")" | 
| MapType | ::= | AnyMapTypeXP  |  TypedMapTypeXP | 
| ArrayType | ::= | AnyArrayTypeXP  |  TypedArrayTypeXP | 
| RecordType | ::= | AnyRecordTypeXP  |  TypedRecordTypeXP | 
| EnumerationType | ::= | "enum"  "("  (StringLiteralXP ++ ",")  ")" | 
| FunctionType | ::= | AnyFunctionTypeXP | 
| AnyFunctionType | ::= | ("function"  |  "fn")  "("  "*"  ")" | 
| TypedFunctionType | ::= | ("function"  |  "fn")  "("  (TypedFunctionParamXP ** ",")  ")"  "as"  SequenceTypeXP | 
| TypeName | ::= | EQNameXP | 
| ChoiceItemType | ::= | "("  (ItemTypeXP ++ "|")  ")" | 
| OccurrenceIndicator | ::= | "?"  |  "*"  |  "+" | 
| /* xgs: occurrence-indicators */ | ||
| Predicate | ::= | "["  ExprXP  "]" | 
| Expr | ::= | (ExprSingleXP ++ ",") | 
| ExprSingle | ::= | ForExprXP | 
| ForExpr | ::= | ForClauseXP  ForLetReturnXP | 
| ForClause | ::= | "for"  (ForBindingXP ++ ",") | 
| ForLetReturn | ::= | ForExprXP  |  LetExprXP  |  ("return"  ExprSingleXP) | 
| LetExpr | ::= | LetClauseXP  ForLetReturnXP | 
| LetClause | ::= | "let"  (LetBindingXP ++ ",") | 
| QuantifiedExpr | ::= | ("some"  |  "every")  (QuantifierBindingXP ++ ",")  "satisfies"  ExprSingleXP | 
| QuantifierBinding | ::= | VarNameAndTypeXP  "in"  ExprSingleXP | 
| IfExpr | ::= | "if"  "("  ExprXP  ")"  (UnbracedActionsXP  |  BracedActionXP) | 
| UnbracedActions | ::= | "then"  ExprSingleXP  "else"  ExprSingleXP | 
| BracedAction | ::= | EnclosedExprXP | 
A JNodePattern matches JNodes. It has three parts:
The JNodePatternSelector defines the required value of the ·selector· property of the JNode.
The JNodePatternContent defines the required type of the ·content· property of the JNode.
An optional list of zero or more predicates that the JNode must satisfy.
Here are some examples of JNode patterns:
The pattern jnode(code, xs:string) matches any
                     JNode whose ·selector· is the string "code" and whose ·content·
                     is an instance of xs:string.
The pattern jnode("date of birth", xs:date) matches any
                     JNode whose ·selector· is the string "date of birth" and whose ·content·
                     is an instance of xs:date.
The pattern jnode(*, array(*)) matches any
                     JNode whose ·content· is an array, regardless of its ·selector· property.
The pattern jnode(*, record(Author, Title, *))[ancestor::books] matches any
                     JNode whose ·content· is an instance of the type record(Author, Title, *), 
                     provided it has an ancestor with the ·selector· value "books".
The pattern jnode(*, record(Author as enum("Dickens"), Title, *)) matches any
                     JNode whose ·content· is a map having an Author entry with the value
                     "Dickens", a Title entry with any value, and optionally
                     other entries.
The pattern jnode(*, *)[jnode-selector() = current-date()] matches any
                     JNode whose ·selector· property is an xs:date value equal to the current date.
                     The comparison uses the implicit timezone from the dynamic context. The rules for error
                  handling in patterns ensure that any JNode whose ·selector· value is of a type other
                  than xs:date does not match, because evaluation of the predicate raises an error.
More specifically, a JNode J matches the pattern if all the following conditions are satisfied:
One of the following conditions is satisfied:
*;NCName.
                                 and J has a ·selector· property that is an instance of xs:string 
                                 whose value is equal to the NCName under the rules of the fn:atomic-equal
                                 function.Constant.
                                 and J has a ·selector· property that is equal to the value
                                 of the constant (evaluated as an XPath expression) under the rules of the fn:atomic-equal function.One of the following conditions is satisfied:
*;All the predicates are satisfied. The predicates are evaluated against the item J in the same way as for a predicate pattern.
[Definition: If no priority
                  attribute is specified on an xsl:template element, a
                     default priority is computed, based on the syntactic form of the pattern 
               supplied in the match attribute.] The rules are as follows. 
The following rules apply:
If the outermost pattern is a ParenthesizedPattern then the default priority is the default priority of the contained pattern.
If the outermost pattern is a UnionPattern then the default priority is the maximum of the default priorities of the alternatives.
Note:
This is a backwards incompatible change from XSLT 3.0 and earlier versions, which treated the template rule as equivalent to multiple template rules with different priorities.
The change is made because of the increasing complexity of extending
                     the rule to patterns like @(a|b), or attribute(a|b, xs:integer)
                     which are defined to be semantically identical to equivalent union patterns;
                     and to prevent confusion with type patterns such as 
                     type(element(a)|element(b)), where different rules apply.
The change affects any template rule with a union pattern that (a) has no explicit priority attribute, and (b) has multiple branches with different default priority. It is recommended that processors should output a compatibility warning when such template rules are encountered.
The change has two effects. Firstly, if two alternatives 
                        in a union pattern have different priority
                     (for example in a pattern such as a | b/c, the priority of one of
                     the branches will be raised to that of the other branch. Secondly, in cases where
                     the same item matches both branches, a call on xsl:next-match will
                     never cause the same template rule to be evaluated repeatedly.
If the top-level pattern is an IntersectExceptPattern then the default priority of the pattern is that of the first operand pattern.
If the pattern is a PredicatePattern then its default priority is 1 (one), unless there are no predicates, in which case the priority is -1 (minus one).
If the pattern is a TypePattern, then its default priority is 1 (one), unless there are no predicates, in which case the priority is 0 (zero).
If the pattern is a PathExprP taking the form
                        /, then the priority is −0.5 (minus 0.5).
If the pattern is a PathExprP taking the form of an
                        EQName optionally preceded by a ForwardAxisP or has the form
                        processing-instruction(
                     StringLiteralXP
                     ) or processing-instruction(
                     NCNameNames
                     ) optionally preceded by a ForwardAxisP, then the priority is 0 (zero).
If the pattern is a PathExprP taking the form of an ElementTestXP or AttributeTestXP, optionally preceded by a ForwardAxisP, then the priority is as shown in the table below. In this table:
The symbols E, A, and T represent an arbitrary element name, attribute name, and type name respectively;
The symbol W represents a 
                        WildcardXP other than *
                        (for example prefix:* or *:local);
The symbol * represents
                        itself.
The presence or absence of the symbol ? following a type
                     name does not affect the priority.
| Format | Priority | Notes | 
|---|---|---|
| element() | −0.5 | (equivalent to *) | 
| element(*) | −0.5 | (equivalent to *) | 
| attribute() | −0.5 | (equivalent to @*) | 
| attribute(*) | −0.5 | (equivalent to @*) | 
| element(W) | −0.25 | |
| attribute(W) | −0.25 | |
| element(E) | 0 | (equivalent to E) | 
| element(*, T) | 0 | (matches by type only) | 
| attribute(A) | 0 | (equivalent to @A) | 
| attribute(*, T) | 0 | (matches by type only) | 
| element(W, T) | 0.125 | |
| element(E, T) | 0.25 | (matches by name and type) | 
| schema-element(E) | 0.25 | (matches by substitution group and type) | 
| attribute(W, T) | 0.125 | |
| attribute(A, T) | 0.25 | (matches by name and type) | 
| schema-attribute(A) | 0.25 | (matches by name and type) | 
If the pattern is a PathExprP taking the form of a DocumentTestXP, then if it includes no ElementTestXP or SchemaElementTestXP the priority is −0.5. If it does include an ElementTestXP or SchemaElementTestXP, then the priority is the same as the priority of that ElementTestXP or SchemaElementTestXP, computed according to the table above.
If the pattern is a PathExprP taking the form of an
                        NCNameNames:*, 
                           BracedURILiteralXP*, or
                        *:NCNameNames, optionally
                     preceded by a ForwardAxisP, then the priority is
                     −0.25. 
If the pattern is a PathExprP taking the form of any other NodeTestXP, optionally preceded by a ForwardAxisP, then the priority is −0.5.
In all other cases, the default priority is +0.5.
Note:
In many cases this means that highly selective patterns have higher priority than less selective patterns. The most common kind of pattern (a pattern that tests for a node of a particular kind, with a particular expanded QName or a particular type) has priority 0. The next less specific kind of pattern (a pattern that tests for a node of a particular kind and an expanded QName with a particular namespace URI) has priority −0.25. Patterns less specific than this (patterns that just test for nodes of a given kind) have priority −0.5. Patterns that specify both the name and the required type have a priority of +0.25, putting them above patterns that only specify the name or the type. Patterns more specific than this, for example patterns that include predicates or that specify the ancestry of the required node, have priority 0.5.
However, it is not invariably true that a more selective pattern has higher
                  priority than a less selective pattern. For example, the priority of the pattern
                     node()[self::*] is higher than that of the pattern
                     salary. Similarly, the patterns attribute(*,
                     xs:decimal) and attribute(*, xs:short) have the same
                  priority, despite the fact that the latter pattern matches a subset of the nodes
                  matched by the former. Therefore, to achieve clarity in a stylesheet it is good practice to allocate
                  explicit priorities.
If the pattern has one or more predicates, then the default priority is +0.5.
The default priority of the pattern jnode(*, *) is -1 (minus one).
The default priority of the equivalent pattern 
                        jnode(*, item()*) is also -1 (minus one).
The default priority of the pattern jnode(S, *),
                        where S is any constant, is 0 (zero).
The default priority of the equivalent pattern jnode(S, item()*),
                        where S is any constant, is also 0 (zero).
The default priority of the pattern jnode(*, T),
                        where T is any sequence type other than item()*, is 0 (zero).
The default priority of the pattern jnode(S, T),
                        where S is any constant, and T is any sequence type other 
                        than item()*, is +0.25.
A dynamic error or type error that occurs during the evaluation of a pattern against a particular item has the effect that the item being tested is treated as not matching the pattern. The error does not cause the transformation to fail, and cannot be caught by a try/catch expression surrounding the instruction that causes the pattern to be evaluated.
Note:
The reason for this provision is that it is difficult for the stylesheet author to predict which predicates in a pattern will actually be evaluated. In the case of match patterns in template rules, it is not even possible to predict which patterns will be evaluated against a particular node.
There is a risk that ignoring errors in this way may make programming mistakes harder to debug. Implementations may mitigate this by providing warnings or other diagnostics when evaluation of a pattern triggers an error condition.
Static errors in patterns, including dynamic and type errors that are raised statically as permitted by the specification, are raised in the normal way and cause the transformation to fail.
The requirement to detect and raise a circularity as a dynamic error overrides this rule.
                  The xsl:for-each and xsl:apply-templates
                  instructions acquire an attribute separator that can be
                  used to insert content between adjacent items. [This change was in the
                  editor's draft adopted as a baseline when the WG commenced work.]
                 [  1 January 2022]
<!-- Category: instruction -->
<xsl:apply-templates
  select? = expression
  mode? = token
  separator? = { string } >
  <!-- Content: (xsl:sort | xsl:with-param)* -->
</xsl:apply-templates>
The xsl:apply-templates instruction takes as input a sequence of
                  items (typically nodes in a source tree), and produces as output a sequence of
               items; these will often be nodes to be added to a result tree.
If the instruction has one or more xsl:sort children, then the input
               sequence is sorted as described in 13 Sorting. The result of this sort
               is referred to below as the sorted sequence; if there are no
                  xsl:sort elements, then the sorted sequence is the same as the
               input sequence.
Each item in the input sequence is processed by
               finding a template rule whose pattern matches that item. If there is more than one such template rule, the best among them
               is chosen, using rules described in 6.6 Conflict Resolution for Template Rules. If there is no
               template rule whose pattern matches the item, a
               built-in template rule is used (see 6.8 Built-in Template Rules). The chosen
               template rule is evaluated. The rule that matches the Nth item in the sorted sequence is evaluated with that
                  item as the context item, with N as the context position, and with the length of the
               sorted sequence as the context size. Each
               template rule that is evaluated produces a sequence of items as its result. The
               resulting sequences (one for each item in the
               sorted sequence) are then concatenated, to form a single sequence. They are
               concatenated retaining the order of the items in
               the sorted sequence. The final concatenated sequence forms the result of the
                  xsl:apply-templates instruction. 
Suppose the source document is as follows:
<message>Proceed <emph>at once</emph> to the exit!</message>
This can be processed using the two template rules shown below.
<xsl:template match="message"> <p> <xsl:apply-templates select="child::node()"/> </p> </xsl:template> <xsl:template match="emph"> <b> <xsl:apply-templates select="child::node()"/> </b> </xsl:template>
There is no template rule for the document node; the built-in template rule for
                  this node will cause the message element to be processed. The
                  template rule for the message element causes a p element
                  to be written to the result tree; the
                  contents of this p element are constructed as the result of the
                     xsl:apply-templates instruction. This instruction selects the
                  three child nodes of the message element (a text node containing the
                  value Proceed , an emph element node, and a text node
                  containing the value  to the exit!). The two text nodes are
                  processed using the built-in template rule for text nodes, which returns a copy of
                  the text node. The emph element is processed using the explicit
                  template rule that specifies match="emph".
When the emph element is processed, this template rule constructs a
                     b element. The contents of the b element are
                  constructed by means of another xsl:apply-templates instruction,
                  which in this case selects a single node (the text node containing the value
                     at once). This is again processed using the built-in template
                  rule for text nodes, which returns a copy of the text node.
The final result of the match="message" template rule thus consists
                  of a p element node with three children: a text node containing the
                  value Proceed , a b element that is the parent of a
                  text node containing the value at once, and a text node containing
                  the value  to the exit!. This result
                     tree might be serialized as:
<p>Proceed <b>at once</b> to the exit!</p>
The default value of the select attribute is child::node(),
               which causes all the children of the context node to be processed.
               [ERR XTTE0510] It is a type error if an
                        xsl:apply-templates instruction with no select
                     attribute is evaluated when the context
                        item is not a node. 
            
A select attribute can be used to process items selected by an expression instead of processing all children. The
               value of the select attribute is an expression. 
The following example processes all of the given-name children of the
                     author elements that are children of
                  author-group:
<xsl:template match="author-group"> <fo:wrapper> <xsl:apply-templates select="author/given-name"/> </fo:wrapper> </xsl:template>
It is also possible to process elements that are not descendants of the context
                  node. This example assumes that a department element has
                     group children and employee descendants. It finds an
                  employee’s department and then processes the group children of
                  the department.
<xsl:template match="employee"> <fo:block> Employee <xsl:apply-templates select="name"/> belongs to group <xsl:apply-templates select="ancestor::department/group"/> </fo:block> </xsl:template>
It is possible to write template rules that are matched according to the schema-defined type of an element or attribute. The following example applies different formatting to the children of an element depending on their type:
<xsl:template match="product"> <table> <xsl:apply-templates select="*"/> </table> </xsl:template> <xsl:template match="product/*" priority="3"> <tr> <td><xsl:value-of select="name()"/></td> <td><xsl:next-match/></td> </tr> </xsl:template> <xsl:template match="product/element(*, xs:decimal) | product/element(*, xs:double)" priority="2"> <xsl:value-of select="format-number(xs:double(.), '#,###0.00')"/> </xsl:template> <xsl:template match="product/element(*, xs:date)" priority="2"> <xsl:value-of select="format-date(., '[Mn] [D], [Y]')"/> </xsl:template> <xsl:template match="product/*" priority="1.5"> <xsl:value-of select="."/> </xsl:template>
The xsl:next-match instruction is described in 6.9 Overriding Template Rules.
Multiple xsl:apply-templates elements can be used within a single
                  template to do simple reordering. The following example creates two HTML tables.
                  The first table is filled with domestic sales while the second table is filled
                  with foreign sales.
<xsl:template match="product"> <table> <xsl:apply-templates select="sales/domestic"/> </table> <table> <xsl:apply-templates select="sales/foreign"/> </table> </xsl:template>
It is possible for there to be two matching descendants where one is a descendant of the other. This case is not treated specially: both descendants will be processed as usual.
For example, given a source document
<doc><div><div></div></div></doc>
the rule
<xsl:template match="doc"> <xsl:apply-templates select=".//div"/> </xsl:template>
will process both the outer div and inner div
                  elements.
This means that if the template rule for the div element processes
                  its own children, then these grandchildren will be processed more than once, which
                  is probably not what is required. The solution is to process one level at a time
                  in a recursive descent, by using select="div" in place of
                     select=".//div"
               
This example reads a non-XML text file and processes it line-by-line, applying different template rules based on the content of each line:
<xsl:template name="main"> <xsl:apply-templates select="unparsed-text-lines('input.txt')"/> </xsl:template> <xsl:template match="type(xs:string)[starts-with(., '==')]"> <h2><xsl:value-of select="replace(., '==', '')"/></h2> </xsl:template> <xsl:template match="type(xs:string)[starts-with(., '::')]"> <p class="indent"><xsl:value-of select="replace(., '::', '')"/></p> </xsl:template> <xsl:template match="type(xs:string)"> <p class="body"><xsl:value-of select="."/></p> </xsl:template>
This example reads a JSON data file and formats it as XHTML.
It takes the following JSON data as input:
[
  { "Title": "Computer Architecture",
    "Authors": [ "Enid Blyton"] ,
    "Category": "Computers",
    "Price": 42.60
  },
  { "Title": "Steppenwolf",
    "Authors": [ "Hermann Hesse" ],
    "Category": "Fiction",
    "Price": 12.00
  },
  {  "Title": "How to Explore Outer Space with Binoculars",
     "Authors": [ "Bruce Betts", "Erica Colon" ],
     "Category": "Science",
     "Price": 10.40
  }
]
                  The following template rules are used. The setting expand-text="yes" is assumed:
<xsl:record-type name="book" extensible="yes"> <xsl:field name="Title"/> <xsl:field name="Authors"/> <xsl:field name="Category"/> </xsl:record-type> <xsl:template name="xsl:initial-template"> <xsl:apply-templates select="parse-json('input.json')"/> </xsl:template> <xsl:template match="array(book)"> <h1>Christmas Book Selection</h1> <table> <thead> <tr> <th>Title</th> <th>Authors</th> <th>Category</th> <th>Price</th> </tr> </thead> <tbody> <xsl:apply-templates select="?*"/> </tbody> </table> </xsl:template> <xsl:template match="type(book)"> <tr> <td>{?Title}</td> <td>{?Authors?* => string-join(", ")}</td> <td>{?Category}</td> <td>${?Price}</td> </tr> </xsl:template>
Note:
The xsl:apply-templates instruction is most commonly used to
                  process nodes that are descendants of the context node. Such use of
                     xsl:apply-templates cannot result in non-terminating
                  processing loops. However, when xsl:apply-templates is used to
                  process elements that are not descendants of the context node, the possibility
                  arises of non-terminating loops. For example,
<xsl:template match="foo"> <xsl:apply-templates select="."/> </xsl:template>
Implementations may be able to detect such loops in some cases, but the possibility exists that a stylesheet may enter a non-terminating loop that an implementation is unable to detect. This may present a denial of service security risk.
separator attributeIf the separator attribute of xsl:apply-templates
               is present, then its effective value
               is inserted, as a text node, into the output sequence, immediately after the results of processing each item in the sorted
               sequence other than the last.
For example, if the ARTICLE element has a number of element children named AUTHOR,
               the following code will produce a sorted, comma-separated list of authors:
<xsl:template match="ARTICLE"> <article> ... <xsl:text>Author(s): </xsl:text> <xsl:apply-templates select="AUTHOR" separator=", "> <xsl:sort select="LAST-NAME"/> <xsl:sort select="FIRST-NAME"/> </xsl:apply-templates> ... </article> </xsl:template> <xsl:template match="AUTHOR" expand-text="yes"> <xsl:text>{FIRST-NAME} {LAST-NAME}</xsl:text> </xsl:template>
The node identity of any text nodes that are inserted is implementation-dependent. Specifically, it is not defined whether all the text nodes inserted in the course of one evaluation of the instruction are identical to each other, nor whether they are identical to the text nodes inserted in the course of another evaluation of this instruction, nor whether they are identical to any other parentless text nodes having the same string value.
If the separator is a zero-length string, then a zero-length text node is inserted into the sequence. (If the sequence is used for constructing the value of a node, then zero-length text nodes will be discarded: see 5.7.2 Constructing Simple Content and 5.7.1 Constructing Complex Content.)
It is possible for a selected item to match more than one template rule with a given mode M. When this happens, only one template rule is evaluated for the item. The template rule to be used is determined as follows:
First, only the matching template rule or rules with the highest import precedence are considered. Other matching template rules with lower precedence are eliminated from consideration.
Next, of the remaining matching rules, only those with the highest priority are considered. Other matching template rules with lower priority are eliminated from consideration.
[Definition: The priority of a
                        template rule is specified by the priority attribute on the
                           xsl:template declaration. If no priority is specified
                        explicitly for a template rule, its default priority is used, as defined in 6.3.3 Default Priority for Patterns.]
                     [ERR XTSE0530] The value of the priority attribute 
                           must conform to the rules for the
                              xs:decimal type defined in [XML Schema Part 2].
                           Negative values are permitted.
                  
Next, if any of the remaining matching rules has a match pattern in the form of a TypePattern, then this set of rules is reduced as follows:
Any rule with a match pattern that is not a type pattern is discarded. (That is, type patterns are chosen in preference to non-type patterns). Call the set of type patterns that remain R.
A TypePattern comprises an ItemType
                     and a possibly empty set of predicates.
Any rule in R whose ItemType is a strict supertype of 
                     the ItemType of another rule in R is discarded. A type T
                     is a strict supertype of another type U if U is a 
                        subtypeXP of T and
                        T is not a 
                        subtypeXP of U.
                     
If there is a rule P in R whose ItemType is the same type as 
                        the ItemType of another rule Q in R, and if Q 
                        has one or more predicates while P has none, then P is discarded. A type T
                        is the same type as another type U if T is a 
                        subtypeXP of U and
                        U is a 
                        subtypeXP of T.
                     
If this process leaves a single rule, then that rule is chosen.
Note:
For example, this means that:
The match pattern type(xs:integer) is chosen
                           in preference to type(xs:decimal) which in turn is chosen in preference
                           to type(item()).
The match pattern type(xs:integer)[. gt 0] is chosen
                           in preference to type(xs:integer) which in turn is chosen in preference
                           to type(xs:decimal).
The match pattern type(xs:integer) is chosen
                           in preference to type(xs:integer | xs:double) which in turn is chosen in preference
                           to type(xs:numeric).
The match pattern record(longitude, latitude, altitude) is
                           chosen in preference to the pattern record(longitude, latitude, *),
                        which in turn is chosen in preference to the pattern type(map(*)).
If this leaves more than one matching template rule, then:
If the mode
                           M has an xsl:mode declaration, and the
                           attribute value on-multiple-match="fail" is specified in the
                           mode declaration, a dynamic error is raised. The error is treated as
                           occurring in the xsl:apply-templates instruction, and
                           can be recovered by wrapping that instruction in an
                              xsl:try instruction.
                           [ERR XTDE0540] It is a  dynamic error if the
                                 conflict resolution algorithm for template rules leaves more than
                                 one matching template rule  when the
                                    declaration of the relevant mode has an on-multiple-match
                                    attribute with the value fail.
Otherwise, of the matching template rules that remain, the one that occurs last in declaration order is used.
Note:
This was a recoverable error in XSLT 2.0, meaning that it was
                        implementation-defined whether the error was raised, or whether the
                        ambiguity was resolved by taking the last matching rule in declaration
                        order.  In XSLT 3.0 this situation is not an error unless the
                        attribute value on-multiple-match="fail" is specified in the
                        mode declaration. It is also possible to request warnings when this
                        condition arises, by means of the attribute warning-on-multiple-match="yes". 
               [Definition:  A mode is a set of template rules;
                  when the xsl:apply-templates instruction selects a set of items
                  for processing, it identifies the rules to be used for processing those items by
                  nominating a mode, explicitly or implicitly.] Modes allow a node in a
                  source tree (for example) to be processed
               multiple times, each time producing a different result. They also allow different
               sets of template rules to be active when
               processing different trees, for example when processing documents loaded using the
                  document function (see 20.1 fn:document). 
Modes are identified by an expanded QName; in addition to any named modes, there is always one
               unnamed mode available. Whether a mode is named or unnamed, its properties
                  may be defined in an xsl:mode declaration. If
               a mode name is used (for example in an xsl:template declaration or
               an xsl:apply-templates instruction) and no declaration of that mode
               appears in the stylesheet, the mode is implicitly declared with default
               properties.
                     The xsl:mode declaration acquires an attribute
                     as="sequence-type" which declares the return type of 
                     all template rules in that mode.
                    [Issue 750 PR 751 16 October 2023]
                     The xsl:mode declaration acquires an attribute
                     copy-namespaces which determines whether or not the built-in
                     template rule copies unused namespace bindings.
                    [Issue 1724  13 April 2025]
<!-- Category: declaration -->
<xsl:mode
  name? = eqname
  as? = sequence-type〔'item()*'〕
  streamable? = boolean〔'no'〕
  use-accumulators? = tokens〔''〕
  on-no-match? = "deep-copy" | "shallow-copy" | "shallow-copy-all" | "deep-skip" | "shallow-skip" | "text-only-copy" | "fail"〔'text-only-copy'〕
  on-multiple-match? = "use-last" | "fail"〔'use-last'〕
  warning-on-no-match? = boolean
  warning-on-multiple-match? = boolean
  typed? = boolean | "strict" | "lax" | "unspecified"〔'unspecified'〕
  copy-namespaces? = boolean〔'yes'〕
  visibility? = "public" | "private" | "final"〔'private'〕 >
  <!-- Content: (xsl:template*) -->
</xsl:mode>
                  [Definition: The unnamed mode is the default mode used when no
                        mode attribute is specified on an
                        xsl:apply-templates instruction or
                        xsl:template declaration, unless a different default mode
                     has been specified using the [xsl:]default-mode attribute of a containing
                        element.]
               
Every mode other than the unnamed mode is identified by an expanded QName.
A stylesheet may contain multiple
                     xsl:mode declarations and may include or import stylesheet modules that also contain
                     xsl:mode declarations. The name of an
                     xsl:mode declaration is the value of its name
                  attribute, if any.
                  [Definition: All the
                        xsl:mode declarations in a package that share the same
                     name are grouped into a named mode definition; those that have no
                     name are grouped into a single unnamed mode definition.]
               
The declared-modes attribute of
                     the xsl:package element determines whether implicit mode
                     declarations are allowed, as described in 3.5.5.1 Requiring Explicit Mode Declarations. If the package allows implicit mode
                     declarations, then  if a stylesheet does not contain a declaration of the unnamed mode, a
                  declaration is implied equivalent to an xsl:mode element with
                     no attributes. Similarly, if there
                  is a mode that is named in an xsl:template or
                     xsl:apply-templates element, or in the [xsl:]default-mode attribute of a containing
                     element, and the stylesheet
                  does not contain a declaration of that mode, then a declaration is implied
                  comprising an xsl:mode element with a name attribute
                     equal to that mode name, plus the attribute
                        visibility="private". 
The attributes of the xsl:mode declaration establish values for a
                  number of properties of a mode. The allowed values and meanings of the attributes
                  are given in the following table.
| Attribute | Values | Meaning | ||||
|---|---|---|---|---|---|---|
| name | An EQName | Specifies the name of the mode. If omitted, this xsl:modedeclaration provides properties of the
                              unnamed mode | ||||
| as | A SequenceType | Declares the type of value returned by all
                              template rules in this mode. If any template rules in this mode declare their
                              return type using an asattribute onxsl:template,
                              the values must be consistent. | ||||
| streamable | yesorno(defaultno) | Determines whether template rules in this mode are to be
                              capable of being processed using streaming. If the
                              value yesis specified, then the body of any template rule that uses this mode
                              must conform to the rules for streamable templates
                              given in 5 Streamable TemplatesSG. | ||||
| use-accumulators | List of accumulator names, or #all(default is an empty list) | Relevant only when this mode is the initial mode of the transformation, determines which accumulators are applicable to documents containing nodes in the initial match selection. For further details see 19.2 Applicability of Accumulators. | ||||
| on-no-match | One of deep-copy,shallow-copy,deep-skip,shallow-skip,text-only-copyorfail(defaulttext-only-copy) | Determines selection of the built-in template rules that are used to
                              process an item when an xsl:apply-templatesinstruction selects an item that does not match any
                              user-written template rule in
                              the stylesheet. For details, see
                              6.8 Built-in Template Rules. | ||||
| on-multiple-match | One of failoruse-last(defaultuse-last) | Defines the action to be taken when xsl:apply-templatesis used in this mode and more
                              than one user-written template
                                 rule is available to process an item, each having the same import precedence and priority. The valuefailindicates that it is a  dynamic error if more
                              than one template rule matches an
                              item. The valueuse-lastindicates that the
                              situation is not to be treated as an error (the last template in declaration order is the one that
                              is used). | ||||
| warning-on-no-match | One of yesorno. The default is
                              implementation-defined | Requests the processor to output (or not to output) a warning message in
                              the case where an xsl:apply-templatesinstruction
                              selects an item that matches
                              no user-written template rule. The form and destination of such warnings
                              is implementation-defined. The processor
                              may ignore this attribute, for example if the
                              environment provides no suitable means of communicating with the user. | ||||
| warning-on-multiple-match | One of yesorno. The default is
                              implementation-defined | Requests the processor to output a warning message in the case where an xsl:apply-templatesinstruction selects an item that matches multiple
                              template rules having the same import
                                 precedence and priority. The form and destination of such warnings is
                              implementation-defined. The processor
                              may ignore this attribute, for example if the
                              environment provides no suitable means of communicating with the
                              user. | ||||
| typed | One of yes,no,strict,lax, orunspecified.
                              The default isunspecified. | See 6.7.4 Declaring the Type of Nodes Processed by a Mode. | ||||
| copy-namespaces | One of yesorno. The default isyes. | If on-no-matchisshallow-copy,shallow-copy-all, ordeep-copy, this attribute determines the
                              effective value of thecopy-namespacesattribute on the implicitxsl:copyorxsl:copy-ofinstruction in the built-in template rule 
                              (see 6.8 Built-in Template Rules). In other cases it is ignored, apart from checking that
                              its value is valid. | ||||
| visibility | One of public,private, orfinal. The default isprivate. | See 3.5.4.1 Visibility of Components. If the mode is unnamed, that is, if the nameattribute is absent, then thevisibilityattribute if present
                              must have the valueprivate.
 | ||||
                  [Definition: A streamable
                        mode is a mode that is declared in
                     an xsl:mode declaration with the attribute
                        streamable="yes".]
               
For any named mode, the effective value of each
                  attribute is taken from an xsl:mode declaration that has a
                  matching name in its name attribute, and that specifies an explicit
                  value for the required attribute. If there is
                     no such declaration, the default value of the attribute is used. If
                  there is more than one such declaration, the one with highest import precedence is used.
For the unnamed mode, the effective value
                  of each attribute is taken from an xsl:mode declaration that has
                  no name attribute, and that specifies an explicit value for the
                  required attribute. If there is no such declaration, the default value of the
                  attribute is used. If there is more than one such declaration, the one with
                  highest import precedence is
                  used.
                  [ERR XTSE0545] It is a static error if for any
                        named or unnamed mode, a package explicitly specifies two conflicting
                        values for the same attribute in different xsl:mode
                        declarations having the same import
                           precedence, unless there is another definition of the same
                        attribute with higher import precedence. The attributes in question are the
                        attributes other than name on the xsl:mode
                           element.
               
[Definition: A template rule is applicable to one or more modes.
                     The modes to which it is applicable are defined by the mode
                     attribute of the xsl:template element. If the attribute is
                     omitted, then the template rule is applicable to the default mode 
                  specified in the [xsl:]default-mode attribute of the innermost containing
                           element that has such an attribute, which in turn defaults to
                        the unnamed mode. If the
                        mode attribute is present, then its value
                        must be a non-empty whitespace-separated list of tokens,
                     each of which defines a mode to which the template rule is
                     applicable.]
Each token in the mode attribute must be one of
                  the following:
An EQName, which is expanded as described in 5.1.1 Qualified Names to define the name of the mode
The token #default, to indicate that the template rule is
                        applicable to the default mode that would apply if
                           the mode attribute were absent
                     
The token #unnamed, to indicate that the
                        template rule is applicable to the unnamed
                           mode
                     
The token #all, to indicate that the template rule is
                        applicable to all modes other than enclosing modes
                        (specifically, to the unnamed mode and to every mode that is named explicitly or implicitly in an
                           xsl:apply-templates instruction  anywhere in
                        the stylesheet).
More specifically, when a template rule specifies mode="#all" this makes the
                        template rule applicable to:
The unnamed mode.
Every mode, other than an enclosing mode, that is declared using an
                              xsl:mode declaration within the containing package.
Every mode that is implicitly declared within the containing package
                              by virtue of being referenced in an xsl:template or
                           xsl:apply-templates element.
The value mode="#all"
                        cannot be used on a template rule declared within an
                        xsl:override or xsl:mode element.
                  [ERR XTSE0550] It is a static error if the list of
                        modes  is empty, if the same token is included more than once in the
                        list, if the list contains an invalid token, or if the token
                           #all appears together with any other value.
               
                  [ERR XTSE3440] In the case of a template rule (that is, an
                           xsl:template element having a match
                        attribute) appearing as a child of xsl:override, it is a
                           static error if the list of
                        modes in the mode attribute contains #all or
                           #unnamed, or if it contains #default and the
                        default mode is the unnamed mode, or if the
                           mode attribute is omitted when the default mode is the
                           unnamed mode.
               
The xsl:apply-templates element also has an optional
                     mode attribute. The value of this attribute
                     must be one of the following:
an EQName, which is expanded as described in 5.1.1 Qualified Names to define the name of a mode
the token #default, to indicate that the default mode 
                        from the static context of the instruction is to be used
the token #unnamed, to indicate that the
                           unnamed mode is to be used
the token #current, to indicate that the current mode is to be used
If the attribute is omitted, the default mode from the static context of the instruction is used.
When searching for a template rule to process each item selected by the xsl:apply-templates
                  instruction, only those template rules that are applicable to the selected mode
                  are considered.
                  [Definition: At any point in the processing
                     of a stylesheet, there is a current mode. When the transformation
                     is initiated, the current mode is the initial mode, as described in 2.3 Initiating a Transformation. Whenever an xsl:apply-templates
                     instruction is evaluated, the current mode becomes the mode selected by this
                     instruction.] When a non-contextual function call is made, the current mode
                  is set to the unnamed mode. While
                  evaluating global variables and parameters, and the sequence constructor contained
                  in xsl:key or xsl:sort, the current mode is set
                  to the unnamed mode. No other instruction changes the current mode. The current
                  mode while evaluating an attribute set
                  is the same as the current mode of the caller. On completion of the
                     xsl:apply-templates instruction, or on return from a
                  stylesheet function call, the current mode reverts to its previous value. The
                  current mode is used when an xsl:apply-templates instruction uses
                  the syntax mode="#current"; it is also used by the
                     xsl:apply-imports and xsl:next-match
                  instructions (see 6.9 Overriding Template Rules).
apply-templates FunctionSometimes it is useful to be able to apply templates from within an XPath expression. A common example is when using XPath expressions to construct maps and arrays. For example, an array of maps might be constructed by the following code:
<xsl:array> <xsl:for-each select="*"> <xsl:array-member> <xsl:map> <xsl:for-each select="@*"> <xsl:map-entry key="local-name()"> <xsl:apply-templates select="."/> </xsl:map-entry> </xsl:for-each> </xsl:map> </xsl:array-member> </xsl:for-each> </xsl:array>
Such code can become verbose, and it is difficult to read because the XML form of the instructions bears literal relationship to the serialized form (typically JSON) of the result. XSLT 4.0 offers the alternative of writing it like this:
<xsl:select> array{ * ! map:build(@*, local-name#1, apply-templates#1) } </xsl:select>
Note:
Explanation: this constructs an array with one member for each element child E of
                  the context node. The member is a map constructed using the map:build function.
                  The map has one entry for each attribute A of element E. The
                  key of this entry is the local name of the attribute, and the corresponding value is
                  obtained by applying templates to the attribute node.
To make this possible, a subset of the functionality of the xsl:apply-templates
               instruction is available via the (XSLT-only) apply-templates
               function, whose specification follows.
Applies template rules to selected items.
| fn:apply-templates( | ||
| $select | as item()*, | |
| $options | as map(*)? | := {} | 
| )  as item()* | ||
This function is deterministicFO, context-dependentFO, and focus-independentFO.
The function call apply-templates(X), used within an XPath 
            expression, returns 
            the same result as the instruction <xsl:apply-templates select="X"/>
The entries that may appear in the $options map are as follows.
         The option parameter conventionsFO apply.
$params as map(xs:QName, item()*), $tunnel-params as map(xs:QName, item()*), $mode as (xs:QName | enum("#current", "#unnamed"))</record>| Key | Value | Meaning | 
|---|---|---|
| 
 | Supplies values for non-tunnel parameters. Each entry in the paramsmap binds a parameter (identified by anxs:QNamevalue) to a supplied value.
 | |
| 
 | Supplies values for tunnel parameters. Each entry in the tunnel-paramsmap binds a tunnel parameter (identified by anxs:QNamevalue) to a supplied value.
 | |
| 
 | Selects the mode to be used. The value may be set to an xs:QNamethat matches a declared mode in the stylesheet, or to one of the special values#currentor#unnamed.
 | |
| xs:QName | Selects a declared mode by name. | |
| #current | Selects the current mode. | |
| #unnamed | Selects the unnamed mode. | |
For each item in the value of the $select argument, the function finds
         the best matching template rule in the selected mode and invokes that template rule with the supplied
         parameters (if any). The result of
         the function is the sequence concatenation of the results of performing this process for each
         item in the selected input, in turn.
Errors may arise in the same situations as for the xsl:apply-templates
         instruction: for example, if the xsl:mode declaration specifies 
         on-no-match="fail" and no matching template rule is found.
[ERR XTDE0565] It is a dynamic error if a call
                        on the apply-templates function selects a mode
                        that is not explicitly declared in the containing package, or accepted
                        from a used package, or whose visibility is private.
         
Note:
Modes are private by default: for a mode to be available for reference by
         the apply-templates function, it must be explicitly declared
         with visibility="public".
Unlike the xsl:apply-templates instruction, the name of the required mode, and the
            names of the supplied parameters, can be evaluated dynamically.
If no mode is specified, the function uses the unnamed mode. It does not use the default mode
          (as defined by a containing [xsl:]default-mode attribute). This decision was made
         in order to avoid having to retain the default mode for each XPath expression at evaluation time,
         and to avoid complex rules for edge cases involving dynamic function calls.
See also the rules in 3.5.4.6 Dynamic References to Components, which are relevant to resolution of the mode name.
| The function call: | |
|  | |
| has the same effect as the instruction: | |
| <xsl:apply-templates select="*" mode="#current"> <xsl:with-param name="expand" select="false()"/> </xsl:apply-templates> | 
Typically the template rules in a particular mode will be
                  designed to process a specific kind of input document. The typed
                  attribute of xsl:mode gives the stylesheet author the opportunity
                  to provide information about this document to the processor. This information may
                  enable the processor to improve diagnostics or to optimize performance.
The typed attribute of xsl:mode informs the
                  processor whether the nodes to be processed by template rules in this mode are to
                  be typed or untyped. 
If the value yes is specified (synonyms true or
                           1), then all nodes processed in this mode must be typed. A
                        dynamic error occurs if xsl:apply-templates in this mode
                        selects an element or attribute node whose type annotation is xs:untyped or xs:untypedAtomic. 
If the value no is specified (synonyms false or
                           0), then all nodes processed in this mode must be untyped. A
                        dynamic error occurs if xsl:apply-templates in this mode
                        selects an element or attribute whose type annotation is
                        anything other than xs:untyped or
                        xs:untypedAtomic. 
The value strict is equivalent to yes, with the
                        additional provision that in the match pattern of any template rule that is
                           applicable to this mode, any NameTest
                        used in the ForwardStepP of the first StepExprP of
                        a RelativePathExprP is interpreted as follows:
If the NameTest is an EQName
                              E, and the principal node kind of the axis of this step is
                                 Element, then:
It is a static error if the in-scope schema declarations do not include a global element declaration for element name E
When matching templates in this mode, the element name
                                          E appearing in this step is interpreted as
                                          schema-element(E). (Informally, this means
                                       that it will only match an element if it has been validated
                                       against this element declaration). 
Otherwise (the NameTest is a wildcard or the principal
                              node kind is Attribute or Namespace), the
                              template matching proceeds as if the typed attribute were
                              absent. 
The value lax is equivalent to yes, with the
                        additional provision that in the match pattern of any template rule that is
                           applicable to this mode, any NameTest
                        used in the ForwardStepP of the first StepExprP of
                        a RelativePathExprP is interpreted as follows:
If the NameTest is an EQName
                              E, and the principal node kind of the axis of this step is
                                 Element, and the in-scope schema declarations include
                              a global element declaration for element name E, then:
When matching templates in this mode, the element name
                                          E appearing in this step is interpreted as
                                          schema-element(E). (Informally, this means
                                       that it will only match an element if it has been validated
                                       against this element declaration). 
Otherwise (the NameTest is a wildcard, or the principal
                              node kind is Attribute or Namespace, or
                              there is no element declaration for E), the template
                              matching proceeds as if the typed attribute were absent.
                           
                  [ERR XTTE3100] It is a type error if an
                           xsl:apply-templates instruction in a particular
                           mode selects an element or attribute whose type is
                           xs:untyped or xs:untypedAtomic when the
                           typed attribute of that mode specifies the value
                           yes, strict, or lax.
               
                  [ERR XTSE3105] It is a static error if a template
                        rule applicable to a mode that is defined with typed="strict"
                        uses a match pattern that contains a RelativePathExprP whose
                        first StepExprP is an AxisStepP whose
                           ForwardStepP uses an axis whose principal node kind is
                           Element and whose NodeTest is an
                           EQName that does not correspond to the name of any global
                        element declaration in the in-scope schema components.
               
                  [ERR XTTE3110] It is a type error if an
                           xsl:apply-templates instruction in a particular
                           mode selects an element or attribute whose type is anything
                        other than xs:untyped or xs:untypedAtomic when the
                           typed attribute of that mode specifies the value
                           no.
               
Traditionally, template rules have most commonly been used to construct XDM nodes, and the xsl:apply-templates
               instruction has been used to add nodes to a result tree. However, it is also possible to use template rules to produce
               other kinds of value, for example strings, booleans, or maps. For the xsl:apply-templates 
               instruction to be useful, it will generally be the case that all template rules in a mode produce the same kind
               of value: for example, if one rule delivers a boolean, then the other rules will also deliver a boolean.
XSLT 4.0 therefore allows the result type of the template rules in a mode to be declared using the as
               attribute on the xsl:mode declaration. If this is absent, it defaults to item()*.
               The presence of an as attribute on a mode provides useful documentation and consistency checking,
               and enables the XSLT processor to infer a static type for an xsl:apply-templates instruction,
               which can be useful for optimization.
If a template rule R is applicable to a mode M, 
                  and M is declared with an as attribute whose value is the SequenceType 
                  T, then:
If R has an as attribute, the SequenceType S declared
                     by R must be a subtype of T.
[ERR XTSE4040] It is a static error if a template rule
                        R has an as attribute S, 
                        and the template rule is applicable
                        to a mode M that is declared with an as attribute T,
                        and the sequence type S is not a subtype of the sequence type T as defined
                     by the relationship subtype(S, T) in [XPath 4.0] section 3.3.1 Subtypes of Sequence Types.
If R has no as attribute, then it is treated as if it had an as
                     attribute set to T. This means that a type error 
                     [see ERR XTTE0505] is raised
                     if the result of the template rule cannot be coerced to a value of type T.
If R is applicable
                     to more than one mode, then it must meet the requirements of each one, which implies that these requirements
                     must be consistent with each other: for example, if one mode specifies as="node()" and another specifies
                        as="map(*)", then a type error is inevitable if the template rule is actually evaluated, and
                        like other type errors this can be raised statically if detected statically. An
                     implausibilityXP may 
                        be reported if the only value that would satisfy both types is an empty sequence, map, or array.
Note:
In practice the best way to satisfy this rule is to ensure 
                     that if a template rule is applicable to more than one mode (including
                  the case mode="#all"), then either (a) all those modes should have the same declared result type,
                  or (b) the template rule should declare an explicit result type that is compatible with each one of the relevant modes.
The requirement to return values of the correct type extends also to the built-in template rule for the mode (see 6.8 Built-in Template Rules). Since it is not possible to determine statically whether the explicit template rules for a mode provide complete coverage of all possible inputs, any failure of the built-in template rule to return a value that can be coerced to the expected type must be raised dynamically [see ERR XTTE0505].
                     A mode (called an enclosing mode) can be defined in which all the relevant 
                     template rules are children of the xsl:mode element.
                     This is intended to allow a stylesheet design in which it is easier to
                     determine which rules might apply to a given xsl:apply-templates
                     call.
                    [Issue 82 PR 542 20 June 2023]
[Definition: A mode declared by
                  an xsl:mode declaration that has one or more contained xsl:template
                  declarations is referred to as an enclosing mode.]
An enclosing mode ensures that all the template rules for a mode are together in one place, which
               makes it easier for someone reading the stylesheet to establish what is going to happen when an
               xsl:apply-templates instruction in that mode is evaluated.
An enclosing mode must satisfy the following rules:
The mode must have a name.
Every contained xsl:template element must have a match
                  attribute and no name attribute.
Every contained xsl:template element must have no mode
                  attribute: the template is implicitly applicable only to the containing mode.
An xsl:mode declaration with one or more xsl:template
                  children effectively has a default-mode attribute whose value is the mode’s name;
                     it must not have a default-mode attribute with any other value.
Note:
This means that xsl:apply-templates instructions within the template
                  rules of the enclosing mode default to using the enclosing mode.
No xsl:template that is in the same package
                     as the containing mode, but not declared within the containing mode, may be applicable
                  to the containing mode.
Note:
Template rules in an enclosing mode may, however, be overridden within an 
                     xsl:override element in a using package.
There must be no other xsl:mode declaration in the containing package
                  having the same name and the same import precedence.
These rules give rise to the following error conditions:
[ERR XTSE4005] It is a static error if an xsl:mode
                     declaration with one or more xsl:template children has no name
                     attribute.
[ERR XTSE4010] It is a static error if an xsl:mode
                     declaration has a child xsl:template element with a name attribute,
                     with a mode attribute, or with no match attribute.
[ERR XTSE4015] It is a static error if an xsl:mode
                     declaration having one or more child xsl:template elements has a default-mode
                     attribute whose value differs from its name attribute, or if any of those child xsl:template 
                     elements has a default-mode attribute that differs from the name attribute
                     of the xsl:mode declaration.
[ERR XTSE4020] It is a static error if a
                     package contains both (a) an xsl:mode
                     declaration having one or more child xsl:template elements, and (b) 
                     an xsl:template declaration that is not
                     one of those children but that references that xsl:mode declaration in its
                     mode attribute.
[ERR XTSE4025] It is a static error if a
                     package contains (a) an xsl:mode
                     declaration having one or more child xsl:template elements, and (b) 
                     a second xsl:mode declaration having the same name and the same
                     import precedence.
The following mode might be used for formatting of numbers appearing in text:
<xsl:mode name="numbers-in-text" as="xs:string" visibility="final"> <xsl:template match="type(xs:integer)[. gt 0 and . lt 21]"> <xsl:number value="." format="w"/> </xsl:template> <xsl:template match="type(xs:integer)[. lt 10000]"> <xsl:number value="." format="1"/> </xsl:template> <xsl:template match="type(xs:integer)"> <xsl:number value="." format="1" grouping-separator="," grouping-size="3"/> </xsl:template> </xsl:mode>
When an item is
               selected by xsl:apply-templates and there is no user-specified
                  template rule in the stylesheet that can be used to process that item, then a built-in template rule is
               evaluated instead. 
The built-in template rules have lower import precedence than all other template rules. Thus, the stylesheet author can override a built-in template rule by including an explicit template rule.
There are seven sets of built-in template rules available. The set
               that is chosen is a property of the mode selected by
               the xsl:apply-templates instruction. This property is set using the
                  on-no-match attribute of the xsl:mode declaration,
               which takes one of the values deep-copy, shallow-copy,
               shallow-copy-all,
                  deep-skip, shallow-skip, 
               text-only-copy, or
                  fail, the default being text-only-copy. The effect of
               these seven sets of built-in template rules is explained in the following
               subsections.
The effect of processing a
                     tree using a mode that specifies
                        on-no-match="text-only-copy" is that the textual
                  content of the source document is retained while losing the markup, except where
                  explicit template rules dictate otherwise. When an element is encountered for
                  which there is no explicit template
                  rule, the processing continues with the children of that element. Text
                  nodes are copied to the output.
The built-in rule for document nodes and element nodes is equivalent to calling
                     xsl:apply-templates with no select attribute, and
                  with the mode attribute set to #current. If the built-in
                  rule was invoked with parameters, those parameters are passed on in the implicit
                     xsl:apply-templates instruction.
This is equivalent to the following in the case where there are no parameters:
<xsl:template match="document-node()|element()" mode="M"> <xsl:apply-templates mode="#current"/> </xsl:template>
The built-in template rule for text and attribute nodes returns a text node containing the string value of the context node. It is effectively:
<xsl:template match="text()|@*" mode="M"> <xsl:value-of select="string(.)"/> </xsl:template>
Note:
This text node may have a string value that is zero-length.
The built-in template rule for atomic items returns a text node containing the value. It is effectively:
<xsl:template match=".[. instance of xs:anyAtomicType]" mode="M"> <xsl:value-of select="string(.)"/> </xsl:template>
Note:
This text node may have a string value that is zero-length.
The built-in template rule for processing instructions, comments, and namespace nodes does nothing (it returns the empty sequence).
<xsl:template match="processing-instruction()|comment()|namespace-node()" mode="M"/>
The built-in template rule for functions (including maps) does nothing (it returns the empty sequence).
<xsl:template match=".[. instance of fn(*)]" mode="M"/>
The built-in template rule for
               arrays (see 22 Arrays) is to apply templates to the members of the array.
               It is equivalent to invoking xsl:apply-templates with the select
               attribute set to ?* (which selects the members of the array), and with the 
                  mode attribute set to #current. If the built-in
                  rule was invoked with parameters, those parameters are passed on in the implicit
                  xsl:apply-templates instruction.
This is equivalent to the following in the case where there are no parameters:
<xsl:template match=".[. instance of array(*)]" mode="M"> <xsl:apply-templates mode="#current" select="?*"/> </xsl:template>
The following example illustrates the use of built-in template rules when there are parameters.
Suppose the stylesheet contains the following instruction:
<xsl:apply-templates select="title" mode="M"> <xsl:with-param name="init" select="10"/> </xsl:apply-templates>
If there is no explicit template rule that matches the title
                     element, then the following implicit rule is used:
<xsl:template match="title" mode="M"> <xsl:param name="init"/> <xsl:apply-templates mode="#current"> <xsl:with-param name="init" select="$init"/> </xsl:apply-templates> </xsl:template>
The effect of processing a tree using a
                        mode that specifies
                        on-no-match="deep-copy" is that an unmatched element
                  in the source tree is copied unchanged to the output, together with its entire
                  subtree. Other unmatched items are also copied unchanged. The subtree is copied
                  unconditionally, without attempting to match nodes in the subtree against template
                  rules.
When this default action is selected for a mode M, all items (nodes, atomic items, and functions, including maps and arrays) are processed using a template rule that is equivalent to the following:
<xsl:template match="." mode="M"> <xsl:copy-of select="." validation="preserve" copy-namespaces="CN"/> </xsl:template>
where CN is the value of the copy-namespaces attribute of the relevant
               xsl:mode declaration, defaulting to yes.
The effect of processing a tree using a
                        mode that specifies
                        on-no-match="shallow-copy" is that the source tree is
                  copied unchanged to the output, except for nodes where different processing is
                  specified using an explicit template
                     rule.
When this default action is selected for a mode M, all items (nodes, atomic items, and functions, including maps and arrays) are processed
                  using a template rule that is equivalent to the following, except that all
                  parameters supplied in xsl:with-param elements are passed on
                  implicitly to the called templates:
<xsl:template match="." mode="M"> <xsl:copy validation="preserve" copy-namespaces="CN"> <xsl:apply-templates select="@*" mode="M"/> <xsl:apply-templates select="node()" mode="M"/> </xsl:copy> </xsl:template>
where CN is the value of the copy-namespaces attribute of the relevant
               xsl:mode declaration, defaulting to yes.
This rule is often referred to as the identity template, though it should be noted that it does not preserve node identity.
Note:
This rule differs from the traditional identity template rule by using two
                        xsl:apply-templates instructions, one to process the
                     attributes and one to process the children. The only observable difference from
                     the traditional select="node() | @*" is that with two separate
                     instructions, the value of position() in the called templates
                     forms one sequence starting at 1 for the attributes, and a new sequence
                     starting at 1 for the children.
The following stylesheet transforms an input document by deleting all elements
                     named note, together with their attributes and descendants:
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:mode on-no-match="shallow-copy" streamable="true"/> <xsl:template match="note"> <!-- no action --> </xsl:template> </xsl:stylesheet>
This processing mode is introduced in XSLT 4.0 as a variant of shallow-copy
               to enable recursive descent processing of trees involving maps and arrays, such as might result
               from parsing JSON input.
               
For all items other than maps and arrays, the effect of shallow-copy-all
               is exactly the same as shallow-copy.
For arrays, the processing is as follows. A new result array is created, and its content
                  is populated by decomposing the input array to a sequence of value records
               using the function array:members. Each of these value records is processed
                  by a call on xsl:apply-templates (using the current mode, and passing
                  on the values of all template parameters); the result of the called template
                  is expected to be a value record.
That is, the template rule is equivalent to the following, except that this does not show the propagation of template parameters:
<xsl:array use="?value"> <xsl:apply-templates select="array:members(.)" mode="#current"/> </xsl:array>
Note:
A value record is a single-entry map: it has a single key-value pair with the key "value",
               the corresponding value being a member of the original array. The default processing for a value
               record, unless specified otherwise, is to apply templates to the value, as indicated by the rules
               that follow.
For maps, the processing is as follows:
If the map contains two or more entries,
                     then a new result map is created, and its content is populated
                     by decomposing the input map using the function map:entries to 
                     produce a sequence of single-entry maps (each containing one key and one value), and then applying
                     templates to this sequence, using the current mode, and passing
                     on the values of all template parameters.
If the map contains a single entry { K : V0 }, then a new single entry
                     map { K: V1 } is constructed in which V1 is the
                     result of applying templates to V0 (using the current mode, and passing
                     on the values of all template parameters).
Note:
This rule has the effect that if the input is a value record, the output will also be a value record.
If the map is empty, the result is an empty map.
In the first case, the template rule is equivalent to the following, except that this does not show the propagation of template parameters:
<xsl:map> <xsl:apply-templates select="map:entries(.)" mode="#current"/> </xsl:map>
In the second case, the template rule is equivalent to the following, except that this does not show the propagation of template parameters:
<xsl:map-entry key="map:keys(.)"> <xsl:apply-templates select="map:items(.)" mode="#current"/> </xsl:map-entry>
The reason there is a special rule for maps with one entry is to ensure that the process terminates.
The overall effect is best understood with an example.
The following stylesheet transforms a supplied JSON document by deleting all properties
                     named "Note", appearing at any level:
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:mode on-no-match="shallow-copy-all"/> <xsl:template match="record(Note)"> <!-- no action --> </xsl:template> </xsl:stylesheet>
Consider the following JSON input, converted to an array of maps by calling 
                     the function parse-json:
[
  { "Title": "Computer Architecture",
    "Authors": [ "Enid Blyton", { "Note": "possibly misattributed" } ],
    "Category": "Computers",
    "Price": 42.60
  },
  { "Title": "Steppenwolf",
    "Authors": [ "Hermann Hesse" ],
    "Category": "Fiction",
    "Price": 12.00,
    "Note": "out of print"
  },
  { "Title": "How to Explore Outer Space with Binoculars",
    "Authors": [ "Bruce Betts", "Erica Colon" ],
    "Category": "Science",
    "Price": 10.40
  }
]
                     The logic proceeds as follows:
The outermost array is processed by applying templates to a sequence of value records, the first being in the form:
{ "value": map: { "Title": ..., "Author": ..., ... }
                           The result of applying templates to these value records is expected to comprise a new sequence of value records, which is used to construct the final output array.
Each of the value records is processed using the rule for single-entry maps. This rule
                        produces a new value record by applying templates to the value, that is, to a map of the form
                        map: { "Title": ..., "Author": ..., ... } representing a book.
Each of these books, being represented by a map with more than two entries, is processed by
                     a template rule that splits the map into its multiple entries, each represented as a singleton
                     map (a map with one key and one value). One of these single-entry maps, for example, would be
                     {"Title": "Steppenwolf"}.
The default processing for a single-entry map of the form 
                        { "Title": "Steppenwolf" } is to return the value unchanged.
                        This is achieved by applying templates to the string "Steppenwolf";
                     the default template rule for strings returns the string unchanged.
When a single-entry map in the form { "Note": "out of print" } is encountered, no output
                     is produced, meaning that entry in the parent map is effectively dropped. This is because there
                     is an explicit template rule with match="record(Note)" that matches such single-entry maps.
When a single-entry map in the form "Authors": [ "Bruce Betts", "Erica Colon" ] 
                        is encountered, a new single-entry map is produced; it has the same key ("Authors"),
                        and a value obtained by applying templates to the array [ "Bruce Betts", "Erica Colon" ].
                        The default processing for an array, in which none of the constituents are matched by explicit
                        template rules, ends up delivering a copy of the array.
When the single-entry map "Authors": [ "Enid Blyton", { "Note": "possibly misattributed" } ]
                        is encountered, the recursive processing results in templates being applied to the map
                        { "Note": "possibly misattributed" }. This matches the template rule having
                        match="record(Note)", which returns no output, so the entry is effectively deleted.
Note:
The map entry is deleted, but the map itself remains, so the value becomes
                           "Authors": [ "Enid Blyton", map: {} ].
The effect of processing a tree using a mode that specifies
                     on-no-match="deep-skip" is that where no explicit template rule is
                  specified for an element, that element and all its descendants are ignored, and
                  are not copied to the result tree.
The effect of choosing on-no-match="deep-skip" is as follows:
The built-in rule for document nodes is equivalent to calling
                           xsl:apply-templates with no select
                        attribute, and with the mode attribute set to
                           #current. If the built-in rule was invoked with parameters,
                        those parameters are passed on in the implicit
                           xsl:apply-templates instruction.
In the case where there are no parameters, this is equivalent to the following rule:
<xsl:template match="document-node()" mode="M"> <xsl:apply-templates mode="#current"/> </xsl:template>
The built-in rule for all items other than document nodes (that is, for all other kinds of node, as well as atomic items and functions, including maps and and arrays) is to do nothing, that is, to return an empty sequence (without applying templates to any children or ancestors).
This is equivalent to the following rule:
<xsl:template match="." mode="M"/>
The effect of processing a tree using a
                        mode that specifies
                        on-no-match="shallow-skip" is to drop both the textual
                  content and the markup from the result document, except where there is an explicit
                  user-written template rule that dictates
                  otherwise.
The built-in rule for document nodes and element nodes  applies templates (in the current mode) first to the node’s
                     attributes and then to its children. If the built-in rule was invoked
                  with parameters, those parameters are passed on in the implicit
                     xsl:apply-templates
                  instructions.
In the case where there are no parameters, this is equivalent to the following rule:
<xsl:template match="document-node()|element()" mode="M"> <xsl:apply-templates select="@*" mode="#current"/> <xsl:apply-templates mode="#current"/> </xsl:template>
The built-in template rule for all other kinds of node, and for atomic items and functions (including maps, but not arrays) is empty: that is, when the item is matched, the built-in template rule returns an empty sequence.
This is equivalent to the following rule:
<xsl:template match="." mode="M"/>
The built-in template rule for
                  arrays (see 22 Arrays) is to apply templates to the members of the array.
                  It is equivalent to invoking xsl:apply-templates with the select
                  attribute set to ?* (which selects the members of the array), and with the 
                  mode attribute set to #current. If the built-in
                  rule was invoked with parameters, those parameters are passed on in the implicit
                  xsl:apply-templates instruction.
This is equivalent to the following in the case where there are no parameters:
<xsl:template match=".[. instance of array(*)]" mode="M"> <xsl:apply-templates mode="#current" select="?*"/> </xsl:template>
The effect of choosing on-no-match="fail" for a
                     mode is that every item selected in an xsl:apply-templates instruction
                  must be matched by an explicit user-written template rule.
The built-in template rule is effectively:
<xsl:template match="." mode="M"> <xsl:message terminate="yes" error-code="err:XTDE0555"/> </xsl:template>
with an implementation-dependent message body.
                  [ERR XTDE0555] It is a  dynamic error if
                           xsl:apply-templates, xsl:apply-imports
                        or xsl:next-match is used to process 
                        an item using a mode
                        whose declaration specifies on-no-match="fail" when there is no
                           template rule in the stylesheet
                        whose match pattern matches that item. 
               
                  The xsl:apply-imports and xsl:next-match instructions automatically
                  pass supplied parameters to the overridden template rule.
                 [Issue 1861 ]
<!-- Category: instruction -->
<xsl:apply-imports>
  <!-- Content: xsl:with-param* -->
</xsl:apply-imports>
<!-- Category: instruction -->
<xsl:next-match>
  <!-- Content: (xsl:with-param | xsl:fallback)* -->
</xsl:next-match>
A template rule that is being used to
               override another template rule (see 6.6 Conflict Resolution for Template Rules) can use the
                  xsl:apply-imports or xsl:next-match instruction
               to invoke the overridden template rule. The xsl:apply-imports
               instruction only considers template rules in imported stylesheet modules; the
                  xsl:next-match instruction considers all template rules that
               have not already been used. Both instructions will invoke the built-in template rule for the
                  context item (see 6.8 Built-in Template Rules) if no other template rule is found.
               [Definition: At any point in
                  the processing of a stylesheet, there may
                  be a current template rule. Whenever a template rule is chosen as a result of
                  evaluating xsl:apply-templates,
                     xsl:apply-imports, or xsl:next-match, the
                  template rule becomes the current template rule for the evaluation of the rule’s
                  sequence constructor.]
             
The current template rule is cleared (becomes absent) by any instruction that evaluates an operand with changed focus. It is therefore cleared when evaluating instructions contained within:
xsl:copy if and only if there is a select attribute
A global xsl:variable or xsl:param
xsl:template if and only if the called template specifies <xsl:context-item use="absent"/>
Note:
The current template rule is not affected by invoking named attribute sets (see 10.2 Named Attribute Sets), or named templates (see 10.1 Named Templates) unless <xsl:context-item use="absent"/> is specified. 
                  While evaluating a global variable or the default value of a stylesheet parameter (see 9.5 Global Variables and Parameters) the current template rule is absent.
These rules ensure that when xsl:apply-imports or
                     xsl:next-match is called, the context item is the same as when the current template rule was
                     invoked.
 Both xsl:apply-imports and xsl:next-match search
               for a template rule that matches the
                  context
                  item, and that is applicable to the current mode (see 6.7 Modes). In
               choosing a template rule, they use the usual criteria such as the priority and
                  import precedence of the template
               rules, but they consider as candidates only a subset of the template rules in the
                  stylesheet. This subset differs between the
               two instructions:
The xsl:apply-imports instruction considers as candidates only
                     those template rules contained in stylesheet
                        levels that are descendants in the import tree of the stylesheet
                        level that contains the current template rule.
Note:
This is not the same as saying that the search considers all template rules whose import precedence is lower than that of the current template rule.
[ERR XTSE3460] It is a static error if an
                              xsl:apply-imports element appears in a template rule declared within an
                              xsl:override element. (To invoke the template rule
                           that is being overridden, xsl:next-match should
                           therefore be used.)
The xsl:next-match instruction considers as candidates all
                     those template rules that come after the current template rule in the
                     ordering of template rules implied by the conflict resolution rules given in
                        6.6 Conflict Resolution for Template Rules.
This process could be implemented by the following algorithm:
Set  a flag active to false.
Follow the rules in 6.6 Conflict Resolution for Template Rules to find the best matching rule, without raising any errors or warnings if there are multiple matches.
If the template rule identified is the current template rule, discard this
                     rule, and repeat the process from step 2 with the flag active set to true.
Otherwise, if active is set to false, discard this rule, and repeat the process from 
                        step 2, with the flag active still set to false
Otherwise (if active is set to true) use the selected rule.
Note:
An alternative implementation would be to maintain, not just the current template rule, but a list
                        of rules that have been used to process the context item. The implementation of xsl:next-match
                        can then eliminate these rules from the search.
In the absence of type patterns, it is possible to define a total ordering of template rules for each mode, and to exclude those rules that appear before the current template rule in this ordering. The introduction of type patterns makes this approach more challenging, since types are partially ordered.
Note:
Because a template rule declared as a child of xsl:override
                        has higher precedence than any template rule declared in the used package
                        (see 3.5.5 Overriding Template Rules from a Used Package), the effect of
                           xsl:next-match within such a template rule is to
                        consider as candidates first any other template rules for the same mode within the
                        same xsl:use-package element (taking into account explicit and implicit
                        priority, and document order, in the usual way), and then all template rules in
                        the used package.
If no matching template rule is found, both xsl:apply-imports and xsl:next-match
            cause the built-in template rule for the mode to be invoked.
If multiple matching template rules with the same explicit or implicit priority are found, 
               both xsl:apply-imports and xsl:next-match
               respect the on-multiple-match and warning-on-multiple-match attributes of the 
               mode declaration.
Note:
If is entirely possible for xsl:apply-templates to identify a template
               rule unambiguously, and for xsl:apply-imports or xsl:next-match 
               then to fail because there is no unambiguous second-choice template rule.
If a matching template rule R is found, then the result
               of the xsl:next-match or xsl:apply-imports instruction is the 
               result of invoking R. The parameters that are passed to R are as follows:
All parameters explicitly set using xsl:with-param
                  child elements (see 9.10 Setting Parameter Values).
If the effective version of the xsl:next-match 
                     or xsl:apply-imports instruction is 4.0 or greater, then 
                     all non-tunnel parameters that were supplied in the invocation of the
                     current template rule, excluding any whose names match the names of
                     parameters appearing in child xsl:with-param elements.
All tunnel parameters as described in 10.1.6 Tunnel Parameters.
Note:
The implicit passing of non-tunnel parameters is new in XSLT 4.0, and happens only if
                  [xsl:]version is set to 4.0 (or greater) on the instruction, or on some ancestor element
                  in the stylesheet. There may be cases where this
               change introduces a backward incompatibility: specifically, if the invoked template rule declares a default
               value for an optional parameter, it will now take the implicitly passed value rather than the
               default value. The 3.0 behavior can be therefore be retained by setting version="3.0"
               on the xsl:next-match or xsl:apply-imports instruction.
The template rule R is evaluated with the same focus 
               as the xsl:next-match 
               or xsl:apply-imports instruction. The current template rule
               changes to be R. The current mode does not change. 
            
Note:
In the case where the current template rule T is 
               declared within an xsl:override element in a using package P, while 
               the selected rule R is declared within a different package Q, and where 
               the current mode is MP (mode M in package P), the effect 
               is that the current mode for evaluation of R 
               remains MP rather than reverting to its corresponding mode MQ 
               (mode M in package Q). 
               If R contains an xsl:apply-templates instruction that uses
               mode="#current", then the set of template rules considered by this instruction 
               will therefore include any overriding template rules declared in P as well as the original 
               rules declared in Q.
            
If no matching template rule is found that satisfies these criteria, the built-in template rule for the context item is used (see 6.8 Built-in Template Rules).
               [ERR XTDE0560] It is a  dynamic error if
                        xsl:apply-imports or xsl:next-match is
                     evaluated when the current template
                        rule is absent.
            
For example, suppose the stylesheet doc.xsl contains a template rule for example
                  elements:
<xsl:template match="example"> <pre><xsl:apply-templates/></pre> </xsl:template>
Another stylesheet could import doc.xsl and modify the treatment of
                     example elements as follows:
<xsl:import href="doc.xsl"/> <xsl:template match="example"> <div style="border: solid red"> <xsl:apply-imports/> </div> </xsl:template>
The combined effect would be to transform an example into an element
                  of the form:
<div style="border: solid red"><pre>...</pre></div>
An xsl:fallback instruction appearing as a child of an
                  xsl:next-match instruction is ignored by an XSLT 2.0, 3.0, or 4.0 processor, 
               but can be used to define fallback
               behavior when the stylesheet is processed by an XSLT 1.0 processor with forwards
               compatible behavior.
This example shows how an input element such as:
<phrase upper-case="true" italic="true" bold="false" underscore="true">Hannover</phrase>
might be transformed into:
<italic><underscore>HANNOVER</underscore></italic>
The following template rules achieve the required effect:
<xsl:template match="phrase" priority="10"> <xsl:next-match> <xsl:with-param name="upper-case" select="xs:boolean(@upper-case)"/> </xsl:next-match> </xsl:template> <xsl:template match="phrase[xs:boolean(@italic)]" priority="8"> <italic> <xsl:next-match/> </italic> </xsl:template> <xsl:template match="phrase[xs:boolean(@bold)]" priority="6"> <bold> <xsl:next-match/> </bold> </xsl:template> <xsl:template match="phrase[xs:boolean(@underscore)]" priority="4"> <underscore> <xsl:next-match/> </underscore> </xsl:template> <xsl:template match="phrase" priority="2"> <xsl:param name="upper-case" as="xs:boolean?"/> <xsl:if test="$upper-case" then="upper-case(.)" else="string(.)"/> </xsl:template>
Note how the $upper-case parameter is passed implicitly through the chain of template rules.
A template rule may have parameters. The parameters are declared in the body of the
               template using xsl:param elements, as described in 9.2 Parameters.
Values for these parameters may be supplied in the calling
                  xsl:apply-templates, xsl:apply-imports, or
                  xsl:next-match instruction by means of
                  xsl:with-param elements appearing as children of the calling
               instruction. The expanded QName
               represented by the name attribute of the xsl:with-param
               element must match the expanded QName
               represented by the name attribute of the corresponding
                  xsl:param element. 
It is not an error for these instructions to supply a parameter that does not match any parameter declared in the template rule that is invoked; unneeded parameter values are simply ignored.
A parameter may be declared as a tunnel
                  parameter by specifying tunnel="yes" in the
                  xsl:param declaration; in this case the caller must supply the
               value as a tunnel parameter by specifying tunnel="yes" in the
               corresponding xsl:with-param element. Tunnel parameters differ from
               ordinary template parameters in that they are passed transparently through multiple
               template invocations. They are fully described in 10.1.6 Tunnel Parameters.
XSLT offers two constructs for processing each entry in a collection:
               xsl:for-each and xsl:iterate.
Both instructions can be used to process the items in a sequence, the elements in an array, or the entries in a map. Arrays and maps are processed by reducing them to a sequence of items, so in what follows, the terms item and sequence are used generically.
The main difference between the two constructs is that with
               xsl:for-each, the processing applied to each item in the sequence is
            independent of the processing applied to any other item; this means that the items may
            be processed in any order or in parallel, though the order of the output sequence is
            well defined and corresponds to the order of the input (sorted if so requested). By
            contrast, with xsl:iterate, the processing is explicitly sequential:
            while one item is being processed, values may be computed which are then available for
            use while the next item is being processed. This makes xsl:iterate
            suitable for tasks such as creating a running total over a sequence of financial
            transactions.
A further difference is that xsl:for-each permits
            sorting of the input sequence, while xsl:iterate does not.
xsl:for-each instruction
                  The xsl:for-each and xsl:apply-templates
                  instructions acquire an attribute separator that can be
                  used to insert content between adjacent items. [This change was in the
                  editor's draft adopted as a baseline when the WG commenced work.]
                 [  1 January 2022]
<!-- Category: instruction -->
<xsl:for-each
  select = expression
  separator? = { string } >
  <!-- Content: (xsl:sort*, sequence-constructor) -->
</xsl:for-each>
The xsl:for-each instruction processes each  in a sequence of
               items, evaluating the sequence
                  constructor within the xsl:for-each instruction once
               for each item in that sequence.
 The select attribute is required; it contains an
                  expression which is evaluated to produce a
               sequence, called the input sequence. If there is an xsl:sort element
               present (see 13 Sorting) the input sequence is sorted to produce a
               sorted sequence. Otherwise, the sorted sequence is the same as the input
               sequence.
The xsl:for-each instruction contains a sequence constructor. The sequence constructor is evaluated once for
               each item in the sorted sequence, with the focus
               set as follows:
The context item is the item being processed.
The context position is the position of this item in the sorted sequence.
The context size is the size of the sorted sequence (which is the same as the size of the input sequence).
 For each item in the input sequence, evaluating the sequence constructor produces a sequence
               of items (see 5.7 Sequence Constructors). These output sequences are
               concatenated; if item Q follows item P in the sorted sequence,
               then the result of evaluating the sequence constructor with Q as the
               context item is concatenated after the result of evaluating the sequence constructor
               with P as the context item. The result of the
                  xsl:for-each instruction is the concatenated sequence of
               items.
For example, given an XML document with this structure
<customers> <customer> <name>...</name> <order>...</order> <order>...</order> </customer> <customer> <name>...</name> <order>...</order> <order>...</order> </customer> </customers>
the following would create an HTML document containing a table with a row for each
                     customer element
<xsl:template match="/"> <html> <head> <title>Customers</title> </head> <body> <table> <tbody> <xsl:for-each select="customers/customer"> <tr> <th> <xsl:apply-templates select="name"/> </th> <xsl:for-each select="order"> <td> <xsl:apply-templates/> </td> </xsl:for-each> </tr> </xsl:for-each> </tbody> </table> </body> </html> </xsl:template>
Consider a JSON document of the form:
[
  { "city": "London", "latitude": 51.5099, "longitude": -0.1181 },
  { "city": "Paris",  "latitude": 48.8647, "longitude": 2.3488 },
  { "city": "Berlin", "latitude": 52.5200, "longitude": 13.4049 }                  
]
                  The following code processes this array to produce an XML representation of the same information. The cities are sorted by name:
<xsl:for-each select="json-doc('input.json')?*"> <xsl:sort select="?city"/> <city number="{position()}" name="{?city}" latitude="{?latitude}" longitude="{?longitude}"/> </xsl:for-each>
In this example it is possible to use the expression $array?* to convert an array to a sequence.
               This works because the members of the array are all single items. In the more general case (a member
               of the array might be an empty sequence, corresponding to the JSON value null, or it
               might be a sequence containing several items), the function array:members can be
               used to deliver the contents of the array as a sequence of value records. This is 
               illustrated in the next example.
Consider a JSON document of the form:
[
   { "city": "London", "data": [12.3, 15.6, null, 18.2] },
   { "city": "Paris",  "data": [7.9, 19.1, 23.0, null] },
   { "city": "Berlin", "data": [5.6, null, 14.6, 9.5] }                  
]
                  The requirement is to convert this to the following XML:
<cities> <city name="London" Q1="12.3" Q2="15.6" Q3="" Q4="18.2"/> <city name="Paris" Q1="7.9" Q2="19.1" Q3="23.0" Q4=""/> <city name="Berlin" Q1="5.6" Q2="" Q3="14.6" Q4="9.5"/> </cities>
The following code achieves this transformation:
<xsl:for-each select="json-doc('input.json')?*"> <city name="{?city}"> <xsl:for-each select="array:members(?data)"> <xsl:attribute name="Q{position()}" select="?value"/> </xsl:for-each> </city> </xsl:for-each>
In this example the expression $array?* cannot be used on the inner arrays
                  because JSON nulls (which translate to an empty sequence in XDM) would be lost. Instead
                  the function array:members is used to create a sequence of
                  value records: a non-null entry is represented by a value such as { 'value': 12.3 },
                  while a null entry would be { 'value': () }.
Consider a JSON document of the form:
{
  "London": { "latitude": 51.5099, "longitude": -0.1181 },
  "Paris":  { "latitude": 48.8647, "longitude": 2.3488 },
  "Berlin": { "latitude": 52.5200, "longitude": 13.4049 }                  
}
                  The following code processes this map to produce an XML representation of the same information. The cities are sorted by name:
<xsl:for-each select="map:pairs(json-doc('input.json'))"> <xsl:sort select="?key"/> <city number="{position()}" name="{?key}" latitude="{?value?latitude}" longitude="{?value?longitude}"/> </xsl:for-each>
In this example the map is decomposed to a sequence of key-value pairs, each represented as
               a map with two entries, "key" and "value", which can be accessed using
               the lookup expressions ?key and ?value.
separator attributeIf the separator attribute is present, then its effective value
               is inserted, as a text node, into the output sequence, immediately after the results of processing each item in the sorted
               sequence other than the last.
For example, the following instruction:
<xsl:for-each select="6, 3, 9" separator="|"> <xsl:sort select="."/> <xsl:sequence select="., . + 1"/> </xsl:for-each>
produces a sequence comprising, in order: the integer 3, the integer 4, a text node with string value "|",
               the integer 6, the integer 7, another text node with string value "|",
            the integer 9, and the integer 10.
The node identity of any text nodes that are inserted is implementation-dependent. Specifically, it is not defined whether all the text nodes inserted in the course of one evaluation of the instruction are identical to each other, nor whether they are identical to the text nodes inserted in the course of another evaluation of this instruction, nor whether they are identical to any other parentless text nodes having the same string value.
If the separator is a zero-length string, then a zero-length text node is inserted into the sequence. (If the sequence is used for constructing the value of a node, then zero-length text nodes will be discarded: see 5.7.2 Constructing Simple Content and 5.7.1 Constructing Complex Content.)
xsl:iterate InstructionThe xsl:iterate instruction processes the items in a sequence
            in order; unlike xsl:for-each, the result of processing one item can affect the way that
            subsequent items are processed.
<!-- Category: instruction -->
<xsl:iterate
  select = expression >
  <!-- Content: (xsl:param*, xsl:on-completion?, sequence-constructor) -->
</xsl:iterate>
<!-- Category: instruction -->
<xsl:next-iteration>
  <!-- Content: (xsl:with-param*) -->
</xsl:next-iteration>
<!-- Category: instruction -->
<xsl:break
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:break>
<xsl:on-completion
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:on-completion>
Consider the following JSON document representing transactions in a bank account:
[
  { "date": "2008-09-01", credit: 12.00 },
  { "date": "2008-09-01", credit: 8.00 },
  { "date": "2008-09-02", debit: 2.00 },
  { "date": "2008-09-02", credit: 12.00 }
]
                  The following code converts this to an XML representation that includes a running balance:
<xsl:iterate select="json-doc('account.json') => array:members()"> <xsl:param name="balance" as="xs:decimal" select="0"/> <xsl:variable name="delta" select="?value?credit otherwise -?value?debit"/> <entry date="{ ?value?date }" amount="{ $delta }" balance="{ $balance + $delta }"/> <xsl:next-iteration> <xsl:with-param name="balance" select="$balance + $delta"/> </xsl:next-iteration> </xsl:iterate>
Using array:members() in this way makes it possible to process any array, including one whose members
               are arbitrary sequences rather than single items. In this particular case, if it is known that the JSON array
               will not contain any null entries, or if any null entries are to be ignored,
                  it becomes possible to simplify the code as follows:
<xsl:iterate select="json-doc('account.json')?*"> <xsl:param name="balance" as="xs:decimal" select="0"/> <xsl:variable name="delta" select="?credit otherwise -?debit"/> <entry date="{ ?date }" amount="{ $delta }" balance="{ $balance + $delta }"/> <xsl:next-iteration> <xsl:with-param name="balance" select="$balance + $delta"/> </xsl:next-iteration> </xsl:iterate>
The select attribute contains an
                  expression which is evaluated to produce a
               sequence, called the input sequence.
The sequence constructor contained in the
                  xsl:iterate instruction is evaluated once for each item in the
               input sequence, in order, or until the loop exits by evaluating an
                  xsl:break instruction, whichever is earlier. Within the sequence constructor that forms the body
               of the xsl:iterate instruction, the context item is set to each item from the value of the
                  select expression in turn; the context position reflects the position of this item in the input
               sequence, and the context size is the number
               of items in the input sequence (which may be greater than the number of iterations,
               if the loop exits prematurely using xsl:break).
Note:
If xsl:iterate is used in conjunction with
                     xsl:source-document to achieve streaming, calls on the function
                     last will be disallowed. 
The xsl:break and
                  xsl:on-completion elements may have either a select
               attribute or a non-empty contained sequence constructor but not
               both. The effect of the element in both cases is obtained by evaluating the
                  select expression if present or the contained sequence constructor
               otherwise; if neither is present, the value is an empty sequence.
Note:
The xsl:on-completion element appears before other children
                  of xsl:iterate
                  to ensure that variables declared in the sequence constructor are not in scope
                  within xsl:on-completion, since such variables do not have a
                  defined value within xsl:on-completion especially in the case
                  where the value of the select attribute is an empty sequence.
The effect of xsl:next-iteration is to cause the iteration to
               continue by processing the next item in the input sequence, potentially with
               different values for the iteration parameters. The effect of
                  xsl:break is to cause the iteration to finish, whether or not all
               the items in the input sequence have been processed. In both cases the affected
               iteration is the one controlled by the innermost ancestor
                  xsl:iterate element.
The instructions xsl:next-iteration and xsl:break
               are allowed only as descendants of an xsl:iterate instruction, and
               only in a tail position within the sequence constructor forming the body of
               the xsl:iterate instruction. 
[Definition: An instruction J is in a tail position within a sequence constructor SC if it satisfies one of the following conditions:
J is the last instruction in SC, ignoring any
                        xsl:fallback instructions.
J is in a tail position
                     within the sequence constructor that forms the body of an
                        xsl:if instruction that is itself in a tail position within SC.
J is in a tail position
                     within the sequence constructor that forms the body of an
                        xsl:when or xsl:otherwise branch of an
                        xsl:choose or xsl:switch 
                     instruction that is itself in a tail position within SC.
J is in a tail position
                     within the sequence constructor that forms the body of an
                        xsl:try instruction that is itself in a tail position within SC (that
                     is, it is immediately followed by an xsl:catch element,
                     ignoring any xsl:fallback elements).
J is in a tail position
                     within the sequence constructor that forms the body of an
                        xsl:catch element within an xsl:try
                     instruction that is itself in a tail
                        position within SC.
]
               [ERR XTSE3120] It is a static error if an
                        xsl:break or xsl:next-iteration element
                     appears other than in a tail position
                     within the sequence
                        constructor forming the body of an xsl:iterate
                     instruction.
            
               [ERR XTSE3125] It is a static error if the
                        select attribute of xsl:break or
                        xsl:on-completion is present and the instruction has
                     children.
            
               [ERR XTSE3130] It is a static error if the
                        name attribute of an xsl:with-param child of
                     an xsl:next-iteration element does not match the
                        name attribute of an xsl:param child of the
                        innermost containing
                        xsl:iterate instruction.
            
Parameter names in xsl:with-param must be unique: [see ERR XTSE0670].
The result of the xsl:iterate instruction is the concatenation of
               the sequences that result from the repeated evaluation of the contained sequence constructor, followed by the
               sequence that results from evaluating the xsl:break or
                  xsl:on-completion element if any.
Any xsl:param element that appears as a child of
                  xsl:iterate declares a parameter whose value may vary from one
               iteration to the next. The initial value of the parameter is the value obtained
               according to the rules given in 9.3 Values of Variables and Parameters. The dynamic context
               for evaluating the initial value of an xsl:param element is the same
               as the dynamic context for evaluating the select expression of the
                  xsl:iterate instruction (the context item is thus
                  not the first item in the input sequence).
On the first iteration a parameter always takes its initial value (which may depend on variables or other aspects of the dynamic context). Subsequently:
If an xsl:next-iteration instruction is evaluated, then
                     parameter values for processing the next item in the input sequence can be set
                     in the xsl:with-param children of that instruction; in the
                     absence of an xsl:with-param element that names a particular
                     parameter, that parameter will retain its value from the previous
                     iteration.
If an xsl:break instruction is evaluated, no further items in
                     the input sequence are processed.
If neither an xsl:next-iteration nor an
                        xsl:break instruction is evaluated, then the next item in
                     the input sequence is processed using parameter values that are unchanged from
                     the previous iteration.
The xsl:next-iteration instruction contributes nothing to the result
               sequence (technically, it returns an empty sequence). The instruction supplies
               parameter values for the next iteration, which are evaluated according to the rules
               given in 9.10 Setting Parameter Values; if there are no further items in the input
               sequence then it supplies parameter values for use while evaluating the body of the
                  xsl:on-completion element if any.
The xsl:break instruction indicates that the iteration should
               terminate without processing any remaining items from the input sequence. The select expression or  contained sequence
               constructor is evaluated using the same context item, position, and size as the
                  xsl:break instruction itself, and the result is appended to the
               result of the xsl:iterate instruction as a whole.
If neither an xsl:next-iteration nor an xsl:break
               instruction is evaluated, the next item in the input sequence is processed with
               parameter values unchanged from the previous iteration; if there are no further items
               in the input sequence, the iteration terminates.
The optional xsl:on-completion element (which is not technically an
                  instruction and is not technically part of
               the sequence constructor) is evaluated when the input sequence is
               exhausted. It is not evaluated if the evaluation is terminated using
                  xsl:break. During evaluation of its select expression or sequence constructor
               the context item, position, and size are absent
               (that is, any reference to these values is an error). However, the values of the
               parameters to xsl:iterate are available, and take the values
               supplied by the xsl:next-iteration instruction evaluated while
               processing the last item in the sequence.
If the input sequence is empty, then the result of the
                  xsl:iterate instruction is the result of evaluating the select attribute or sequence constructor forming the body of
               the xsl:on-completion element, using the initial values of the
                  xsl:param elements. If there is no
                  xsl:on-completion element, the result is an empty sequence.
Note:
Conceptually, xsl:iterate behaves like a tail-recursive function.
                  The xsl:next-iteration instruction then represents the recursive
                  call, supplying the tail of the input sequence as an implicit parameter. There are
                  two main reasons for providing the xsl:iterate instruction. One
                  is that many XSLT users find writing recursive functions to be a difficult skill,
                  and this construct promises to be easier to learn. The other is that recursive
                  function calls are difficult for an optimizer to analyze. Because
                     xsl:iterate is more constrained than a general-purpose
                  head-tail recursive function, it should be more amenable to optimization. In
                  particular, when the instruction is used in conjunction with
                     xsl:source-document, it is designed to make it easy for the
                  implementation to use streaming techniques, processing the nodes in an input
                  document sequentially as they are read, without building the entire document tree
                  in memory.
Note:
One of the motivations for introducing the xsl:iterate instruction
               was to enable information to be retained while processing a streamed sequence of
               sibling nodes. For examples illustrating this, see 6 Streaming withSG.
There are several instructions in XSLT that support conditional processing:
               xsl:if, xsl:choose, and xsl:switch. 
            The xsl:if
            instruction provides simple if-then-else conditionality; the xsl:choose
            instruction supports selection of one choice when there are several possibilities,
            and xsl:switch allows a branch to be selected based on the value of a given
         expression.
XSLT 3.0 also supports xsl:try and
               xsl:catch which define conditional processing to handle dynamic errors.
Note:
XSLT offers a number of ways of expressing conditional logic.
XSLT 1.0 offered the xsl:if instruction for cases where output was to be produced only if a condition was true,
         with xsl:choose available for multi-way branches where different output was to be produced under different
         input conditions. In addition, of course, XSLT 1.0 also offered the option of rule-based processing using templates and match patterns.
XSLT 2.0 added the XPath conditional expression providing two-way branches for use at a finer-grained level where
            xsl:choose could be excessively verbose: it allowed constructs such as 
            <xsl:value-of select="if ($x) then 'red' else 'green'/> to be reduced from eight lines of code to one.
XSLT 4.0 introduces the then and else attributes for xsl:if,
            which are particularly useful in contexts such as the body of an xsl:function declaration where
            the alternative results are conveniently evaluated using XPath expressions rather than XSLT instructions:
            for example a recursive function might have as its body the instruction 
               <xsl:if test="empty($seq)" then="1" else="head($seq) * my:f(tail($seq))"/>.
            The select attribute of xsl:when and xsl:otherwise
               is introduced for similar reasons: XSLT instructions
            are most useful when contructing node trees, whereas XPath expressions are more convenient when computing
            atomic items. Again, the main contribution of these enhancements is to reduce visual clutter, making
            the code more concise and more easily readable.
The xsl:switch instruction is introduced in XSLT 4.0 as an alternative to xsl:choose
            for the common use case where the conditions test for multiple different values of some common expression. By avoiding
            repetition of the common expression whose value is being tested, the logic becomes self-explanatory both to the human reader
            of the code and to an optimizing compiler, making it easier to generate efficient branching code.
xsl:if<!-- Category: instruction -->
<xsl:if
  test = expression
  then? = expression
  else? = expression〔()〕 >
  <!-- Content: sequence-constructor -->
</xsl:if>
The xsl:if element has a mandatory test attribute,
               whose value is an expression. The content is
               a sequence constructor.
If the xsl:if element has a then attribute, then it
               must have no children. That is, the then attribute and the
               contained sequence constructor are mutually exclusive.
The result of the xsl:if instruction depends on the effective boolean valueXP of the expression in
               the test attribute. The rules for determining the effective boolean
               value of an expression are given in [XPath 4.0]: they are the same as
               the rules used for XPath conditional expressions.
If the effective boolean value of the expression is true, then:
If there is a then attribute, the expression in the then
                  attribute is evaluated, and the resulting value is returned as the result of the 
                  xsl:if instruction.
If there is a non-empty sequence constructor, it is evaluated and the
                  resulting value is returned as the result of the 
                  xsl:if instruction.
Otherwise, the result of the 
                  xsl:if instruction is an empty sequence.
If the effective boolean value of the test expression is false, then:
If there is an else attribute, the expression in the else
                  attribute is evaluated, and the resulting value is returned as the result of the 
                  xsl:if instruction.
Otherwise, the result of the 
                  xsl:if instruction is an empty sequence.
If the test expression has no effective boolean value (for example,
            if it is a sequence of several integers, or a map), then a dynamic error occurs. 
            (See [ERR FORG0006] FO.)
Note:
The semantics of the xsl:if instruction are essentially equivalent to the semantics
               of the conditional expression in XPath: the construct <xsl:if test="C" then="X" else="Y"/>
                  can equivalently be written <xsl:sequence select="if (C) then X else Y"/>. The same
                  effect can also be achieved by writing 
                  <xsl:choose><xsl:when test="C" select="X"/><xsl:otherwise select="Y"/></xsl:choose>.
                  The choice of which of these constructs to use is a largely matter of personal style.
                  
               
In the following example, the names in a group of names are formatted as a comma separated list:
<xsl:template match="namelist/name"> <xsl:apply-templates/> <xsl:if test="not(position()=last())">, </xsl:if> </xsl:template>
This adds a comma after every item except the last. This can also be expressed as:
<xsl:template match="namelist/name"> <xsl:if test="not(position()=1)">, </xsl:if> <xsl:apply-templates/> </xsl:template>
which inserts a comma before every item except the first. (This formulation might be more efficient, since determining whether an item is the last may involve look-ahead.)
The following example shows the use of xsl:if to
                  deliver the result of a recursive function:
<xsl:function name="f:product" as="xs:double"> <xsl:param name="in" as="xs:double*"/> <xsl:if test="empty($in)" then="1e0" else="head($in) * f:product(tail($in))"/> </xsl:function>
xsl:choose
                  In xsl:choose, the xsl:when and
                  xsl:otherwise elements can take a select attribute
                  in place of a sequence constructor. 
                 [Issue 167 PR 237 25 November 2022]
<!-- Category: instruction -->
<xsl:choose>
  <!-- Content: (xsl:when+, xsl:otherwise?) -->
</xsl:choose>
<xsl:when
  test = expression
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:when>
<xsl:otherwise
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:otherwise>
The xsl:choose element selects one among a number of possible
               alternatives. It consists of a sequence of one or more xsl:when
               elements followed by an optional xsl:otherwise element. Each
               xsl:when element has an attribute, test, which
               specifies an expression used as a condition.
The effective value of an xsl:when or xsl:otherwise
               branch may be supplied using either a select attribute or a contained
               sequence constructor. These are
               mutually exclusive: if the select attribute is present then the
               sequence constructor must be empty, and if the sequence constructor is non-empty
               then the select attribute must be absent 
               [see ERR XTSE3185]. 
               If the select
               attribute is absent and the sequence constructor is empty, then the
               effective value is an empty sequence.
When an xsl:choose element is processed, each of the
               xsl:when elements is tested in turn (that is, in the order that
               the elements appear in the stylesheet), until one of the xsl:when
               elements is satisfied. If none of the xsl:when elements is
               satisfied, then the xsl:otherwise element is considered, as
               described below.
An xsl:when element is satisfied if the effective boolean valueXP of the expression in its test attribute is
               true. The rules for determining the effective boolean value of an
               expression are given in [XPath 4.0]: they are the same as the rules used
               for XPath conditional expressions.
The  first, and only the first, xsl:when element that
               is satisfied is evaluated, and the resulting sequence (that is,
                  the result of evaluating its select attribute or contained sequence constructor 
                  as appropriate) is returned as the result of
               the xsl:choose instruction. If no xsl:when element
               is satisfied, the content of the xsl:otherwise element is evaluated,
               and the resulting sequence is returned as the result of the
               xsl:choose instruction. If no xsl:when element
               is satisfied, and no xsl:otherwise element is present, the result of
               the xsl:choose instruction is an empty sequence.
The select expressions and sequence constructors of  
               xsl:when and
               xsl:otherwise instructions after the selected one are not evaluated. 
               The test
               expressions for xsl:when instructions after the selected one are not
               evaluated.
The following example enumerates items in an ordered list using arabic numerals, letters, or roman numerals depending on the depth to which the ordered lists are nested.
<xsl:template match="orderedlist/listitem"> <fo:list-item indent-start='2pi'> <fo:list-item-label> <xsl:variable name="level" select="count(ancestor::orderedlist) mod 3"/> <xsl:choose> <xsl:when test='$level=1'> <xsl:number format="i"/> </xsl:when> <xsl:when test='$level=2'> <xsl:number format="a"/> </xsl:when> <xsl:otherwise> <xsl:number format="1"/> </xsl:otherwise> </xsl:choose> <xsl:text>. </xsl:text> </fo:list-item-label> <fo:list-item-body> <xsl:apply-templates/> </fo:list-item-body> </fo:list-item> </xsl:template>
The following example is equivalent to the one above:
<xsl:template match="orderedlist/listitem"> <fo:list-item indent-start='2pi'> <fo:list-item-label> <xsl:variable name="level" select="count(ancestor::orderedlist) mod 3"/> <xsl:variable name="format" as="xs:string"> <xsl:choose> <xsl:when test='$level=1' select="'i'"/> <xsl:when test='$level=2' select="'a'"/> <xsl:otherwise select="'1'"/> </xsl:choose> </xsl:variable> <xsl:number format="{ $format }"/> <xsl:text>. </xsl:text> </fo:list-item-label> <fo:list-item-body> <xsl:apply-templates/> </fo:list-item-body> </fo:list-item> </xsl:template>
xsl:switch
                  A new xsl:switch instruction is introduced.
                 [Issue 167 PR 237 25 November 2022]
<!-- Category: instruction -->
<xsl:switch
  select = expression >
  <!-- Content: (xsl:when+, xsl:otherwise?, xsl:fallback*) -->
</xsl:switch>
<xsl:when
  test = expression
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:when>
<xsl:otherwise
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:otherwise>
The xsl:switch element selects one among a number of possible
               alternatives. The select attribute of the xsl:switch element
               is evaluated to obtain an atomic item, which is compared with the values given by the
               test attributes of the xsl:when elements, in turn.
The content of the xsl:switch element consists of a sequence of one or more xsl:when
               elements followed by an optional xsl:otherwise element. Each
               xsl:when element has an attribute, test, which
               contains an expression.
The result of an xsl:when or xsl:otherwise
               branch may be supplied using either a select attribute or a contained
               sequence constructor. These are
               mutually exclusive: if the select attribute is present then the
               sequence constructor must be empty, and if the sequence constructor is non-empty
               then the select attribute must be absent. If the select
               attribute is absent and the sequence constructor is empty, then the
               result is an empty sequence.
Any xsl:fallback children are ignored by an XSLT 4.0 processor, but
               can be used to define the recovery action to be taken by a processor for an earlier version of XSLT when
               operating with forwards compatible behavior.
An xsl:switch element is processed as follows:
The select expression of the xsl:switch
                  element is evaluated.
The result of the evaluation is converted to a single atomic item by applying the coercion rules; a type error occurs if this conversion is not possible. This value is referred to below as the selector.
Each of the
                  xsl:when elements is tested in turn (that is, in the order that
                  the elements appear in the stylesheet), until one of the xsl:when
                  elements is satisfied. If none of the xsl:when elements is
                  satisfied, then the xsl:otherwise element is considered, as
                  described below.
An xsl:when element is tested by first evaluating its test
                     expression and converting the result to a sequence of atomic items
                     by applying the coercion rules, and then
                     comparing this sequence of atomic items with the selector value. The
                     comparison is performed using the rules of the XPath = operator,
                     using the default collation that is in scope for the xsl:switch
                     instruction.
An xsl:when element is satisfied if the result of this comparison is
                     true.
The first, and only the first, xsl:when element that
                  is satisfied is evaluated, and the resulting sequence (that is,
                     the result of evaluating its select attribute or contained sequence constructor 
                     as appropriate) is returned as the result of
                  the xsl:switch instruction. If no xsl:when element
                  is satisfied, the content of the xsl:otherwise element is evaluated,
                  and the resulting sequence is returned as the result of the
                  xsl:switch instruction. If no xsl:when element
                  is satisfied, and no xsl:otherwise element is present, the result of
                  the xsl:switch instruction is an empty sequence.
The select expressions and sequence constructors of  
                  xsl:when and
                  xsl:otherwise instructions after the selected one are not evaluated. 
                  The test
                  expressions for xsl:when instructions after the selected one are not
                  evaluated.
Note:
There is no requirement that the values of select expressions
               should be literals, nor that the values should be distinct.
The following example shows a simple function to convert a month number to a month name:
<xsl:function name="f:month-name" as="xs:string"> <xsl:param name="month-number" as="xs:integer"/> <xsl:switch select="$month-number"> <xsl:when test="1" select="'January'"/> <xsl:when test="2" select="'February'"/> <xsl:when test="3" select="'March'"/> <xsl:when test="4" select="'April'"/> <xsl:when test="5" select="'May'"/> <xsl:when test="6" select="'June'"/> <xsl:when test="7" select="'July'"/> <xsl:when test="8" select="'August'"/> <xsl:when test="9" select="'September'"/> <xsl:when test="10" select="'October'"/> <xsl:when test="11" select="'November'"/> <xsl:when test="12" select="'December'"/> <xsl:otherwise select="error('Unknown month')"/> </xsl:switch> </xsl:function>
This function returns the number of days in a month, returning an empty sequence if the supplied month is invalid.
<xsl:function name="f:days-in-month" as="xs:integer?"> <xsl:param name="month-number" as="xs:integer"/> <xsl:param name="leap-year" as="xs:boolean"/> <xsl:switch select="$month-number"> <xsl:when test="1, 3, 5, 7, 8, 10, 12" select="31"/> <xsl:when test="4, 6, 9, 11" select="30"/> <xsl:when test="2"> <xsl:if test="$leap-year" then="29" else="28"/> </xsl:when> </xsl:switch> </xsl:function>
The xsl:try instruction can be used to trap
               dynamic errors occurring within the expression it wraps; the recovery action if such
               errors occur is defined using a child xsl:catch element.
<!-- Category: instruction -->
<xsl:try
  select? = expression
  rollback-output? = boolean〔'yes'〕 >
  <!-- Content: (sequence-constructor, xsl:catch, (xsl:catch | xsl:fallback)*) -->
</xsl:try>
Note:
Because a sequence constructor may contain an xsl:fallback
                  element, the effect of this content model is that an xsl:fallback
                  instruction may appear as a child of xsl:try in any position.
<xsl:catch
  errors? = tokens〔'*'〕
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:catch>
An xsl:try instruction evaluates either the expression contained in
               its select attribute, or its contained sequence constructor, and returns the
               result of that evaluation if it succeeds without error. If a dynamic error occurs during the evaluation, the
               processor evaluates the first xsl:catch child element applicable to
               the error, and returns that result instead.
If the xsl:try element has a select attribute, then it
                  must have no children other than xsl:catch and
                  xsl:fallback. That is, the select attribute and the
               contained sequence constructor are mutually exclusive. If neither is present, the
               result of the xsl:try is an empty sequence (no dynamic error can
               occur in this case).
The rollback-output attribute is described in
                  8.4.1 Recovery of Result Trees. The default value is yes.
               [ERR XTSE3140] It is a static error if the
                        select attribute of the xsl:try element is
                     present and the element has children other than xsl:catch and
                        xsl:fallback elements.
            
Any xsl:fallback children of the xsl:try element
               are ignored by an XSLT 3.0 processor, but can be used to define the recovery action
               taken by an XSLT 1.0 or XSLT 2.0 processor operating with forwards compatible behavior.
The xsl:catch element has an optional errors attribute,
               which lists the error conditions that the xsl:catch element is
               designed to intercept. The default value is errors="*", which catches
               all errors. The value is a whitespace-separated list of NameTestsXP; an xsl:catch element
               catches an error condition if this list includes a NameTest that matches
               the error code associated with that error condition.
Note:
Error codes are QNames. Those defined in this specification and in related
                  specifications are all in the standard
                     error namespace, and may therefore be caught using an
                     xsl:catch element such as <xsl:catch
                     errors="err:FODC0001 err:FODC0005"> where the namespace prefix
                     err is bound to this namespace. Errors defined by implementers,
                  and errors raised by an explicit call of the error function
                  or by use of the xsl:message
                  or xsl:assert instruction, may
                  use error codes in other namespaces.
If more than one xsl:catch element matches an error, the error is
               processed using the first one that matches, in document order. If no
                  xsl:catch matches the error, then the error is not caught (that
               is, evaluation of the xsl:try element fails with the dynamic
               error).
An xsl:catch element may have either a select
               attribute, or a contained sequence
                  constructor.
               [ERR XTSE3150] It is a static error if the
                        select attribute of the xsl:catch element is
                     present unless the element has empty content.
            
The result of evaluating the xsl:catch element is the result of
               evaluating the XPath expression in its select attribute or the result of
               evaluating the contained sequence constructor; if neither is present, the result is
               an empty sequence. This result is delivered as the result of the xsl:try
               instruction.
If a dynamic error occurs during the evaluation of xsl:catch, it
               causes the containing xsl:try to fail with this error. The error is
               not caught by other sibling xsl:catch elements within the same
                  xsl:try instruction, but it may be caught by an
                  xsl:try instruction at an outer level, or by an
                  xsl:try instruction nested within the xsl:catch. 
Within the select expression, or within the sequence constructor
               contained by the xsl:catch element, a number of variables are
               implicitly declared, giving information about the error that occurred. These are
               lexically scoped to the xsl:catch element. These variables are all in
               the standard error namespace,
               and they are initialized as described in the following table:
| Variable | Type | Value | 
|---|---|---|
| err:code | xs:QName | The error code | 
| err:description | xs:string? | A description of the error condition; an empty sequence if no description is available
                           (for example, if
                           the errorfunction was called with one
                           argument). | 
| err:value | item()* | Value associated with the error. For an error raised by
                           calling the errorfunction, this is the value of the
                           third argument (if supplied). For an error raised by evaluatingxsl:messagewithterminate="yes", or a failingxsl:assert, this
                           is the document node at the root of the tree containing the XML message
                           body. | 
| err:module | xs:string? | The URI (or system ID) of the stylesheet module containing the instruction where the error occurred; an empty sequence if the information is not available. | 
| err:line-number | xs:integer? | The line number within the stylesheet module of the instruction where the error occurred; an empty sequence if the information is not available. The value may be approximate. | 
| err:column-number | xs:integer? | The column number within the stylesheet module of the instruction where the error occurred; an empty sequence if the information is not available. The value may be approximate. | 
| err:stack-trace | xs:string? | An implementation-dependent string containing diagnostic information about the state of execution at the point where the error occured, or an empty sequence if no stack trace is available. | 
| err:additional | item()* | Additional implementation-defined information about the error. | 
| err:map | map(xs:string, item()*) | A map with entries that are bound to the variables above. The local names of the variables are assigned as keys. No map entries are created for those values that are empty sequences. The variable can be used to pass on all error information to another function. | 
Variables declared within the sequence constructor of the xsl:try
               element (and not within an xsl:catch) are not visible within the
                  xsl:catch element.
Note:
Within an xsl:catch it is possible to re-raise the error using
                  the function call error($err:code, $err:description, $err:value).
The following additional rules apply to the catching of errors:
All dynamic errors occurring during the evaluation of the
                        xsl:try sequence constructor or select
                     expression are caught (provided they match one of the
                        xsl:catch elements). 
Note:
This includes errors occurring in functions or templates invoked in
                              the course of this evaluation, unless already caught by a nested
                                 xsl:try.
It also includes (for
                                 example) errors caused by calling the
                                 error function, or the
                                 xsl:message instruction with
                                 terminate="yes", or the 
                                 xsl:assert instruction, or the xs:error constructor
                                 function. 
It does not include errors that occur while evaluating references to
                              variables whose declaration and initialization is outside the
                                 xsl:try.
The existence of an xsl:try instruction does not affect the
                     obligation of the processor to raise certain errors as static errors, or its
                     right to choose whether to raise some errors (such as type errors) statically or dynamically. Static
                     errors are never caught.
Some fatal errors arising in the processing environment, such as running out of
                     memory, may cause termination of the transformation despite the presence of an
                        xsl:try instruction. This is implementation-dependent.
If the sequence constructor or select expression of the
                        xsl:try causes execution of
                        xsl:result-document, xsl:message, or xsl:assert instructions and
                     fails with a dynamic error that is caught, it is implementation-dependent
                     whether these instructions have any externally visible effect. The processor is
                        not required to roll back any changes made by these
                     instructions. The same applies to any side effects caused by extension
                     functions or extension instructions.
A serialization error that occurs during the serialization of
                     a secondary result produced
                     using xsl:result-document is treated as a dynamic error in the
                     evaluation of the xsl:result-document instruction, and may be
                     caught (for example by an xsl:try instruction that contains
                     the xsl:result-document instruction). A serialization error
                     that occurs while serializing the principal result
                      is
                     treated as occurring after the transformation has finished, and cannot be
                     caught. 
A validation error is treated as occurring in the instruction
                     that requested validation. For example, if the stylesheet is producing XHTML
                     output and requests validation of the entire result document by means of the
                     attribute validation="strict" on the instruction that creates the
                     outermost html element, then a validation failure can be caught
                     only at that level. Although the validation error might be detected, for
                     example, while writing a p element at a location where no
                        p element is allowed, it is not treated as an error in the
                     instruction that writes the p element and cannot be caught at that
                     level.
A type error may be caught if the processor raises it dynamically; this does not affect the processor’s right to raise the error statically if it chooses.
The following rules are provided to define which expression is considered to fail when a type error occurs, and therefore where the error can be caught. The general principle is that where the semantics of a construct C place requirements on the type of some subexpression, a type error is an error in the evaluation of C, not in the evaluation of the subexpression.
For example, consider the following construct:
<xsl:variable name="v" as="xs:integer"> <xsl:sequence select="$foo"/> </xsl:variable>
The expected type of the result of the sequence constructor is
                        xs:integer; if the value of variable $foo turns
                     out to be a string, then a type error will occur. It is not possible to catch
                     this by writing:
<xsl:variable name="v" as="xs:integer"> <xsl:try> <xsl:sequence select="$foo"/> <xsl:catch>...</xsl:catch> </xsl:try> </xsl:variable>
This fails to catch the error because the xsl:sequence
                     instruction is deemed to evaluate successfully; the failure only occurs when
                     the result of this instruction is bound to the variable.
A similar rule applies to functions: if the body of a function computes a result which does not conform to the required type of the function result, it is not possible to catch this error within the function body itself; it can only be caught by the caller of the function. Similarly, if an expression used to compute an argument to a function returns a value of the wrong type for the function signature, this is not considered an error in this expression, but an error in evaluating the function call as a whole.
A consequence of these rules is that when a type error occurs while initializing a global variable (because the initializer returns a value of the wrong type, given the declared type of the variable), then this error cannot be caught.
Note:
Because processors are permitted to raise type errors during static
                        analysis, it is unwise to attempt to recover from type errors dynamically.
                        The best strategy is generally to prevent their occurrence. For example,
                        rather than writing $p + 1 where $p is a parameter
                        of unknown type, and then catching the type error that occurs if
                           $p is not numeric, it is better first to test whether
                           $p is numeric, perhaps by means of an expression such as
                           $p instance of my:numeric, where my:numeric is
                        a union type with xs:double, xs:float, and
                           xs:decimal as its member types.
The fact that the application tries to catch errors does not prevent the
                     processor from organizing the evaluation in such a way as to prevent errors
                     occurring. For example exists(//a[10 div . gt 5]) may still do an
                     “early exit”, rather than examining every item in the sequence just to see if
                     it triggers a divide-by-zero error.
Except as specified above, the optimizer must not rearrange the evaluation (at compile time or at run time) so that expressions written to be subject to the try/catch are evaluated outside its scope, or expressions written to be external to the try/catch are evaluated within its scope. This does not prevent expressions being rearranged, but any expression that is so rearranged must carry its try/catch context with it.
The XSLT language is designed so that a processor that chooses to execute instructions in document order will always append nodes to the result tree in document order, and never needs to update a result tree in situ. As a result, it is normal practice for XSLT processors to stream the result tree directly to its final destination (for example, a serializer) without ever holding the tree in memory. This applies whether or not the processor is streamable, and whether or not source documents are streamed.
The language specification states (see 2.12 Error Handling) that when a transformation terminates with a dynamic error, the state of persistent resources affected by the transformation (for example, serialized result documents) is implementation-defined, so processors are not required to take any special steps to recover such resources to their pre-transformation state; at the same time, there is no guarantee that secondary result documents produced before the failure occurs will be in a usable state.
The situation becomes more complicated when dynamic errors occur while writing to
                  a result tree, and the dynamic error is caught by an
                     xsl:try/xsl:catch instruction. The semantics
                  of these instructions requires that when an error occurring during the evaluation
                  of xsl:try is caught, the result of the xsl:try
                  instruction is the result of the relevant xsl:catch. To achieve
                  this, any output written to the result tree during the execution of
                     xsl:try until the point where the error occurs must
                  effectively be undone. There are two basic strategies for achieving this: either
                  the updates are not committed to persistent storage until the
                     xsl:try instruction is completed, or the updates are written
                  in such a way that they can be rolled back in the event of a failure.
Both these strategies are potentially expensive, and both have an adverse effect
                  on streaming, in that they affect the amount of memory needed to transform large
                  amounts of data. XSLT 3.0 therefore provides an option to relax the requirement to
                  recover result trees when failures occur in the course of evaluating an
                     xsl:try instruction. This option is invoked by specifying
                     rollback-output="no" on the xsl:try
                  instruction.
The default value of the attribute is rollback-output="yes".
The effect of specifying rollback-output="no" on
                     xsl:try is as follows: if a dynamic error occurs in the course
                  of evaluating the xsl:try instruction, and if the failing
                  construct is evaluated in final output state while writing to
                  some result document, then it is implementation-dependent
                  whether an attempt to catch this error using xsl:catch will be
                  successful. If the attempt is successful, then the xsl:try
                  instruction succeeds, delivering the result of evaluating the
                     xsl:catch clause, and the transformation proceeds as normal.
                  If the attempt is unsuccessful (typically, because non-recoverable updates have
                  already been made to the result tree), then the xsl:try
                  instruction as a whole fails with a dynamic error. The state of this result
                  document will then be undefined, but the transformation can ignore the failure and
                  continue to produce other result documents, for example by wrapping the
                     xsl:result-document instruction in an xsl:try
                  instruction that catches the relevant error.
                  [ERR XTDE3530] It is a dynamic error if an xsl:try
                        instruction is unable to recover the state of a final result tree because
                        recovery has been disabled by use of the attribute
                           rollback-output="no".
               
For example, consider the following:
<xsl:result-document href="out.xml"> <xsl:try rollback-output="no"> <xsl:source-document streamable="yes" href="in.xml"> <xsl:copy-of select="."/> </xsl:source-document> <xsl:catch errors="*"> <error code="{ $err:code }" message="{ $err:description }" file="in.xml"/> </xsl:catch> </xsl:try> </xsl:result-document>
The most likely failure to occur here is a failure to read the streamed input file
                     in.xml. In the common case where this failure is detected
                  immediately, for example if the file does not exist or the network connection is
                  down, no output will have been written to the result document, and the attempt to
                  catch the error is likely to be successful. If however a failure is detected after
                  several megabytes of data have been copied to out.xml, for example an
                  XML well-formedness error in the input file, or a network failure that occurs
                  while reading the file, recovery of the output file may be impossible. In this
                  situation the xsl:result-document instruction will fail with a
                  dynamic error. It is possible to catch this error, but the state of the file
                     out.xml will be unpredictable.
Note that adding an xsl:try instruction as a child of
                     xsl:source-document does not help. Any error reading the input file
                  (such as a well-formedness error) is an error in the xsl:source-document
                  instruction and can only be caught at that level.
When rollback-output="no" is specified, it is still possible to
                  ensure recovery of errors happens predictably by evaluating the
                  potentially failing code in temporary output state: typically,
                  within an xsl:variable. In effect the variable acts as an
                  explicit buffer for temporary results, which is only copied to the final output if
                  evaluation succeeds.
Note:
An application might wish to ensure that when a fatal error occurs while
                     reading an input stream, data written to persistent storage up to the point of
                     failure is available after the transformation terminates. Setting
                        rollback-output="no" does not guarantee this, but a processor
                     might choose to interpret this as the intent.
Changing the attribute to rollback-output="yes" makes the stylesheet
                  more robust and able to handle error conditions predictably, but the cost may be
                  substantial; for example it may be necessary to buffer the whole of the result
                  document in memory.
The following example divides an employee’s salary by the number of years they have served, catching the divide-by-zero error if the latter is zero.
<xsl:try select="salary div length-of-service"> <xsl:catch errors="err:FOAR0001" select="()"/> </xsl:try>
The following example generates a result tree and performs schema validation, outputting a warning message and serializing the invalid tree if validation fails.
<xsl:result-document href="out.xml"> <xsl:variable name="result"> <xsl:call-template name="construct-output"/> </xsl:variable> <xsl:try> <xsl:copy-of select="$result" validation="strict"/> <xsl:catch> <xsl:message>Warning: validation of result document failed: Error code: <xsl:value-of select="$err:code"/> Reason: <xsl:value-of select="$err:description"/> </xsl:message> <xsl:sequence select="$result"/> </xsl:catch> </xsl:try> </xsl:result-document>
The reason that the result tree is constructed in a variable in this example is
                     so that the unvalidated tree is available to be used within the
                        xsl:catch element. An alternative approach would be to
                     repeat the logic for constructing the tree:
<xsl:try> <xsl:result-document href="out.xml" validation="strict"> <xsl:call-template name="construct-output"/> </xsl:result-document> <xsl:catch> <xsl:message>Warning: validation of result document failed: Error code: <xsl:value-of select="$err:code"/> Reason: <xsl:value-of select="$err:description"/> </xsl:message> <xsl:call-template name="construct-output"/> </xsl:catch> </xsl:try>
The facilities described in this section are designed to make it easier to generate result trees conditionally depending on what is found in the input, without violating the rules for streamability. Although these facilities were introduced to the language specifically to make streaming easier, they are available whether or not streaming is in use, and users have often found them convenient in non-streaming applications.
The facilities are introduced first by example:
The following example generates an events element if and only if
                  there are one or more event elements. The code could be written like
                  this:
<xsl:if test="exists(event)"> <events> <xsl:copy-of select="event"/> </events> </xsl:if>
However, the above code would not be ,
                  because it processes the child event elements more than once. To make
                  it streamable, it can be rewritten as:
<xsl:where-populated> <events> <xsl:copy-of select="event"/> </events> </xsl:where-populated>
The effect of the xsl:where-populated instruction, as explained
                  later, is to avoid outputting the events element if it would have no
                  children. A streaming implementation will typically hold the start tag of the
                     events element in a buffer, to be sent to the output destination
                  only if and when a child node is generated.
The following example generates an h3 element and a summary paragraph
                  only if a list of items is non-empty. The code could be written like this:
<xsl:if test="exists(item-for-sale)"> <h1>Items for Sale</h1> </xsl:if> <xsl:apply-templates select="item-for-sale"/> <xsl:if test="exists(item-for-sale)"> <p>Total value: {accumulator-before('total-value')}</p> </xsl:if>
However, the above code would not be ,
                  because it processes the child item-for-sale elements more than once.
                  To make it streamable, it can be rewritten as:
<xsl:sequence> <xsl:on-non-empty> <h1>Items for Sale</h1> </xsl:on-non-empty> <xsl:apply-templates select="item-for-sale"/> <xsl:on-non-empty> <p>Total value: {accumulator-before('total-value')}</p> </xsl:on-non-empty> </xsl:sequence>
The effect of the xsl:on-non-empty instruction, as explained
                  later, is to output the enclosed content only if the containing sequence
                  constructor also generates “ordinary” content, that is, if there is content
                  generated by instructions other than xsl:on-empty and
                     xsl:on-non-empty instructions.
The following example generates a summary paragraph only if a list of items is empty. The code could be written like this:
<xsl:apply-templates select="item-for-sale"/> <xsl:if test="empty(item-for-sale)"> <p>There are no items for sale.</p> </xsl:if>
However, the above code would not be ,
                  because it processes the child item-for-sale elements more than once
                  (the fact that the list is empty is irrelevant, because streamability is
                  determined statically). To make the code streamable, it can be rewritten as:
<xsl:sequence> <xsl:apply-templates select="item-for-sale"/> <xsl:on-empty> <p>There are no items for sale.</p> </xsl:on-empty> </xsl:sequence>
The effect of the xsl:on-empty instruction, as explained later,
                  is to output the enclosed content only if the containing sequence constructor
                  generates no “ordinary” content, that is, if there is no content generated by
                  instructions other than xsl:on-empty and
                     xsl:on-non-empty instructions.
For further examples showing the use of these instructions when streaming, see 7 Handling Empty InputSG.
xsl:where-populated instruction<!-- Category: instruction -->
<xsl:where-populated>
  <!-- Content: sequence-constructor -->
</xsl:where-populated>
The xsl:where-populated instruction encloses a sequence constructor. The result of the instruction is established
                  as follows:
The sequence constructor is evaluated in the usual way (taking into account
                        any xsl:on-empty and xsl:on-non-empty
                        instructions) to produce a result $R.
The result of the instruction is the value of the expression
                           $R[not(deemed-empty(.))] where the function
                           deemed-empty($item as item()) returns true if and only if
                           $item is one of the following:
A document or element node that has no children.
Note:
If an element has attributes or namespaces, these do not prevent the element being deemed empty.
If a document or element node has children, the node is not deemed
                                 empty, even if the children are empty. For example, a document node
                                 created using an xsl:variable instruction in the
                                 form
                                    <xsl:variable name="temp"><a/></xsl:variable>
                                 is not deemed empty, even though the contained <a/>
                                 element is empty.
A node, other than a document or element node, whose string value is zero-length.
Note:
A whitespace-only text node is not deemed empty.
An atomic item such that the result of casting the atomic item to a string is zero-length.
Note:
This can happen only when the atomic item is of type
                                    xs:string, xs:anyURI,
                                    xs:untypedAtomic, xs:hexBinary, or
                                    xs:base64Binary.
A map whose size (number of key/value pairs) is zero.
An array (see 22 Arrays) where the result 
                              of flattening the array using the array:flatten function is 
                              either an empty sequence, or a sequence in which every item is deemed empty 
                              (applying these rules recursively).
The following example generates an HTML unnumbered list, if and only if the
                     list is non-empty. Note that the presence of the class attribute
                     does not make the list non-empty. The code is written to be streamable.
<xsl:where-populated expand-text="yes"> <ul class="my-list"> <xsl:for-each select="source-item"> <li>{.}</li> </xsl:for-each> </ul> </xsl:where-populated>
xsl:on-empty instruction<!-- Category: instruction -->
<xsl:on-empty
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:on-empty>
The xsl:on-empty instruction has the same content model as
                     xsl:sequence, and when it is evaluated, the same rules apply.
                  In particular, the select attribute and the contained sequence
                  constructor are mutually exclusive [see ERR XTSE3185].
When an xsl:on-empty instruction
                  appears in a sequence constructor, then:
It must be the only xsl:on-empty instruction in the
                        sequence constructor, and
It must not be followed in the sequence constructor by any other instruction, other than xsl:fallback, or by a
                        significant text node (that is, a text node that has not been discarded
                        under the provisions of 3.13.1 Stripping Whitespace and Commentary from the Stylesheet), or by a
                           literal result element. It may, however, be followed
                        by non-instructions such as xsl:catch where
                        appropriate.
[Definition: An item is vacuous if
               it is one of the following: a zero-length text node; a document node with no children; an atomic item which, 
               on casting to xs:string, produces a zero-length string; or  an array 
                  which on flattening using the array:flatten function produces either an empty sequence 
                  or a sequence consisting entirely of vacuous items.]
An xsl:on-empty instruction is triggered only if every 
                  preceding sibling instruction, text node, and literal result element in the same sequence constructor 
                  returns either an empty sequence, or a sequence consisting entirely of vacuous items.
               
If an xsl:on-empty instruction is triggered, then the result 
                  of the containing sequence constructor is the result of the xsl:on-empty instruction.
               
Note:
This means that the (vacuous) results produced by other instructions in the sequence constructor are discarded. This is relevant mainly when the result of the sequence constructor is used for something other than constructing a node: for example if it forms the result of a function, or the value of a variable, and the function or variable specifies a required type.
When streaming, it may be necessary to buffer vacuous items in the result sequence until it is known whether the result will contain items that are non-vacuous. In many common situations, however — in particular, when the sequence constructor is being used to create the content of a node — vacuous items can be discarded immediately because they do not affect the content of the node being constructed.
Note:
In nearly all cases, the rules for xsl:on-empty are aligned 
                  with the rules for constructing complex content. If the sequence constructor within a literal result element 
                  or an xsl:element instruction includes an xsl:on-empty instruction, 
                  then the content of the element will be the value delivered by the xsl:on-empty instruction 
                  if and only if the content would otherwise be empty.
There is one minor exception to this rule: if the sequence constructor delivers multiple zero-length strings, 
                     then in the absence of the xsl:on-empty instruction the new element would contain whitespace, 
                     made up of the separators between these zero-length strings; but xsl:on-empty takes no account 
                     of these separators.
Note:
Attribute and namespace nodes created by the sequence constructor 
                  are significant; the xsl:on-empty instruction will not be triggered if such nodes are present. 
                  If this is not the desired effect, it is possible to partition the sequence constructor to change the scope of 
                  xsl:on-empty, for example:
<ol> <xsl:attribute name="class" select="numbered-list"/> <xsl:sequence> <xsl:value-of select="xyz"/> <xsl:on-empty select="'The list is empty'"/> </xsl:sequence> </ol>
Note:
Where the sequence constructor is a child of an instruction with
               an [xsl:]use-attribute-sets attribute, any attribute nodes created by expanding the referenced
               attribute set(s) are not part of the result of the sequence constructor and therefore play no role in determining
               whether an xsl:on-empty or xsl:on-non-empty instruction is triggered. 
                  Equally, when the sequence constructor is a child
               of a literal result element, attribute nodes generated by expanding the attributes
               of the literal result element are not taken into account.
Note:
If xsl:on-empty is the only instruction in a sequence
                     constructor then it is always evaluated.
If xsl:on-empty and xsl:on-non-empty appear
                     in the same sequence constructor, then the rules ensure that only one of them
                     will be evaluated.
xsl:on-non-empty instruction<!-- Category: instruction -->
<xsl:on-non-empty
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:on-non-empty>
The xsl:on-non-empty instruction has the same content model as
                     xsl:sequence, and when it is evaluated, the same rules apply.
                  In particular, the select attribute and the contained sequence
                  constructor are mutually exclusive [see ERR XTSE3185].
An xsl:on-non-empty instruction is evaluated only 
                  if there is at least one sibling node in the same sequence constructor, 
                  excluding xsl:on-empty and xsl:on-non-empty instructions, 
                  whose evaluation yields a sequence containing an item that is not vacuous. 
                  If this condition applies, then all xsl:on-non-empty instructions in the 
                  containing sequence constructor are evaluated, and their results are included in the result 
                  of the containing sequence constructor in their proper positions.
               
Note:
The xsl:on-non-empty instruction is typically used to generate headers or 
                     footers appearing before or after a list of items, where the header or footer is to be 
                     omitted if there are no items in the list.
              
Note:
Unlike xsl:on-empty, the xsl:on-non-empty
                     instruction can appear anywhere in a sequence constructor, and can appear more
                     than once.
            [Definition: The two
               elements xsl:variable and xsl:param are referred to
               as variable-binding elements.]
            [Definition: The xsl:variable element
               declares a variable, which may be a global variable or a local
                  variable.]
         
            [Definition: The xsl:param element
               declares a parameter, which may be a stylesheet parameter, a template parameter, a function parameter, or an xsl:iterate parameter. A parameter is a
                  variable with the additional property that
               its value can be set by the caller.]
         
[Definition: A variable is a binding between a name and a value. The value of a variable is any sequence (of nodes, atomic items, and/or function items), as defined in [XDM 4.0].]
<!-- Category: declaration -->
<!-- Category: instruction -->
<xsl:variable
  name = eqname
  select? = expression
  as? = sequence-type
  static? = boolean〔'no'〕
  visibility? = "public" | "private" | "final" | "abstract" >
  <!-- Content: sequence-constructor -->
</xsl:variable>
The xsl:variable element has a required
               name attribute, which specifies the name of the variable. The value of
               the name attribute is an EQName, which is expanded as described in
                  5.1.1 Qualified Names.
The xsl:variable element has an optional as attribute,
               which specifies the required type of the
               variable. The value of the as attribute is a 
               SequenceType.
               [Definition: The value of the variable is
                  computed using the expression given in the
                     select attribute or the contained sequence constructor, as described in
                     9.3 Values of Variables and Parameters. This value is referred to as the
                     supplied value of the variable.] If the
                  xsl:variable element has a select attribute, then
               the sequence constructor must be empty.
If the as attribute is specified, then the supplied value of the variable is converted to
               the required type, using the coercion rules.
[ERR XTTE0570] It is a type error if the supplied value of a variable cannot be converted to the required type.
If the as attribute is omitted, the supplied value of the variable is used directly, and no conversion
               takes place.
For the effect of the static attribute, see 9.6 Static Variables and Parameters.
The visibility attribute must not
               be specified for a local variable: that is, it is allowed only when the parent
               element is xsl:stylesheet, xsl:transform, 
               xsl:package or
                  xsl:override.
If the visibility attribute is present with the value
                  abstract then the select attribute
                  must be absent and the contained sequence constructor
               must be empty. In this situation there is no supplied value, and therefore the constraint
               that the supplied value is consistent with the required type does not apply.
<!-- Category: declaration -->
<xsl:param
  name = eqname
  select? = expression
  as? = sequence-type
  required? = boolean
  tunnel? = boolean〔'no'〕
  static? = boolean〔'no'〕 >
  <!-- Content: sequence-constructor -->
</xsl:param>
The xsl:param element may be used:
As a child of xsl:stylesheet
                     or xsl:package, to
                     define a parameter to the transformation. Stylesheet parameters are set by the
                     calling application: see 2.3.2 Priming a Stylesheet. 
As a child of xsl:template to define a parameter to a
                     template, which may be supplied when the template is invoked using
                        xsl:call-template, xsl:apply-templates,
                        xsl:apply-imports or xsl:next-match.
                        Template parameters are set
                     by means of an xsl:with-param child element of the invoking
                     instruction, as described in 9.10 Setting Parameter Values.
As a child of xsl:function to define a parameter to a
                     stylesheet function, which may be supplied when the function is called from an
                     XPath expression. 
                     Function parameters are set
                     either positionally or by keyword
                     by means of the argument list in an XPath function call. 
As a child of xsl:iterate to define a parameter that can vary
                     from one iteration to the next. Iteration parameters always take their default
                     values for the first iteration, and in subsequent iterations are set using an
                        xsl:with-param child of the
                        xsl:next-iteration instruction.
The attributes applicable to xsl:param
               depend on its parent element in the stylesheet, as defined by the following
               table:
| Parent Element | name | select | as | required | tunnel | static | 
|---|---|---|---|---|---|---|
| xsl:package | mandatory | optional | optional | yes|no | no | yes|no | 
| xsl:stylesheet | mandatory | optional | optional | yes|no | no | yes|no | 
| xsl:template | mandatory | optional | optional | yes|no | yes|no | no | 
| xsl:function | mandatory | optional | optional | yes|no | no | no | 
| xsl:iterate | mandatory | mandatory | optional | no | no | no | 
In the table, the entries for the name,
                  select, and as attributes indicate whether the attribute
               must appear, is optional, or must be absent; the entries for the
                  required, tunnel, and static attributes
               indicate the values that are permitted if the attribute is present, with the default
               value shown in bold. (The value yes can also be written
                  true or 1, while no can also be written
                  false or 0.)
The name attribute is mandatory: it specifies the name of the parameter.
               The value of the name attribute is an EQName, which is expanded as described in
                  5.1.1 Qualified Names.
               [ERR XTSE0580] It is a static error if the values of
                     the name attribute of two sibling
                           xsl:param elements represent the same expanded QName.
            
If the xsl:param element has a select attribute, then
               the sequence constructor must be empty.
The static attribute can take the value yes only on stylesheet parameters, and is explained in
                  9.5 Global Variables and Parameters.
Note:
Local variables may shadow template parameters and function parameters: see 9.9 Scope of Variables.
The optional tunnel attribute may be used to indicate that a parameter
               is a tunnel parameter. The default is
                  no; the value yes may be specified only for template parameters. Tunnel parameters are
               described in 10.1.6 Tunnel Parameters
            
The xsl:param element has an optional as attribute,
                  which specifies the required type of the parameter. The value
                  of the as attribute is a 
                  SequenceType. 
                  If the as attribute is omitted, then the
                  required type is item()*.
The supplied value of the parameter is the value supplied by the caller. If no value was supplied by the caller, and if the parameter is not mandatory, then the default value is used as the supplied value as described in 9.2.2 Default Values of Parameters.
The supplied value of the parameter is converted to the required type using the coercion rules.
[ERR XTTE0590] It is a type error if the conversion of the supplied value of a parameter, or of the context item, does not match the required type, after applying any permitted conversions.
For example, the following declares a parameter that requires the supplied
               value (after atomization) to be either a QName, or the string "*", 
                  or an empty sequence:
<xsl:param name="n" as="(xs:QName | enum('*'))?"/>
Parameters on functions
                     declared using xsl:function can now be defined as optional,
                     with a default value supplied.  [Issue 155 PR 159 30 September 2022]
The optional required attribute of
                     xsl:param may be used to indicate whether a stylesheet parameter, 
                  template parameter, or function parameter is
                  mandatory or optional. The only value  permitted for
                  a parameter to xsl:iterate is no (these are always
                  initialized to a default value).
The default value for a function parameter is required="yes"; in all
               other cases it is required="no".
[Definition: A parameter is
                        explicitly mandatory if it is a 
                  function parameter 
                  with no required attribute, or if the
                        required attribute is present and has the value
                        yes.] If a parameter is explicitly mandatory, then the
                     xsl:param element must be empty and
                     must not have a select attribute.
The static context for evaluating the default value depends on where the
               relevant expression appears in the stylesheet, in the usual way. Note however that
               for xsl:param elements defining function parameters,
                  the static context does not include variables bound in preceding-sibling xsl:param elements.
The dynamic context is different for different kinds of parameter:
For stylesheet parameters, the context is the same as the context for evaluating global variables.
For template parameters, the 
                     context is that of the called template. This means that the evaluation of the
                  default has access to the other parameters supplied in the call, provided they are declared
                  earlier. It also means, for example, that if the evaluation of the default value invokes
                  xsl:next-match, the current template rule is the called
                  template rather than the calling template.
For function parameters, the dynamic
                     context for evaluating defaults is the dynamic context of the caller, except that no
                     local variables are in scope. This means that it is possible to declare a parameter
                     with <xsl:param name="dot" required="no" select="."/> to take its
                     default value from the context item of the caller.
                     
              
If a parameter is not explicitly mandatory, then it may have a
                  default value. The default value is obtained by evaluating the expression given in the select
                  attribute or the contained sequence
                     constructor, as described in 9.3 Values of Variables and Parameters.
Note:
This specification does not dictate whether and when the default value of a
                     parameter is evaluated. For example, if the default is specified as
                        <xsl:param name="p"><foo/></xsl:param>, then
                     it is not specified whether a distinct foo element node will be
                     created on each invocation of the template, or whether the same
                        foo element node will be used for each invocation. However, it
                     is permissible for the default value to depend on the values of other
                     parameters, or on the evaluation context, in which case the default must
                     effectively be evaluated on each invocation.
[Definition: An explicit
                        default for a parameter is indicated by the presence of either a
                        select attribute or a non-empty sequence
                  constructor.]
[Definition: If a parameter that is
                     not explicitly mandatory has no explicit default value, then it has an implicit
                        default value, which is the empty sequence if there is an
                        as attribute, or a zero-length string if not.]
[Definition: If a parameter
                     has an implicit default value which cannot be converted to
                     the required type (that is, if it has an as
                     attribute which does not permit the empty sequence), then the parameter is
                        implicitly mandatory.]
Note:
The effect of these rules is that specifying <xsl:param name="p"
                        as="xs:date" select="2"/> is an error, but if the default value of
                     the parameter is never used, then the processor has discretion whether or not
                     to raise the error. By contrast, <xsl:param name="p"
                        as="xs:date"/> is treated as if required="yes" had
                     been specified: the empty sequence is not a valid instance of
                        xs:date, so in effect there is no default value and the
                     parameter is therefore treated as being mandatory.
Various errors can arise with regard to mandatory parameters when no value is
                  supplied. In the rules below, non-tunnel means: not having a
                     tunnel attribute with the value yes.
                        [ERR XTSE3520] It is a static error if a parameter to xsl:iterate is
                                 implicitly mandatory.
                     
                        [ERR XTSE0690] It is a static error if a
                                 package contains both (a) a
                              named template named T that is not overridden by another
                              named template of higher import precedence and that has an explicitly mandatory non-tunnel parameter named
                                 P, and (b) an xsl:call-template
                              instruction whose name attribute equals T and
                              that has no non-tunnel xsl:with-param child element
                              whose name attribute equals P. (All names are
                              compared as QNames.)
                     
[ERR XTDE0700] It is a dynamic error if a template that has an explicitly mandatory or implicitly mandatory parameter is invoked without supplying a value for that parameter.
This includes the following cases:
The template is invoked using xsl:apply-templates,
                                 xsl:apply-imports, or
                                 xsl:next-match and there is no
                                 xsl:with-param child whose name and
                                 tunnel attributes match the corresponding attributes
                              of the mandatory parameter.
The mandatory parameter is a tunnel parameter, and the template is
                              invoked using xsl:call-template, and there is no
                                 xsl:with-param child whose name and
                                 tunnel attributes match the corresponding attributes
                              of the mandatory parameter.
The template is invoked as the entry point to the transformation, either by invoking an initial mode (2.3.3 Apply-Templates Invocation) or by invoking an initial template (2.3.4 Call-Template Invocation) and no value is supplied for the mandatory parameter by the calling application.
                  A variable-binding with no as or select attribute no longer
                  attempts to create an implicit document node if the sequence constructor contains
                  an xsl:map, xsl:array, or xsl:select
                  child instruction.
                 [Issue 2009 PR 2015 20 May 2025]
A variable-binding element may specify the supplied value of a variable or the default value of a parameter in four different ways.
If the variable-binding
                        element has a select attribute, then the value of the
                     attribute must be an expression and the supplied
                        value of the variable is the value that results from evaluating
                     the expression. In this case, the content of the variable-binding element
                        must be empty.
If the variable-binding
                        element has empty content and has neither a select
                     attribute nor an as attribute, then the supplied value of the variable is a
                     zero-length string. Thus
<xsl:variable name="x"/>
is equivalent to
<xsl:variable name="x" select="''"/>
If a variable-binding element satisfies all the following conditions:
The element has no select attribute
The element has no as attribute
The element has non-empty content (that is, the variable-binding element has one or more child nodes)
There is no xsl:map, xsl:array,
                           or xsl:select element among the element's children
then the content of the variable-binding element specifies the supplied value. The content of the variable-binding element is a sequence constructor; a new document is constructed with a document node having as its children the sequence of nodes that results from evaluating the sequence constructor and then applying the rules given in 5.7.1 Constructing Complex Content. The value of the variable is then a singleton sequence containing this document node. For further information, see 9.4 Creating Implicit Document Nodes.
Otherwise, the supplied value is the sequence that results from evaluating the (possibly empty) sequence constructor contained within the variable-binding element (see 5.7 Sequence Constructors).
These combinations are summarized in the table below.
| select attribute | as attribute | content | Effect | 
|---|---|---|---|
| present | absent | empty | Value is obtained by evaluating the selectattribute | 
| present | present | empty | Value is obtained by evaluating the selectattribute, coerced to the type required by theasattribute | 
| present | absent | present | Static error | 
| present | present | present | Static error | 
| absent | absent | empty | Value is a zero-length string | 
| absent | present | empty | Value is an empty sequence, provided the asattribute permits an empty sequence | 
| absent | absent | includes xsl:map,xsl:array,
                           orxsl:select | Value is obtained by evaluating the sequence constructor | 
| absent | absent | present and does not include xsl:map,xsl:array,
                           orxsl:select | Value is a document node whose content is obtained by evaluating the sequence constructor | 
| absent | present | present | Value is obtained by evaluating the sequence constructor,
                           coerced to the type required by the asattribute | 
               [ERR XTSE0620] It is a static error 
                     if a variable-binding element has a
                        select attribute and has non-empty content.
            
The value of the following variable is the sequence of integers (1, 2, 3):
<xsl:variable name="i" as="xs:integer*" select="1 to 3"/>
The value of the following variable is an integer, assuming that the attribute
                     @size exists, and is annotated either as an integer, or as
                     xs:untypedAtomic:
<xsl:variable name="i" as="xs:integer" select="@size"/>
The value of the following variable is a zero-length string:
<xsl:variable name="z"/>
The value of the following variable is a document node containing an empty element as a child:
<xsl:variable name="doc"><c/></xsl:variable>
The value of the following variable is a sequence of integers (2, 4, 6):
<xsl:variable name="seq" as="xs:integer*"> <xsl:for-each select="1 to 3"> <xsl:sequence select=".*2"/> </xsl:for-each> </xsl:variable>
The value of the following variable is a sequence of parentless attribute nodes:
<xsl:variable name="attset" as="attribute()+"> <xsl:attribute name="x">2</xsl:attribute> <xsl:attribute name="y">3</xsl:attribute> <xsl:attribute name="z">4</xsl:attribute> </xsl:variable>
The value of the following variable is an empty sequence:
<xsl:variable name="empty" as="empty-sequence()"/>
The actual value of the variable depends on the supplied value, as described above, and the required type, which is
               determined by the value of the as attribute.
When a variable is used to select nodes by position, be careful not to do:
<xsl:variable name="n">2</xsl:variable> ... <xsl:value-of select="td[$n]"/>
This will output the values of all the td elements, space-separated
                  (or with XSLT 1.0
                        behavior, the value of the first td
                  element), because the variable n will be bound to a node, not a
                  number. Instead, do one of the following:
<xsl:variable name="n" select="2"/> ... <xsl:value-of select="td[$n]"/>
or
<xsl:variable name="n">2</xsl:variable> ... <xsl:value-of select="td[position()=$n]"/>
or
<xsl:variable name="n" as="xs:integer">2</xsl:variable> ... <xsl:value-of select="td[$n]"/>
A document node is created implicitly when evaluating an
                  xsl:variable, xsl:param, or
                  xsl:with-param element that has non-empty content and that has no
                  as attribute. The value of the variable is this newly constructed
                  document node.
                The content of the
               document node is formed from the result of evaluating the sequence constructor contained within the
               variable-binding element, as described in 5.7.1 Constructing Complex Content. 
Note:
The construct:
<xsl:variable name="tree"> <a/> </xsl:variable>
can be regarded as a shorthand for:
<xsl:variable name="tree" as="document-node()"> <xsl:document validation="preserve"> <a/> </xsl:document> </xsl:variable>
The base URI of the document node is taken from the base URI of the variable binding element in the stylesheet. (See [XDM 4.0] section 7.6.2 base-uri Accessor)
No document-level validation takes place (which means, for example, that there is no checking that ID values are unique). However, type annotations on nodes within the new tree are copied unchanged.
Note:
The base URI of other nodes in the tree is determined by the rules for
                  constructing complex content (see 5.7.1 Constructing Complex Content).
                  The effect of these rules is that the base URI of a node in the temporary tree is
                  determined as if all the nodes in the temporary tree came from a single entity
                  whose URI was the base URI of the variable-binding element. Thus, the base URI of the document node
                  will be equal to the base URI of the variable-binding element, while an
                     xml:base attribute within the temporary tree will change the base
                  URI for its parent element and that element’s descendants, just as it would
                  within a document constructed by parsing.
The document-uri and unparsed-entities properties of the
               new document node are set to empty.
A temporary tree is available for
               processing in exactly the same way as any source document. For example, its nodes are
               accessible using path expressions, and they can be processed using instructions such
               as xsl:apply-templates and xsl:for-each. Also, the
                  key and id functions can be used to
               find nodes within a temporary tree,  by supplying the
                  document node at the root of the tree as an argument to the function or by making
                  it the context node.
The following stylesheet uses a temporary tree as the intermediate
                  result of a two-phase transformation, using different modes for the two phases (see 6.7 Modes). Typically,
                  the template rules in module phase1.xsl will be declared with
                     mode="phase1", while those in module phase2.xsl will
                  be declared with mode="phase2": 
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:import href="phase1.xsl"/> <xsl:import href="phase2.xsl"/> <xsl:variable name="intermediate"> <xsl:apply-templates select="/" mode="phase1"/> </xsl:variable> <xsl:template match="/"> <xsl:apply-templates select="$intermediate" mode="phase2"/> </xsl:template> </xsl:stylesheet>
Note:
The algorithm for matching nodes against template rules is exactly the same regardless which tree the nodes come from. If different template rules are to be used when processing different trees, then unless nodes from different trees can be distinguished by means of patterns, it is a good idea to use modes to ensure that each tree is processed using the appropriate set of template rules.
It is no longer an intrinsic error for a global variable to refer to itself; this is now permitted, for example in cases where the value of the global variable is a recursive inline function. Cases where self-reference would not make sense are covered by the existing rules on circularities: see 9.11 Circular Definitions. [Issue 1540 ]
Both xsl:variable and xsl:param are allowed as
                  declaration elements: that is, they may
               appear as children of the xsl:package or
               xsl:stylesheet element.
[Definition: A top-level variable-binding element declares a global variable that is visible everywhere except within any region where it is shadowed by another variable binding.]
               [Definition: A top-level
                     xsl:param element declares a stylesheet
                  parameter. A stylesheet parameter is a global variable with the additional
                  property that its value can be supplied by the caller when a transformation is
                  initiated.] As described in 9.2 Parameters, a stylesheet
               parameter may be declared as being mandatory, or may have a default value specified
               for use when no value is supplied by the caller. The mechanism by which the caller
               supplies a value for a stylesheet parameter is implementation-defined. An XSLT processor
               must provide such a mechanism.
It is an error if no value is supplied for a mandatory stylesheet parameter [see ERR XTDE0050].
If a stylesheet contains more than one binding for a global variable of a particular name, then the binding with the highest import precedence is used.
[ERR XTSE0630] It is a static error if a package contains more than one non-hidden binding of a global variable with the same name and same import precedence, unless it also contains another binding with the same name and higher import precedence.
For a global variable or the default value of a stylesheet parameter, the expression or sequence constructor specifying the variable value is evaluated with a singleton focus as follows:
If the declaration appears within the top-level package
                     (including within an xsl:override element in the top-level
                     package), then the focus is based on the global context item if supplied, or absent otherwise.
If the declaration appears within a library package, then the focus is absent.
An XPath error will be raised if the evaluation of a global variable or parameter references the context item, context position, or context size when the focus is absent. The values of other components of the dynamic context are the initial values as defined in 5.3.3 Initializing the Dynamic Context and 5.3.4 Additional Dynamic Context Components used by XSLT.
The visibility of a stylesheet parameter is always (implicitly) private if the
               parameter is static, or public if the parameter is
               non-static.
Note:
This rule has the effect that after combining all the packages making up a stylesheet, the non-static stylesheet parameters whose values are required necessarily have distinct names, which simplifies the design of APIs.
For the effect of the static attribute, see 9.6 Static Variables and Parameters.
The visibility attribute must
                  not be specified for a local variable: that is, it is allowed only when
               the parent element is xsl:package, xsl:stylesheet,
                  xsl:transform, or xsl:override.
If the visibility attribute is present with the value
                  abstract then the select attribute
                  must be absent and the contained sequence constructor
               must be empty. In this situation there is no supplied value, and therefore the constraint
               that the supplied value is consistent with the required type does not apply.
The following example declares a global parameter para-font-size,
                  which is referenced in an attribute
                     value template.
<xsl:param name="para-font-size" as="xs:string">12pt</xsl:param> <xsl:template match="para"> <fo:block font-size="{ $para-font-size }"> <xsl:apply-templates/> </fo:block> </xsl:template>
The implementation must provide a mechanism allowing the user to supply a value
                  for the parameter para-font-size when invoking the stylesheet; the
                  value 12pt acts as a default.
Note:
In XSLT 4.0, a global variable is in scope within its own definition. Trivial
               self-references such as <xsl:variable name="x" select="$x+1"/> are
               prevented by the general rules on circularities: see 9.11 Circular Definitions.
               However, there are other cases where self-reference makes perfect sense. The obvious
               example is where the value of the variable is a recursive inline function, such as:
<xsl:variable name="max-depth" select="fn($node as node()) { if (has-children($node)) then 1 + max($node/* ! $max-depth(.)) else 0}"/>
Static variables and parameters are global variables and can be used in the same way
               as other global variables. In addition, they can be used in
                  [xsl:]use-when expressions and in shadow attributes.
               [Definition: A top-level
                  variable-binding element
                  having the attribute static="yes" declares a static
                     variable: that is, a global variable whose value is
                  known during static analysis of the stylesheet.]
            
               [Definition: A static variable declared using an xsl:param element
                  is referred to as a static parameter.]
            
The static attribute must not
               take the value yes on an
                  xsl:variable or xsl:param element unless it is a
                  top-level element.
When the static attribute is present with the value
                  yes, the visibility attribute must
                  not have a value other than private.
Note:
This rule prevents static variables being overridden in another package. Since the
                  values of such variables may be used at compile time (for example, during
                  processing of [xsl:]use-when expressions), the rule is necessary to
                  ensure that packages can be independently compiled.
It is possible to make the value of a static variable or parameter available in a using package by binding a non-static public variable to its value, for example:
<xsl:param name="DEBUG" static="yes" select="true()"/> <xsl:variable name="tracing" static="no" visibility="public" select="$DEBUG"/>
When the attribute static="yes" is specified, the
                  xsl:variable or xsl:param element
                  must have empty content. In the case of
                  xsl:variable the select attribute must be present to
               define the value of the variable [see ERR XTSE0010].
If the select attribute is present, then it is evaluated using the rules
               for static expressions.
The rules for the scope of static variables, and the
               handling of duplicate declarations, are similar to the rules for non-static
               variables, but with additional constraints designed to disallow forwards references.
               The reason for disallowing forwards references is to ensure that
                  use-when attributes can always be evaluated as early as possible, and
               in particular to ensure that the value of a use-when attribute never has
               circular dependencies. The additional constraints are as follows:
The static context for evaluation of a static expression
                     only contains those static
                        variables visible within the containing package whose declarations
                     occur prior to the element containing the static expression in stylesheet tree
                     order. Stylesheet tree order is the order that results when all
                        xsl:import and xsl:include declarations
                     are replaced by the declarations in the imported or included stylesheet module.
                     A static variable is not in scope within its own declaration.
If two static variables declared within the same package have the same name,
                     the one that has higher import precedence is used (it is a
                     consequence of rules defined elsewhere that there cannot be more than one
                     declaration with highest import precedence). However, if the declaration with
                     higher import precedence occurs after the one with lower import precedence in
                     stylesheet tree order, then the two declarations must be consistent. For this
                     purpose two declarations are consistent if (a) they are either both
                        xsl:variable elements, or both xsl:param
                     elements, and (b) if the variables are initialized (that is, if the elements
                     are xsl:variable elements, or if they are
                        xsl:param elements and no value for the parameter is
                     externally supplied) then the values of both variables must be identicalFO, and must not contain
                     function items.
Note:
This rule ensures that when a static variable reference is encountered, the value of the most recently declared static variable with that name can be used, knowing that this value cannot be overridden by a subsequent declaration having higher import precedence.
[ERR XTSE3450] It is a static error if a
                           variable declared with static="yes" is inconsistent with
                           another static variable of the same name that is declared earlier in
                           stylesheet tree order and that has lower import precedence.
Note:
It is not an error to have two global variables or parameters with the same name, one static and one non-static, provided that they have different import precedence. If the static variable has higher precedence, then it will be used as the selected binding for all global variable references with this name, whether or not they appear in static expressions. If the non-static variable has higher precedence, then the static variable will be used as the selected binding for variable references appearing in static expressions, while the non-static variable will be used for variable references in non-static expressions. The two variables may have different values. In the case of global parameters, however, a transformation API may restrict them to have the same value.
If the two variable declarations have the same import precedence, and there is no declaration with higher import precedence, then error condition [see ERR XTSE0630] applies.
[Definition: A static expression is an XPath expression whose value must be computed during static analysis of the stylesheet.]
Static expressions appear in a number of contexts, in particular:
In [xsl:]use-when attributes (see 3.13.3 Conditional Element Inclusion);
In the select attribute of static variable
                     declarations (xsl:variable or xsl:param with
                        static="yes");
In shadow attributes (see 3.13.4 Shadow Attributes).
There are no syntactic constraints on the XPath expression that can be used as a static expression. However, there are severe constraints on the information provided in its evaluation context. These constraints are designed to ensure that the expression can be evaluated at the earliest possible stage of stylesheet processing, without any dependency on information contained in the stylesheet itself or in any source document.
Specifically, the components of the static and dynamic context are defined by the following two tables:
| Component | Value | 
|---|---|
| XPath 1.0 compatibility mode | false | 
| Statically known namespaces | the applicable static namespaces for the containing element in the stylesheet | 
| Default namespace for elements and types | determined by the xpath-default-namespaceattribute if present
                           (see 5.1.2 Unprefixed Lexical QNames in Expressions and Patterns); otherwise absent | 
| Default function namespace | the standard function namespace. | 
| In-scope schema types | The type definitions that would be available in the absence of any xsl:import-schemadeclaration | 
| In-scope element declarations | None | 
| In-scope attribute declarations | None | 
| In-scope variables | The static
                              variables visible within the containing package whose
                           declarations occur prior to the element containing the static expression in
                           stylesheet tree order. Stylesheet tree order is the order that results when
                           all xsl:importandxsl:includedeclarations are replaced by the declarations in the imported or included
                           stylesheet module. A static variable is not in scope within its own
                           declaration, and it is in scope only within its
                           declaring package, not in any using packages. If two static
                           variables satisfying this rule have the same name and are both in scope, the
                           one that appears most recently in stylesheet tree order is used; as a
                           consequence of rules defined elsewhere this will always be consistent with
                           the declaration having highest import precedence. | 
| Context item static type | Absent | 
| In-scope named item types | None | 
| Statically known function definitions | The functions defined in [Functions and Operators 4.0] in the fnmath,map, andarraynamespaces, together with:
 function-availablewill returnfalsein
                           respect of such functions, andfunction-lookupwill
                           fail to find them. The effect of this rule is to ensure thatfunction-availablereturnstruein respect of
                           functions that can be called within the static expression. It also has the
                           effect that these extension functions will be recognized within the static
                           expression itself; however, the fact that a function is available in this
                           sense gives no guarantee that a call on the function will succeed. | 
| Statically known collations | Implementation-defined | 
| Default collation | The Unicode Codepoint Collation | 
| Static Base URI | The base URI of the containing element in the stylesheet document (see [XDM 4.0] section 7.6.2 base-uri Accessor) | 
| Statically known documents | Implementation-defined | 
| Statically known collections | Implementation-defined | 
| Statically known default collection type | Implementation-defined | 
| Statically known decimal formats | A single unnamed decimal format
                           equivalent to the decimal format that is created by an xsl:decimal-formatdeclaration with no attributes. | 
| Component | Value | 
|---|---|
| Context item, position, and size | Absent | 
| Variable values | A value for every variable present in the in-scope variables. For static parameters where an external value is supplied: the externally supplied value of the parameter. In all other cases: the value of the variable as defined in 9.3 Values of Variables and Parameters. | 
| Dynamically known function definitions | The same as the statically known function definitions | 
| Current dateTime | Implementation-defined | 
| Implicit timezone | Implementation-defined | 
| Executable Base URI | The same as the Static Base URI | 
| Default collation | The Unicode Codepoint Collation | 
| Default language | Implementation-defined | 
| Default calendar | Implementation-defined | 
| Default place | Implementation-defined | 
| Available documents | Implementation-defined | 
| Available text resources | Implementation-defined | 
| Available collections | Implementation-defined | 
| Default collection | Implementation-defined | 
| Available URI collections | Implementation-defined | 
| Default URI collection | Implementation-defined | 
| Environment variables | Implementation-defined | 
Within a stylesheet module, all static
               expressions are evaluated in a single execution scopeFO. This need not be the same execution scope as that
               used for static expressions in other stylesheet modules, or as that used when
               evaluating XPath expressions appearing elsewhere in the stylesheet module. This means
               that a function such as current-date will return the same
               result when called in different [xsl:]use-when expressions within the
               same stylesheet module, but will not necessarily return the same result as the same
               call in an [xsl:]use-when expression within a different stylesheet
               module, or as a call on the same function executed during the transformation
               proper.
If a static error is present in a static expression, it is treated in the same way as any other static error in the stylesheet module. If a dynamic error occurs during evaluation of a static expression, it is treated as a static error in the analysis of the stylesheet, while retaining its original error code.
               [Definition: As well as being allowed as a
                     declaration, the
                     xsl:variable element is also allowed in sequence constructors. Such a variable
                  is known as a local variable.]
            
An xsl:param element may also be used to create a variable binding
               with local scope:
                     [Definition:  An
                           xsl:param element may appear as a child of an
                           xsl:template element, before any
                           non-xsl:param children of that element. Such a parameter
                        is known as a template parameter. A template parameter is a
                           local variable with the
                        additional property that its value can be set when the template is called,
                        using any of the instructions xsl:call-template,
                           xsl:apply-templates, xsl:apply-imports,
                        or xsl:next-match.]
                  
                     [Definition:  An
                           xsl:param element may appear as a child of an
                           xsl:function element, before any
                           non-xsl:param children of that element. Such a parameter
                        is known as a function parameter. A function parameter is a
                           local variable with the
                        additional property that its value can be set when the function is called,
                        using a function call in an XPath expression.]
                  
An xsl:param element may appear as a child
                     of an xsl:iterate instruction, before any
                        non-xsl:param children of that element. This defines a
                     parameter whose value may be initialized on entry to the iteration, and which
                     may be varied each time round the iteration by use of an
                        xsl:with-param element in the
                        xsl:next-iteration instruction. 
The result of evaluating a local xsl:variable or
                  xsl:param element (that is, the contribution it makes to the
               result of the sequence constructor it is part of) is an empty
               sequence.
For any variable-binding element, there is a region (more specifically, a set of nodes) of the stylesheet within which the binding is visible. The set of variable bindings in scope for an XPath expression consists of those bindings that are visible at the point in the stylesheet where the expression occurs.
A global variable binding
                  element is visible everywhere in the containing package
                   (including other stylesheet modules) except within the xsl:variable or
                  xsl:param element itself and any region where it is shadowed by another variable binding.
               (For rules regarding the visibility of the variable
               in other packages, see 3.5.4.1 Visibility of Components.)
            
A local variable binding element is visible for all following siblings and their descendants, with the following exceptions:
It is not visible in any region where it is shadowed by another variable binding.
It is not visible within the subtree rooted at an xsl:fallback
                     instruction that is a sibling of the variable binding element.
It is not visible within the subtree rooted at an
                        xsl:catch instruction that is a sibling of the variable
                     binding element.
Within an xsl:function declaration, a function parameter
                     is not visible within sibling xsl:param elements.
The binding is not visible for the xsl:variable or
                  xsl:param element itself.
If a binding is visible for an element then it is visible for every attribute of that element and for every text node child of that element.
An xsl:param element specifying tunnel="yes"
            is also visible in the test attribute of the containing xsl:template
            element.
[Definition: Within a region of the stylesheet where a binding B1 is visible, B1 shadows another binding B2 having the same name as B1 if B1 occurs at a point where B2 is visible.]
The following is allowed:
<xsl:param name="x" select="1"/> <xsl:template name="foo"> <xsl:variable name="x" select="2"/> </xsl:template>
It is also not an error if a binding established by a local
                  xsl:variable element shadows
               a binding established by another local xsl:variable or
                  xsl:param.
The following is not an error, but the effect is probably not what was intended.
                  The template outputs <x value="1"/>, because the declaration of
                  the inner variable named $x has no effect on the value of the outer
                  variable named $x.
<xsl:variable name="x" select="1"/> <xsl:template name="foo"> <xsl:for-each select="1 to 5"> <xsl:variable name="x" select="$x+1"/> </xsl:for-each> <x value="{ $x }"/> </xsl:template>
Note:
Once a variable has been given a value, the value cannot subsequently be changed. XSLT does not provide an equivalent to the assignment operator available in many procedural programming languages.
This is because an assignment operator would make it harder to create an implementation that processes a document other than in a batch-like way, starting at the beginning and continuing through to the end.
As well as global variables and local variables, an XPath expression may also declare range variables for use locally within an expression. For details, see [XPath 4.0].
Where a reference to a variable occurs in an XPath expression, it is resolved first by reference to range variables that are in scope, then by reference to local variables and parameters, and finally by reference to global variables and parameters. A range variable may shadow a local variable or a global variable. XPath also allows a range variable to shadow another range variable.
<xsl:with-param
  name = eqname
  select? = expression
  as? = sequence-type
  tunnel? = boolean〔'no'〕 >
  <!-- Content: sequence-constructor -->
</xsl:with-param>
Parameters are passed to templates using the xsl:with-param element.
               The required
               name attribute specifies the name of the template parameter (the variable the value
               of whose binding is to be replaced). The value of the name attribute is
               an EQName,
               which is expanded as described in 5.1.1 Qualified Names.
The xsl:with-param element is also used
                  when passing parameters to an iteration of the xsl:iterate
                  instruction, or to a dynamic invocation of an XPath expression using
                     xsl:evaluate. In consequence, 
               xsl:with-param may appear within
                  xsl:apply-templates, xsl:apply-imports,
                  xsl:call-template, xsl:evaluate, xsl:next-iteration, 
               and xsl:next-match. (Arguments to stylesheet functions, however, are supplied
               as part of an XPath function call: see 10.3 Stylesheet Functions.) 
               [ERR XTSE0670] It is a static error
                     if two or more sibling xsl:with-param elements have
                        name attributes that represent the same expanded QName.
            
The value of the parameter is specified in the same way as for
                  xsl:variable and xsl:param (see 9.3 Values of Variables and Parameters), taking account of the values of the select
               and as attributes and the content of the xsl:with-param
               element, if any.
Note:
It is possible to have an as attribute on the
                     xsl:with-param element that differs from the as
                  attribute on the corresponding xsl:param element.
In this situation, the supplied value of the parameter will first be processed
                  according to the rules of the as attribute on the
                     xsl:with-param element, and the resulting value will then be
                  further processed according to the rules of the as attribute on the
                     xsl:param element.
For example, suppose the supplied value is a node with type annotation
                  xs:untypedAtomic, and the xsl:with-param element
                  specifies as="xs:integer", while the xsl:param
                  element specifies as="xs:double". Then the node will first be
                  atomized and the resulting untyped atomic item will be cast to
                     xs:integer. If this succeeds, the xs:integer will
                  then be promoted to an xs:double.
The focus used for computing the value specified by
               the xsl:with-param element is the same as that used for its parent instruction.
The optional tunnel attribute may be used to indicate that a parameter
               is a tunnel parameter. The default is
                  no. Tunnel parameters are described in 10.1.6 Tunnel Parameters. They are used only when passing parameters to templates: for an
                  xsl:with-param element that is a child of
                  xsl:evaluate or xsl:next-iteration the
                  tunnel attribute must either be omitted or take
               the value no. 
 In other cases it is a  dynamic error if the template that is
               invoked declares a template parameter
               with required="yes" and no value for this parameter is supplied by the
               calling instruction. [see ERR XTDE0700]
            
[Definition: A circularity is said to exist if a construct such as a global variable, an attribute set, or a key, cannot be evaluated without reference to its own value. For example, if the expression or sequence constructor specifying the value of a global variable X references a global variable Y, then the value for Y must be computed before the value of X. A circularity exists if it is impossible to do this for all global variable definitions.]
The following two declarations create a circularity:
<xsl:variable name="x" select="$y+1"/> <xsl:variable name="y" select="$x+1"/>
The definition of a global variable can be circular even if no other variable is
                  involved. For example the following two declarations (see 10.3 Stylesheet Functions for an explanation of the
                     xsl:function element) also create a circularity:
<xsl:variable name="x" select="my:f()"/> <xsl:function name="my:f"> <xsl:sequence select="$x"/> </xsl:function>
The definition of a variable is also circular if the evaluation of the variable
                  invokes an xsl:apply-templates instruction and the variable is
                  referenced in the pattern used in the match attribute of any template
                  rule in the stylesheet. For example the
                  following definition is circular:
<xsl:variable name="x"> <xsl:apply-templates select="//param[1]"/> </xsl:variable> <xsl:template match="param[$x]">1</xsl:template>
Similarly, a variable definition is circular if it causes a call on the
                     key function, and the definition of that key refers to that variable in its match or
                     use attributes. So the following definition is circular:
<xsl:variable name="x" select="my:f(10, /)"/> <xsl:function name="my:f"> <xsl:param name="arg1"/> <xsl:param name="top"/> <xsl:sequence select="key('k', $arg1, $top)"/> </xsl:function> <xsl:key name="k" match="item[@code=$x]" use="@desc"/>
An attribute set is circular if its use-attribute-sets attribute
                  references itself, directly or indirectly. So the following definitions establish
                  a circularity:
<xsl:attribute-set name="a" use-attribute-sets="b"/> <xsl:attribute-set name="b" use-attribute-sets="a"/>
Because attribute sets can invoke functions, global variables, or templates, and can also include instructions such as literal result elements that themselves invoke attribute sets, examples of circularity involving attribute sets can be more complex than this simple example illustrates. It is also possible to construct examples in which self-reference among attribute sets could be regarded as (terminating or non-terminating) recursion. However, because such self-references have no practical utility, any requirement to evaluate an attribute set in the course of its own evaluation is considered an error.
Note:
In previous versions of this specification, self-reference among attribute sets was defined as a static error. In XSLT 3.0 it is not always detectable statically, because attribute sets can bind to each other across package boundaries. Nevertheless, in cases where a processor can detect a static circularity, it can raise this error during the analysis phase, under the general provision for raising dynamic errors during stylesheet analysis if execution can never succeed.
[ERR XTDE0640] In general, a circularity in a stylesheet is a dynamic error. However, as with all other dynamic errors, an implementation will raise the error only if it actually executes the instructions and expressions that participate in the circularity. Because different implementations may optimize the execution of a stylesheet in different ways, it is implementation-dependent whether a particular circularity will actually be raised.
For example, in the following declarations, the function declares a local variable
                  $b, but it returns a result that does not require the variable to be
               evaluated. It is implementation-dependent whether the value is actually evaluated, and
               it is therefore implementation-dependent whether the circularity is raised as an
               error:
<xsl:variable name="x" select="my:f(1)"/> <xsl:function name="my:f"> <xsl:param name="a"/> <xsl:variable name="b" select="$x"/> <xsl:sequence select="$a + 2"/> </xsl:function>
Although a circularity is detected as a dynamic error,
               there is no unique instruction whose evaluation triggers the error condition, and the
               result of any attempt to catch the error using an xsl:try
               instruction is therefore implementation-dependent.
Circularities usually involve global variables or parameters, but they can also exist
               between key definitions (see 20.2 Keys),
               between named attribute sets (see 10.2 Named Attribute Sets), or between any combination of these constructs. For
               example, a circularity exists if a key definition invokes a function that references
               an attribute set that calls the key function, supplying the name
               of the original key definition as an argument.
Circularity is not the same as recursion. Stylesheet functions (see 10.3 Stylesheet Functions) and named templates (see 10.1 Named Templates) may call other functions and named templates without restriction. With careless coding, recursion may be non-terminating. Implementations are required to raise circularity as a dynamic error, but they are not required to detect non-terminating recursion.
Recursive functions can also be defined using global variable declarations. For example, the variable
            declaration <xsl:variable name="f" select="fn($n){if ($n=0) then 0 else $f($n - 1)}"/> does
            not constitute a circularity, because the variable can be evaluated (delivering a function) without knowing its
            own value.
The requirement to report a circularity as a dynamic error overrides the rule that dynamic errors in evaluating patterns are normally masked (by treating the pattern as not matching).
This section describes three constructs that can be used to provide subroutine-like functionality that can be invoked from anywhere in the stylesheet: named templates (see 10.1 Named Templates), named attribute sets (see 10.2 Named Attribute Sets), and stylesheet functions (see 10.3 Stylesheet Functions).
[Definition: The following constructs are classified as invocation constructs: the
               instructions xsl:call-template,
               xsl:apply-templates, xsl:apply-imports, and
                  xsl:next-match; XPath function calls that bind to stylesheet functions; XPath dynamic
               function calls; the functions accumulator-before and
                  accumulator-after; the [xsl:]use-attribute-sets
               attribute. These all have the characteristic that they can cause evaluation of
               constructs that are not lexically contained within the calling
            construct.]
               [Definition: Templates can be invoked by
                  name. An xsl:template element with a name attribute
                  defines a named template.] The value of the
                  name attribute is an EQName, which is expanded as described in
                  5.1.1 Qualified Names. If an xsl:template element has a
                  name attribute, it may, but need not, also have a match
               attribute. 
The match, mode and priority attributes on an
                  xsl:template element have no effect when the template is invoked by an
                  xsl:call-template instruction. Similarly, the name
                and visibility attributes on an
                  xsl:template element have no effect when the template is invoked
               by an xsl:apply-templates instruction.
[ERR XTSE0660] It is a static error if a package contains more than one non-hidden template with the same name and the same import precedence, unless it also contains a template with the same name and higher import precedence.
The template name xsl:initial-template is specially
               recognized in that it provides a default entry point for stylesheet execution (see
                  2.3 Initiating a Transformation.) 
<!-- Category: instruction -->
<xsl:call-template
  name = eqname >
  <!-- Content: xsl:with-param* -->
</xsl:call-template>
An xsl:call-template instruction invokes a template by
                  name; it has a required
                  name attribute that identifies the template to be invoked. Unlike
                  xsl:apply-templates, the xsl:call-template
                  instruction does not change the focus.
                  [ERR XTSE0650] It is a static error if a package contains an
                        xsl:call-template instruction whose name
                        attribute does not match the name attribute of any named template
                        visible in the containing package (this
                        includes any template defined in this package, as well as templates accepted
                        from used packages whose visibility in this package is not
                        hidden). For more details of the process of binding the
                        called template, see 3.5.4.5 Binding References to Components.
               
The target template
                  for an xsl:call-template instruction is established using the
                  binding rules described in 3.5.4.5 Binding References to Components. This will always
                  be a template whose name attribute matches the name
                  attribute of the xsl:call-template instruction. It may be a
                  template defined in the same package that has higher import precedence than any other template
                  with this name, or it may be a template accepted from a used package, or (if the
                  template is not defined as private or final) it may be
                  an overriding template in a package that uses the containing package. 
                  The result of evaluating an xsl:call-template instruction is the
                  sequence produced by evaluating the sequence
                     constructor contained in its target template (see 5.7 Sequence Constructors).
Parameters for a named template can be supplied using xsl:with-param elements as children
              of the xsl:call-template instruction: see 9.10 Setting Parameter Values.
It is possible to invoke a named template using an extension instruction, specifically, an element whose name matches the name of the named template. [Issue 168 30 September 2022]
As an alternative to the use of xsl:call-template, it is
               possible to invoke a named template using an instruction. For example, given
               the named template:
<xsl:template name="log:message"> <xsl:param name="message" as="xs:string"/> <message>{ $message }</message> </xsl:template>
a call on the template written as:
<xsl:call-template name="log:message"> <xsl:with-param name="message" select="'Good morning'"/> </xsl:call-template>
can be replaced with the instruction:
<log:message message="Good morning"/>
For this to work, the name of the template must be in a non-null namespace, and
               this namespace must be designated as an extension element namespace using the
               attribute [xsl:]extension-element-prefixes on the instruction itself,
               or on some containing element (see 3.4 Standard Attributes).
The name of the instruction must match the name of the called template, and the
               names of its attributes (other than standard attributes)
                  are matched against the names of the template’s parameters. 
                  Standard attributes are recognized
               (they must be in the XSLT namespace) and have their standard meaning;
               for example xsl:default-collation affects the evaluation of any XPath expression
               used to compute a parameter value.
The way in which attribute values are handled depends on the type declaration of the template parameter:
If the declared type is xs:boolean, with no occurrence indicator,
                     then the attribute is treated
                     as an attribute value template whose effective value
                     (after whitespace trimming) must be one of yes, true, or 1,
                     or no, false, or 0, in the same way as boolean
                     attributes on XSLT instructions. 
                  
If the declared type is any other atomic or union type, with no occurrence indicator, 
                     then the attribute is treated as an attribute value template,
                     and its effective value is treated as an xs:untypedAtomic item,
                     which forces conversion to the required type by applying the casting rules.
In all other cases (that is, if the type of the parameter is not declared, or if it is not atomic, or if there is an occurrence indicator) the attribute is treated as an XPath expression and its value is converted to the required type using the coercion rules.
If an instruction is recognized as an implicit call on a named template, then the static
                  and dynamic rules that apply are the same as if it were expanded into an 
                  xsl:call-template instruction. The instruction
<N A1="E1" A2="E2" A3="E3"/>
is essentially equivalent to:
<xsl:call-template name="N"> <xsl:with-param name="A1" select="E1"/> <xsl:with-param name="A2" select="E2"/> <xsl:with-param name="A3" select="E3"/> </xsl:call-template>
except that the interpretation of the parameter values E1, E2, and E3
               depends on the declared type as explained above.
Some of the implications of this equivalence are:
The binding of the instruction to a specific named template (for example, if there are overriding declarations in multiple packages) follows the binding rules in 3.5.4.5 Binding References to Components.
A value must be supplied for any parameter declared with required="yes".
The context item for the evaluation of the extension instruction must satisfy any constraints
                  defined in an xsl:context-item declaration in the called template.
It is an error if the instruction has attributes that do not correspond to the names of parameters declared on the named template.
It is not possible to supply values for tunnel parameters, but existing tunnel parameters are passed through unchanged.
For backwards compatibility, if an external implementation of an extension instruction is available to the implementation, then that takes precedence over the existence of a named template with a matching name.
The XSLT namespace cannot be designated as an extension element namespace, so the template
               names xsl:initial-template and xsl:original cannot be used as
               extension instructions.
The xsl:context-item element is used as a child of
                     xsl:template, to declare the required type of the context
                  item. It is intended particularly for use when the containing template is called
                  using an xsl:call-template instruction, but it also constrains
                  the context item if the same template is invoked using
                     xsl:apply-templates, xsl:apply-imports, or
                     xsl:next-match. 
Note:
The context item for a template must be either a single item, or absent. It cannot be an arbitrary value.
<xsl:context-item
  as? = item-type
  use? = "required" | "optional" | "absent"〔'optional'〕 />
If the as attribute is present then its value must be an ItemTypeXP. If the attribute is
                  omitted this is equivalent to specifying as="item()".
[ERR XTSE3088] It is a static error if the as attribute is
                        present  when use="absent" is specified.
A type error is raised if the supplied
                  context item does not match its required type. No attempt is made to convert the
                  context item to the required type (using the coercion rules or
                  otherwise). The error code is the same as for xsl:param:
                     [see ERR XTTE0590].
If an xsl:context-item element is present as
                  the first child element of xsl:template, it defines whether the
                  template requires a context item to be supplied, and if so, what the type of the
                  context item must be. If this template is the initial named template, then this has the effect of placing
                  constraints on the global context
                     item for the transformation as a whole.
The use attribute of
                     xsl:context-item takes the value required,
                     optional, or absent.
                     The default is
                     optional.
If the containing xsl:template element has no name
                  attribute then the only permitted value is required.
If the value required is specified, then there must be a
                        context item. (This will automatically be the case if the template is
                        invoked using xsl:apply-templates,
                           xsl:apply-imports, or xsl:next-match,
                        but not if it is invoked using xsl:call-template.) 
If the value optional is specified, or if the attribute is
                        omitted, or if the xsl:context-item element is omitted,
                        then there may or may not be a context item when the template is
                        invoked.
If the value absent is specified, then the contained sequence
                        constructor, and any xsl:param elements, are evaluated with
                        an absent focus.
Note:
It is not an error to call such a template with a non-absent focus; the
                           context item is simply treated as absent. This option is useful when
                           streaming, since an xsl:call-template instruction may
                           become streamable if the referenced template is declared to make no use
                           of the context item.
 The processor may
                  raise a type error statically if the
                  required context item type is incompatible with the match pattern,
                  that is, if no item that satisfies the match pattern can also satisfy the required
                  context item type.
The xsl:context-item element plays no part in
                  deciding whether and when the template rule is invoked in response to an
                     xsl:apply-templates instruction. 
                  [ERR XTTE3090] It is a type error if the
                           xsl:context-item child of xsl:template
                        specifies that a context item is required and none is supplied by the
                        caller, that is, if the context item is absent at the point where
                           xsl:call-template is evaluated.
               
Parameters are passed to named templates using the xsl:with-param
                  element as a child of the xsl:call-template instruction.
                  [ERR XTSE0680] In the case of xsl:call-template, it is a static error to pass a non-tunnel
                        parameter named x to a template that does not have a non-tunnel
                        template
                           parameter named x, unless the xsl:call-template instruction is processed with
                              XSLT 1.0
                           behavior. This is not an error in the case of xsl:apply-templates,
                     xsl:apply-imports, and xsl:next-match; in
                  these cases the parameter is simply ignored.
The optional tunnel attribute may be used to indicate that a
                  parameter is a tunnel parameter. The
                  default is no. Tunnel parameters are described in 10.1.6 Tunnel Parameters.
               
This example defines a named template for a numbered-block with a
                     parameter to control the format of the number.
<xsl:template name="numbered-block"> <xsl:param name="format">1. </xsl:param> <fo:block> <xsl:number format="{ $format }"/> <xsl:apply-templates/> </fo:block> </xsl:template> <xsl:template match="ol//ol/li"> <xsl:call-template name="numbered-block"> <xsl:with-param name="format">a. </xsl:with-param> </xsl:call-template> </xsl:template>
[Definition: A parameter passed to a template may be defined as a tunnel parameter. Tunnel parameters have the property that they are automatically passed on by the called template to any further templates that it calls, and so on recursively.] Tunnel parameters thus allow values to be set that are accessible during an entire phase of stylesheet processing, without the need for each template that is used during that phase to be aware of the parameter.
Note:
Tunnel parameters are conceptually similar to the dynamically scoped variables found in some functional programming languages (for example, early versions of LISP), where evaluating a variable reference involves searching down the dynamic call stack for a matching variable name. There are two main use cases for the feature:
They provide a way to supply context information that might be needed by many
                     templates (for example, the fact that the output is to be localized for a particular language),
                     but which cannot be placed in a global variable because it might vary from one phase of processing
                     to another. Passing such information using conventional parameters is error-prone, because
                     a single xsl:apply-templates or xsl:call-template instruction
                     that neglects to pass the information on will lead to failures that are difficult to diagnose.
This style of processing is even more useful when handling JSON input, because with maps and arrays, there is no ancestor axis to examine properties of nodes further up the tree; with a recursive descent of the tree, all context information needs to be passed down explicitly. One way of handling this is for each level of processing in the tree to bind a tunnel parameter to the map or array encountered at that level, which then becomes available to all template rules processing data further down the tree.
They are particularly useful when writing a customization layer for an existing stylesheet. For example, if you want to override a template rule that displays chemical formulae, you might want the new rule to be parameterized so you can apply the house-style of a particular scientific journal. Tunnel parameters allow you to pass this information to the overriding template rule without requiring modifications to all the intermediate template rules. Again, a global variable could be used, but only if the same house-style is to be used for all chemical formulae processed during a single transformation.
A tunnel parameter is created by
                  using an xsl:with-param element that specifies
                     tunnel="yes". A template that requires access to the value of a
                  tunnel parameter must declare it using an xsl:param element that
                  also specifies tunnel="yes".
On any template call using an xsl:apply-templates,
                     xsl:call-template, xsl:apply-imports or
                     xsl:next-match instruction, a set of tunnel parameters is passed from the
                  calling template to the called template. This set consists of any parameters
                  explicitly created using <xsl:with-param tunnel="yes">,
                  overlaid on a base set of tunnel parameters. If the
                     xsl:apply-templates, xsl:call-template,
                     xsl:apply-imports or xsl:next-match
                  instruction has an xsl:template declaration as an ancestor
                  element in the stylesheet, then the base set consists of the tunnel parameters
                  that were passed to that template; otherwise (for example, if the instruction is
                  within a global variable declaration, an attribute
                     set declaration, or a stylesheet function), the base set is empty. If a parameter created
                  using <xsl:with-param tunnel="yes"> has the same expanded QName as a parameter in the base
                  set, then the parameter created using xsl:with-param overrides
                  the parameter in the base set; otherwise, the parameter created using
                     xsl:with-param is added to the base set.
When a template specifies <xsl:param tunnel="yes">,
                  this declares the intention to make use of a tunnel
                     parameter; it does not remove the parameter from the base set
                  of tunnel parameters that is passed on to any templates called by this
                  template.
Two sibling xsl:with-param elements must have
                  distinct parameter names, even if one is a tunnel parameter and the other is not. Equally, two sibling
                     xsl:param elements representing template parameters
                  must have distinct parameter names, even if one is a tunnel parameter and the other is not.
                  However, the tunnel parameters that are implicitly passed in a template call
                     may have names that duplicate the names of non-tunnel
                  parameters that are explicitly passed on the same call.
Tunnel parameters are not passed in calls to stylesheet functions.
All other options of xsl:with-param and
                     xsl:param are available with tunnel parameters just as with non-tunnel
                  parameters. For example, parameters may be declared as mandatory or optional, a
                  default value may be specified, and a required type may be specified. If any
                  conversion is required from the supplied value of a tunnel parameter to the
                  required type specified in xsl:param, then the converted value is
                  used within the receiving template, but the value that is passed on in any further
                  template calls is the original supplied value before conversion. Equally, any
                  default value is local to the template: specifying a default value for a tunnel
                  parameter does not change the set of tunnel parameters that is passed on in
                  further template calls.
Tunnel parameters are passed unchanged through a built-in template rule (see 6.8 Built-in Template Rules).
If a tunnel parameter is declared in an
                     xsl:param element with the attribute
                  tunnel="yes", and if the
                  parameter is explicitly
                  or implicitly mandatory,
                  then a  dynamic error occurs [see ERR XTDE0700] if the set of tunnel parameters passed to the template does not
                  include a parameter with a matching expanded
                     QName.
Suppose that the equations in a scientific paper are to be sequentially numbered, but that the format of the number depends on the context in which the equations appear. It is possible to reflect this using a rule of the form:
<xsl:template match="equation"> <xsl:param name="equation-format" select="'(1)'" tunnel="yes"/> <xsl:number level="any" format="{ $equation-format }"/> </xsl:template>
At any level of processing above this level, it is possible to determine how the equations will be numbered, for example:
<xsl:template match="appendix"> ... <xsl:apply-templates> <xsl:with-param name="equation-format" select="'[i]'" tunnel="yes"/> </xsl:apply-templates> ... </xsl:template>
The parameter value is passed transparently through all the intermediate layers
                     of template rules until it reaches the rule with match="equation".
                     The effect is similar to using a global variable, except that the parameter can
                     take different values during different phases of the transformation.
<!-- Category: declaration -->
<xsl:attribute-set
  name = eqname
  use-attribute-sets? = eqnames〔''〕
  visibility? = "public" | "private" | "final" | "abstract"〔'private'〕
  streamable? = boolean〔'no'〕 >
  <!-- Content: xsl:attribute* -->
</xsl:attribute-set>
Attribute sets generate named collections of attributes that can be used repeatedly on
               different constructed elements. The xsl:attribute-set declaration is
               used to declare attribute sets. The required
               name attribute specifies the name of the attribute set. The value of the
                  name attribute is an EQName, which is expanded as
               described in 5.1.1 Qualified Names.
               [Definition: An attribute set is
                  defined as a set of xsl:attribute-set declarations in the same
                     package that share the same expanded QName.]
            
The content of the xsl:attribute-set element consists of zero or
               more xsl:attribute instructions that are evaluated to produce the
               attributes in the set.
The effect of the streamable attribute is explained in 
            9 Streamable Attribute SetsSG.
                  Attribute sets are used by specifying a
                     use-attribute-sets attribute on the xsl:element
                  or xsl:copy instruction, or by specifying an
                     xsl:use-attribute-sets attribute on a literal result element. An
                  attribute set may be defined in terms of other attribute sets by using the
                     use-attribute-sets attribute on the
                     xsl:attribute-set element itself. The value of the
                     [xsl:]use-attribute-sets attribute is in each case a
                  whitespace-separated list of names of attribute sets. Each name is specified as an
                     EQName,
                  which is expanded as described in 5.1.1 Qualified Names.
                  [ERR XTSE0710] It is a static error if the value
                        of the use-attribute-sets attribute of an
                           xsl:copy, xsl:element, or
                           xsl:attribute-set element, or the
                           xsl:use-attribute-sets attribute of a literal result element, is not
                        a whitespace-separated sequence of EQNames, or if it contains an
                        EQName that does not match the name attribute of any
                           xsl:attribute-set declaration in the containing package.
               
An attribute set may be considered
                  as comprising a sequence of instructions, each of which is either an
                     xsl:attribute instruction or an attribute set invocation. Starting with the declarations making up
                  an attribute set, this sequence of instructions can be generated by the following
                  rules: 
The relevant attribute set declarations (that is, all declarations of attribute sets within a package sharing the same expanded QName) are considered in order: first in increasing order of import precedence, and within each precedence, in declaration order.
Each declaration is expanded to a sequence of instructions as follows.
                        First, one attribute set invocation is generated for
                        each EQName present in the use-attribute-sets attribute, if
                        present, retaining the order in which the EQNames appear. This is followed
                        by the sequence of contained xsl:attribute instructions, in
                        order. 
[Definition: An
                              attribute set invocation is a pseudo-instruction
                           corresponding to a single EQName appearing within an
                              [xsl:]use-attribute-sets attribute; the effect of the
                           pseudo-instruction is to cause the referenced attribute set to be evaluated.]
Similarly, an [xsl:]use-attribute-sets
                  attribute of an xsl:copy, xsl:element, or
                     xsl:attribute-set element, or of a literal result element, is
                  expanded to a sequence of attribute set
                     invocations, one for each EQName in order. 
An attribute set is a named component, and the binding of QNames appearing in an attribute set invocation to attribute set components follows the rules in 3.5.4.5 Binding References to Components.
The following two (mutually recursive) rules define how
                  an [xsl:]use-attribute-set attribute is expanded:
An attribute set is evaluated by evaluating each of the
                        contained attribute set
                           invocations and xsl:attribute instructions in
                        order, to deliver a sequence of attribute nodes. 
An attribute set invocation is evaluated by evaluating the attribute set to which it is bound, as determined by the rules in 3.5.4.5 Binding References to Components.
For rules regarding cycles in attribute set declarations, see 9.11 Circular Definitions.
Note:
The effect of an attribute set invocation on the dynamic
                     context is the same as the effect of an xsl:call-template
                     instruction. In particular, it does not change the focus.
                     Although attribute sets are often defined with fixed values, or with values
                     that depend only on global variables, it is possible to define an attribute set
                     in such a way that the values of the constructed attributes are dependent on
                     the context item.
Note:
In all cases the result of evaluating an attribute set is subsequently used to create the attributes of an element node, using the rules in 5.7.1 Constructing Complex Content. The effect of those rules is that when the result of evaluating the attribute set contains attributes with duplicate names, the last duplicate wins. The optimization rules allow a processor to avoid evaluating or validating an attribute if it is able to determine that the attribute will subsequently be discarded as a duplicate.
The visibility attribute determines the
                  potential visibility of the attribute set in packages other than the containing
                  package. If the visibility attribute is present on any of the
                     xsl:attribute-set declarations making up the definition of an
                     attribute set (that is, all declarations within the same
                  package sharing the same name), then it must be present, with
                  the same value, on every xsl:attribute-set declaration making up
                  the definition of that attribute set.
If the visibility attribute is present with the
                  value abstract then there must be no xsl:attribute
                  children and no use-attribute-sets
                     attribute.
Attribute sets are evaluated as follows:
The xsl:copy and xsl:element instructions
                        have a use-attribute-sets attribute. The sequence of attribute
                        nodes produced by evaluating this attribute is prepended to the sequence
                        produced by evaluating the sequence
                           constructor contained within the instruction.
                        Literal result elements
                        allow an xsl:use-attribute-sets attribute, which is evaluated
                        in the same way as the use-attribute-sets attribute of
                           xsl:element and xsl:copy. The sequence
                        of attribute nodes produced by evaluating this attribute is prepended to the
                        sequence of attribute nodes produced by evaluating the attributes of the
                        literal result element, which in turn is prepended to the sequence produced
                        by evaluating the sequence
                           constructor contained with the literal result element.
The xsl:attribute instructions are evaluated using the same
                     focus as is used for evaluating the 
                  sequence constructor contained by the
                  element that is the parent of the [xsl:]use-attribute-sets attribute forming
                  the initial input to the algorithm. However, the static context for the evaluation
                  depends on the position of the xsl:attribute instruction in the
                  stylesheet: thus, only local variables declared within an
                     xsl:attribute instruction, and global variables, are
                  visible.
Note:
The above rule means that for an xsl:copy
               element with a select attribute, the focus for evaluating any referenced attribute
               sets is the node selected by the select attribute, rather than the context item of 
                  the xsl:copy instruction.
The set of attribute nodes produced by expanding
                     xsl:use-attribute-sets may include several attributes with the
                  same name. When the attributes are added to an element node, only the last of the
                  duplicates will take effect.
The way in which each instruction uses the results of expanding the
                     [xsl:]use-attribute-sets attribute is described in the
                  specification for the relevant instruction: see 11.1 Literal Result Elements, 11.2 Creating Element Nodes Using xsl:element, and 11.9 Copying Nodes.
The result of evaluating an attribute set is a sequence of attribute nodes. Evaluating the same attribute set more than once can produce different results, because although an attribute set does not have parameters, it may contain expressions or instructions whose value depends on the evaluation context.
Each attribute node produced by expanding an attribute set has a type annotation determined by the rules for the
                     xsl:attribute instruction that created the attribute node: see
                     11.3.1 Setting the Type Annotation for a Constructed Attribute Node. These type annotations
                  may be preserved, stripped, or replaced as determined by the rules for the
                  instruction that creates the element in which the attributes are used.
The following example creates a named attribute
                        set
                     title-style and uses it in a template rule.
<xsl:template match="chapter/heading"> <fo:block font-stretch="condensed" xsl:use-attribute-sets="title-style"> <xsl:apply-templates/> </fo:block> </xsl:template> <xsl:attribute-set name="title-style"> <xsl:attribute name="font-size">12pt</xsl:attribute> <xsl:attribute name="font-weight">bold</xsl:attribute> </xsl:attribute-set>
The following example creates a named attribute set base-style and
                     uses it in a template rule with multiple specifications of the attributes:
is specified only in the attribute set
is specified in the attribute set, is specified on the literal result
                              element, and in an xsl:attribute instruction
is specified in the attribute set, and on the literal result element
is specified in the attribute set, and in an
                                 xsl:attribute instruction
Stylesheet fragment:
<xsl:attribute-set name="base-style"> <xsl:attribute name="font-family">Univers</xsl:attribute> <xsl:attribute name="font-size">10pt</xsl:attribute> <xsl:attribute name="font-style">normal</xsl:attribute> <xsl:attribute name="font-weight">normal</xsl:attribute> </xsl:attribute-set> <xsl:template match="o"> <fo:block xsl:use-attribute-sets="base-style" font-size="12pt" font-style="italic"> <xsl:attribute name="font-size">14pt</xsl:attribute> <xsl:attribute name="font-weight">bold</xsl:attribute> <xsl:apply-templates/> </fo:block> </xsl:template>
Result:
<fo:block font-family="Univers" font-size="14pt" font-style="italic" font-weight="bold"> ... </fo:block>
Parameters on functions
               declared using xsl:function can now be defined as optional,
               with a default value supplied.  [Issue 155 PR 159 30 September 2022]
User-defined functions can now have names that are in
               no namespace. An unprefixed name appearing in a function call is resolved
               to a no-namespace function with matching local name in preference to
               a function in the standard fn namespace.  [Issue 657 ]
               [Definition: An
                     xsl:function declaration declares the name, parameters, and
                  implementation of a family of stylesheet functions that can be called from any
                  XPath expression within the stylesheet
                  (subject to visibility rules).]
            
<!-- Category: declaration -->
<xsl:function
  name = eqname
  as? = sequence-type〔'item()*'〕
  visibility? = "public" | "private" | "final" | "abstract"〔'private'〕
  streamability? = "unclassified" | "absorbing" | "inspection" | "filter" | "shallow-descent" | "deep-descent" | "ascent" | eqname〔'unclassified'〕
  override-extension-function? = boolean〔'yes'〕
  [override]? = boolean〔'yes'〕
  new-each-time? = "yes" | "true" | "1" | "no" | "false" | "0" | "maybe"
  cache? = boolean〔'no'〕 >
  <!-- Content: (xsl:param*, sequence-constructor) -->
</xsl:function>
The effect of an xsl:function declaration is to add a 
               function definition
               to the static context for all XPath expressions 
               used in the stylesheet (including an XPath expression used
               within a predicate in a pattern).
The content of the xsl:function element consists of zero or more
               xsl:param elements that specify the formal parameters of the
               function, followed by a sequence
                  constructor that defines the value to be returned by the function.
The children and attributes of the xsl:function declaration translate directly
               into properties of the function definition:
The xsl:function/@name attribute defines the function’s name.
The xsl:param children define the function’s parameters:
The xsl:param/@name attribute defines the name of the parameter.
The xsl:param/@required attribute determines whether the parameter is mandatory or optional.
The xsl:param/@as attribute determines the required type of the parameter.
The xsl:param/@select attribute determines a default value for an optional parameter.
The xsl:function/@as attribute defines the return type of the function.
The implementation of the function is defined by the sequence constructor content
               of the xsl:function element.
An xsl:function declaration can only appear as a top-level element in a stylesheet module.
The name of the function is given by the name
                  attribute.
                  [ERR XTSE0740] It is a static error if a stylesheet function has a name
                        that is in no namespace, unless the visibility
                     of the function is private.
Note:
XSLT 4.0 allows the function name to be unprefixed, provided that its
                  visibility is private. This represents a QName
               in no namespace. A function call using an unprefixed function name is resolved to
               a no-namespace function name in preference to a function in the default function namespace,
               which for XSLT is always the fn namespace.
Note:
To prevent the namespace URI used for the function name appearing in
                     the result document, use the exclude-result-prefixes attribute on
                     the xsl:stylesheet element: see 11.1.3 Namespace Nodes for Literal Result Elements.
The name of the function must not be in a reserved namespace: [see ERR XTSE0080]
The function parameters are defined by child xsl:param elements. The parameters must have distinct names.
                  The list of parameters must contain zero or more required parameters, followed by zero or more optional parameters.
                  A parameter is optional if it has the attribute required="no"; otherwise, it is required.
The default value for an optional parameter can be defined using the select attribute or the 
               contained sequence constructor of the xsl:param element. These must be absent
               for a required parameter. If an optional parameter has no select attribute and the contained sequence
               constructor is empty, then the default value will be an empty sequence. This will lead to a type error if the
               required type of the parameter does not permit an empty sequence.
Note:
When considering function overriding, dynamic function calls,
                  and details such as the function-lookup function, it is useful to think
                  of an xsl:function declaration with optional parameters as a syntactic 
                  short-cut for a set of xsl:function declarations of varying arity, each
                  of which calls the function with next-higher arity, supplying the default value of the parameter
                  explicitly in the function call.
This is not an exact equivalence, however, because of the rules allowing default values of function parameters to be context-dependent.
The function definition derived from the 
                  xsl:function declaration has an arity range
                  from M to M+N, where M is the number of required parameters
                  and N is the number of optional parameters. The arity range constrains the number of arguments
               that may appear in a call to this function.
For example, the following xsl:function declaration
               declares a function, named f:compare, with an arity range of (2 to 3). 
                  The effect of calling f:compare($a, $b) is the same as the effect
               of calling f:compare($a, $b, { "order": "ascending" }).
<xsl:function name="f:compare" as="xs:boolean"> <xsl:param name="arg1" as="xs:double"/> <xsl:param name="arg2" as="xs:double"/> <xsl:param name="options" as="map(*)" required="no" select="{ 'order': 'ascending' }"/> <xsl:if test="$options?order = 'descending'" then="$arg1 gt $arg2" else="$arg2 gt $arg1"/> </xsl:function>
Note:
Functions are not polymorphic. Although the XPath function call mechanism allows two functions to have the same name and non-overlapping arity ranges, it does not allow them to be distinguished by the types of their arguments.
The xsl:param elements define the formal parameters to the
                  function. In a static function call, these are referenced either positionally or by name.
                  The rules for associating arguments in a static function call with parameter definitions
                  in the function declaration are given in [XPath 4.0] section 4.6.1.2 Evaluating Static Function Calls.
                  [ERR XTSE0760] It is a static error if an xsl:param child of
                        an xsl:function element has either a select
                        attribute or non-empty content, unless it
                        specifies required="no".
               
                  [ERR XTSE0761] It is a static error if an xsl:param child of
                        an xsl:function element specifies
                     required="no", unless all following-sibling
                        xsl:param elements also specify required="no".
               
The as attribute of the xsl:param element defines
                  the required type of the parameter. The rules for converting the values of the
                  actual arguments supplied in the function call to the types required by each
                     xsl:param element, and the
                     errors that can occur, are defined in [XPath 4.0]. The
                  rules that apply are those for the case where XPath 1.0 compatibility mode is set to false.
If the as attribute is omitted, no conversion takes place and any
                  value is accepted.
The default value for an optional parameter 
                  (one with required="no") will often be supplied using a 
                  simple literal or constant expression, for example
                  <xsl:param name="married" as="xs:boolean" select="false()"/>,
                  or <xsl:param name="options" as="map(*)" select="{}"/>. 
                  However, to allow greater flexibility,
                  the default value can also be context-dependent. For example, 
                  <xsl:param name="node" as="node()" select="."/> declares a parameter whose
                  default value is the context item from the dynamic context of the caller, while 
                  <xsl:param name="collation" as="xs:string" select="default-collation()"/>
                  declares a parameter whose default value is the default collation from the dynamic context of the caller.
                  The detailed rules are as follows. In these rules, the term caller means the function call or function reference
                  that invokes the function being defined.
The static contextXP for the 
                  initializing expression of an optional parameter of an xsl:function declaration
                  is the same as the static context for a static expression.
The dynamic contextXP for the initializing expression of an optional parameter is the same as the dynamic context for the evaluation of a static expression, with the following exceptions:
The context valueXP, context positionXP, and context sizeXP are taken from the dynamic context of the caller.
The default collationXP and Executable Base URIXP are taken from the dynamic context of the caller.
Note:
The effect of these rules is that the select expression for an optional parameter
               is evaluated in the same way as a static expression, except that it may contain context-dependent
               subexpressions such as ., position(), last(),
               static-base-uri(), and default-collation() to access the
               dynamic context of the caller. It may also contain expressions such as name()
               or @x = "abc" that have an implicit dependency on the dynamic context of the caller.
The result of the function, if all arguments are supplied, is the result of evaluating the contained sequence constructor.
If a reduced-arity form of the function is invoked by omitting optional arguments, then
               the result of the function is obtained by evaluating the sequence constructor after binding the
               omitted arguments to their default values, which are obtained by evaluating the select
               attribute or sequence constructor of the relevant xsl:param element, as
               described in 9.2.2 Default Values of Parameters.
Within the sequence constructor, the focus is initially absent; this means that any attempt to reference the context item, context position, or context size is a type error. (See [ERR XPDY0002] XP40.)
It is not possible within the body of the stylesheet function to access the values of local variables that were in scope in the place where the function call was written. Global variables, however, remain available.
The optional as attribute indicates the required type of the result of the function.
                  The value of the as attribute is a
                  SequenceType.
                  [ERR XTTE0780] If the as attribute  is specified, then the result evaluated by the sequence constructor (see
                           5.7 Sequence Constructors) is converted to the required
                        type, using the coercion rules. It is a type
                           error if this conversion fails. If the as attribute is omitted, the calculated result is
                  used as supplied, and no conversion takes place.
Note:
Using the xsl:value-of instruction to deliver the function
               result is generally a mistake, except in the rare case where the function is actually
               intended to return a text node. For functions that return atomic items such as strings,
               numbers, or booleans, using xsl:sequence or xsl:select
               is generally better because it avoids wrapping the value in a text node and then immediately
               unwrapping it again, with possible loss of type information.
It is possible to have multiple function declarations sharing the same function name and arity:
Multiple xsl:function declarations 
                     are allowed within a single package if they have different
                     import precedence.
A function declared using xsl:function
                  may have the same name and arity as an extension function.
A function declared within one package may be overridden
                  (using xsl:override) in another package.
The rules governing these three scenarios are given in the sections that follow.
Two stylesheet functions with the same name may appear in a package if their arity ranges do not overlap. Neither overrides the other; the function that is selected is determined by the arity of the function call or function reference.
In addition, a stylesheet function may be overridden by another stylesheet function with the same name that has higher import precedence. Such overriding is only allowed, however, if the arity range of the overriding function includes the totality of the arity range of the overridden function.
[Definition: An xsl:function declaration
                     F is said to be eclipsed if the containing package includes 
                     an xsl:function declaration
                     G such that F and G have the same name, F has lower
                     import precedence than G, and the arity range
                     of G includes the totality of the arity range of F.]
                     [ERR XTSE0769] It is a static error for a package to
                           contain an xsl:function
                           declaration F and an xsl:function declaration
                           G such that F and G have the same 
                           expanded QName, F has lower
                           import precedence than G, and the 
                           arity range
                           of G includes part but not all of the arity range of F,
                           unless G is itself eclipsed by another 
                           xsl:function declaration.
                  
                     [ERR XTSE0770] It is a static error for a package to
                           contain an xsl:function
                           declaration F and an xsl:function declaration
                           G such that F and G have the same 
                           expanded QName and the same
                           import precedence, if the 
                           arity ranges
                           of F and G overlap in whole or in part, 
                           unless F and G are both eclipsed by another 
                           xsl:function declaration.
                  
Similarly it is a static error
                     [see ERR XTDE0770] for 
                           a package to
                           contain an xsl:function
                     declaration F that is not eclipsed by another 
                     xsl:function declaration, if its name and arity range conflict
                           with a constructor function in the static context. There will be a constructor
                  function (with arity 1) in the static context for every atomic type or plain union type
                  in the in-scope schema components.
                  
The optional override-extension-function attribute defines what
                     happens if an xsl:function declaration has the same name and 
                     overlapping arity range 
                     as a function provided by the implementer or made available in
                     the static context using an implementation-defined mechanism. If the override-extension-function attribute
                     has the value yes, then this function is used in preference; if it
                     has the value no, then the other function is used in preference. The
                     default value is yes.
Note:
Specifying override-extension-function="yes" ensures
                        interoperable behavior: the same code will execute with all processors.
                        Specifying override-extension-function="no" is useful when
                        writing a fallback implementation of a function that is available with some
                        processors but not others: it allows the vendor’s implementation of the
                        function (or a user’s implementation written as an extension function)
                        to be used in preference to the stylesheet implementation, which is useful when
                        the extension function is more efficient.
The override-extension-function attribute does not
                        affect the rules for deciding which of several stylesheet functions with the same
                        name and overlapping arity range takes precedence.
The override attribute is a deprecated synonym of override-extension-function,
                     retained for compatibility with XSLT 2.0. If both attributes are present then they
                     must have the same value.
When a package is referenced in xsl:use-package, functions
               declared in the used package become available in the using package, conditional
               on their declared visibility, as described 
                  in 3.5 Packages.
If the visibility attribute of xsl:function is present with the
                  value abstract then the sequence constructor
                  defining the function body must be empty.
The XPath specification states that the function that is executed as the result of a function call is identified by looking in the static context for a function definition whose name and arity range match the name and number of arguments in the function call. In XSLT 3.0, final determination of the function to be called cannot be made until all packages have been assembled: see 3.5.4.5 Binding References to Components.
Note:
XSLT 4.0 allows a stylesheet function to be in no namespace,
                  provided that its visibility is local to a package.
                  A static function call or named function reference using an unprefixed lexical QName
                  is resolved first by looking for no-namespace functions,
                  then for functions in the standard namespace http://www.w3.org/2005/xpath-functions.
                  A no-namespace function might be a private stylesheet function
                  declared within the same package, or it might be (for example) a constructor function
                  for a user-defined atomic type in an imported no-namespace schema; it will never, however,
                  be a stylesheet function imported or overridden from a different package,
                  so the rules for referencing functions across packages do not come into play.
An xsl:function declaration defines a
                  stylesheet function which forms a
                     component in its containing package,
                  unless 
it is eclipsed, or
the override-extension-function or override
                        attribute has the value no and there is already a 
                        function definition 
                        with the same name and an overlapping arity range
                         in the static context.
The optional override-extension-function attribute defines what
                  happens if this function has the same name and an 
                  arity range that conflicts 
                  with a function provided by the implementer or made available in
                  the static context using an implementation-defined mechanism. If the override-extension-function attribute
                  has the value yes, then this function is used in preference; if it
                  has the value no, then the other function is used in preference. The
                  default value is yes.
Note:
Specifying override-extension-function="yes" ensures
                     interoperable behavior: the same code will execute with all processors.
                     Specifying override-extension-function="no" is useful when
                     writing a fallback implementation of a function that is available with some
                     processors but not others: it allows the vendor’s implementation of the
                     function (or a user’s implementation written as an extension function)
                     to be used in preference to the stylesheet implementation, which is useful when
                     the extension function is more efficient.
The override-extension-function attribute does not
                     affect the rules for deciding which of several 
                     stylesheet functions with the same
                     name and arity range takes precedence.
The override attribute is a deprecated synonym of override-extension-function,
                  retained for compatibility with XSLT 2.0. If both attributes are present then they
                     must have the same value.
When the xsl:function declaration appears as a
                  child of xsl:override, there must be a
                  compatible stylesheet function in the 
                  package referenced by the containing
                     xsl:use-package element; the visibility 
                  of that function must be public or
                  abstract (See also 3.5.4.3 Overriding Components from a Used Package.)
If a stylesheet
                     function with a particular expanded
                     QName and arity range exists in the
                  stylesheet, then a call to the function-lookup function
                  will return the function as a value if it supplies that name and an arity within that range. This applies
                  only if the static context for the call on function-lookup
                  includes the stylesheet function, which implies that the function is visible in
                  the containing package.
The function-available function, when
                  called with a particular expanded QName
                  and arity, returns true if and only if a call on
                     function-lookup with the same arguments, in the same
                  static context, would return a function item.
Note:
For legacy reasons there is also a single-argument version of
                        function-available, which returns true if there is a
                     function with the given name regardless of arity.
The standard rules for
                     function-lookup require that if the supplied name and
                  arity identify a context-dependent function such as name#0
                  or lang#1 (call it F), then the returned
                  function value includes in its closure a copy of the static and dynamic context of
                  the call to function-lookup, and the context item for a
                  subsequent dynamic call of F is taken from this saved context. In the
                  case where the context item is a node in a streamed input document, saving the
                  node is not possible. In this case, therefore, the context is saved with an absent
                  focus, so the call on F will fail with a dynamic error saying that
                  there is no context item available.
Stylesheet functions have been designed to be largely deterministic: unless a stylesheet function calls some extension function which is itself nondeterministic, the function will return results that depend only on the supplied arguments. This property (coupled with the fact that the effect of calling extension functions is entirely implementation-dependent) enables a processor to implement various optimizations, such as removing invariant function calls from the body of a loop, or combining common subexpressions.
One exception to the intrinsic determinism of stylesheet functions arises because
                  constructed nodes have distinct identity. This means that when a function that
                  creates a new node is called, two calls on the function will return nodes that can
                  be distinguished: for example, with such a function, f:make-node() is
                     f:make-node() will return false.
Three classes of functions can be identified:
DeterministicFO
                        functions: as the term is defined in [Functions and Operators 4.0],
                        these offer a guarantee that when a function is called repeatedly with the
                        same arguments, it returns the same results. A classic example is the
                           doc function, which offers the guarantee that
                           doc($X) is doc($X): that is, two calls supplying the same
                        URI return the same node.
Proactive functions: these offer the guarantee that each invocation of the function causes a single execution of the function body, or behaves exactly as if it did so. In particular this means that when the function creates new nodes, it creates new nodes on each invocation. By default, stylesheet functions are proactive.
Elidable functions: these offer no guarantee of determinism, and no
                        guarantee of proactive evaluation. If the function creates new nodes, then
                        two calls on the function with the same arguments may or may not return the
                        same nodes, at the implementation’s discretion. Examples of elidable functions include
                        the [Functions and Operators 4.0] functions
                           analyze-string and
                           json-to-xml.
The new-each-time attribute of xsl:function allows a
                  stylesheet function to be assigned to one of these three categories. The value
                     new-each-time="no" means the function is deterministic; the value
                     new-each-time="yes" means it is proactive; and the value
                     new-each-time="maybe" means it is elidable.
The definition of determinismFO requires a definition of what it means for a function to be called twice with “the same” arguments and to return “the same” result. This is defined in [Functions and Operators 4.0], specifically by the definition of the term identicalFO.
Processors have considerable freedom to optimize execution of stylesheets, and of
                  function calls in particular, but the strategies that are adopted must respect the
                  specification as to whether functions are deterministic, proactive, or elidable.
                  For example, consider a function call that appears within an
                     xsl:for-each instruction, where the supplied arguments to the
                  function do not depend on the context item or on any variables declared within the
                     xsl:for-each instruction. A possible optimization is to
                  execute the function call only once, rather than executing it repeatedly each time
                  round the loop (this is sometimes called loop-lifting). This optimization is safe
                  when the function is deterministic or elidable, but it requires great care if the
                  function is proactive; it is permitted only if the processor is able to determine
                  that the results of stylesheet execution are equivalent to the results that would
                  be obtained if the optimization had not been performed. Declaring a function call
                  to be elidable (by writing new-each-time="maybe") makes it more
                  likely that an implementation will be able to apply this optimization, as well as
                  other optimizations such as caching or memoization.
The cache attribute is an optimization hint which the processor can
                  use or ignore at its discretion; however it should be taken
                  seriously, because it may make a difference to whether execution of a stylesheet
                  is practically feasible or not.
The default value is cache="no".
The value cache="yes" encourages the processor to retain memory of
                     previous calls of this function
                  during the same transformation and to reuse results from this memory whenever
                  possible. The default value cache="no" encourages the
                  processor not to retain memory of previous calls.
In all cases the results must respect the semantics. If a function is proactive
                     (new-each-time="yes") then caching of results may be infeasible,
                  especially if the function result can include nodes; but it is not an error to
                  request it, since some implementations may be able to provide caching, or
                  analogous optimizations, even for proactive functions. (One possible strategy is
                  to return a copy of the cached result, thus creating the illusion that the
                  function has been evaluated anew.)
Note:
Memoization is essentially a trade-off between time and space; a memoized function can be expected to use more memory to deliver faster execution. Achieving an optimum balance may require configuring the size of the cache that is used; implementations may use additional extension attributes or other mechanisms to provide finer control of this kind.
Note:
Memoization of a function generally involves creating an associative table (for
                     example, a hash map) that maps argument values to function results. To get this
                     right, it is vital that the key for this table should correctly reflect what it
                     means for two function calls to have “the same arguments”. Does it matter, for
                     example, that one call passes the xs:string value "Paris", while
                     another passes the xs:untypedAtomic item "Paris"? If the function
                     is declared with new-each-time="maybe", then the rules say that
                     these cannot be treated as “the same arguments”: the definition of 
                     identicalFO requires them to have the same type
                     as well as being equal. However, an implementation that is able to determine
                     that all references to the argument within the function body only make use of
                     its string value might be able to take advantage of this fact, and thus perform
                     more efficient caching.
The following example creates a recursive stylesheet function named str:reverse that reverses
                     the words in a supplied sentence, and then invokes this function from within a
                        template rule. 
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:str="http://example.com/namespace" version="3.0" expand-text="yes" exclude-result-prefixes="str"> <xsl:function name="str:reverse" as="string"> <xsl:param name="sentence" as="string"/> <xsl:if test="contains($sentence, ' ')" then="str:reverse(substring-after($sentence, ' ')) || ' ' || substring-before($sentence, ' ')" else="$sentence"/> </xsl:function> <xsl:template match="/"> <output>{str:reverse('DOG BITES MAN')}</output> </xsl:template> </xsl:transform>
The following example illustrates the use of the as attribute in a
                     function definition. It returns a string containing the representation of its
                     integer argument, expressed as a roman numeral. For example, the function call
                        num:roman(7) will return the string "vii". This
                     example uses the xsl:number instruction, described in 
                     12 Numbering. The xsl:number instruction returns a text
                     node, and the coercion rules are invoked to convert this text node to the type declared
                     in the xsl:function element, namely xs:string. So
                     the text node is atomized to a
                     string.
<xsl:function name="num:roman" as="xs:string"> <xsl:param name="value" as="xs:integer"/> <xsl:number value="$value" format="i"/> </xsl:function>
XPath 3.0 introduces the ability to pass function items as arguments to a function. A function that takes function items as arguments is known as a higher-order function.
The following example is a higher-order function that operates on any tree-structured data, for example an organization chart. Given as input a function that finds the direct subordinates of a node in this tree structure (for example, the direct reports of a manager, or the geographical subdivisions of an administrative area), it determines whether one object is present in the subtree rooted at another object (for example, whether one person is among the staff managed directly or indirectly by a manager, or whether one parcel of land is contained directly or indirectly within another parcel). The function does not check for cycles in the data.
<xsl:function name="f:is-subordinate" as="xs:boolean"> <xsl:param name="superior" as="node()"/> <xsl:param name="subordinate" as="node()"/> <xsl:param name="get-direct-children" as="fn(node()) as node()*"/> <xsl:select> some $sub in $get-direct-children($superior) satisfies ($sub is $subordinate or f:is-subordinate($sub, $subordinate, $get-direct-children)) </xsl:select> </xsl:function>
(This example is written to use the xsl:select instruction,
                  newly introduced in XSLT 4.0, to compute the function result.)
Given source data representing an organization chart in the form of elements such as:
<employee id="P57832" manager="P68951"/>
the following function can be defined to get the direct reports of a manager:
<xsl:function name="f:direct-reports" as="element(employee)*"> <xsl:param name="manager" as="element(employee)"/> <xsl:sequence select="$manager/../employee [@manager = $manager/@id]"/> </xsl:function>
It is then possible to test whether one employee $E reports
                     directly or indirectly to another employee $M by means of the
                     function call:
f:is-subordinate($M, $E, f:direct-reports#1)
The two instructions described in this section, xsl:sequence
            and xsl:select, can be used to evaluate XPath expressions that
            are statically known: that is, the XPath expressions are statically processed
            during the static processing of the stylesheet, and are dynamically evaluated
            during the dynamic evaluation of the stylesheet. The xsl:sequence
            instruction can also be used to evaluate a sequence constructor.
xsl:sequence Instruction
                  An as attribute is available on the xsl:sequence instruction.
                 [Issue 46 PR 1306 27 June 2024]
<!-- Category: instruction -->
<xsl:sequence
  select? = expression
  as? = sequence-type〔'item()*'〕 >
  <!-- Content: sequence-constructor -->
</xsl:sequence>
The xsl:sequence instruction may be used within a sequence constructor to construct a
               sequence of nodes, atomic items, and/or function
                  items. This sequence is returned as the result of the instruction. Unlike
               most other instructions, xsl:sequence can return a sequence
               containing existing nodes, rather than constructing new nodes. When
                  xsl:sequence is used to select atomic items or function items, the effect is very similar to the
                  xsl:copy-of instruction.
The select attribute and the contained sequence constructor
               are mutually exclusive; if the instruction
               has a select attribute, then it must have no children
               other than xsl:fallback instructions. If there is no
               select attribute and no contained sequence constructor, 
               the result is an empty sequence. 
            
The effect of the instruction is as follows:
Evaluate the expression in the select attribute if present, 
                  or the contained sequence constructor otherwise. Call the result T.
Use the coercion rules to convert T to the sequence
               type appearing in the as attribute, defaulting to item()*.
               The converted result is the value returned by the xsl:sequence
               instruction.
               [ERR XTSE3185] For the elements xsl:sequence, xsl:on-empty,
                     xsl:on-non-empty, xsl:when,
                     xsl:otherwise, xsl:matching-substring,
                     xsl:non-matching-substring, xsl:map,
                     xsl:map-entry, xsl:array,
                     xsl:array-member, and xsl:result-document,
                     it is a static error if the
                        select attribute is present
                     and the instruction has children other than xsl:fallback.
            
Note:
The xsl:sequence instruction was first introduced in XSLT 2.0, so the xsl:fallback
               instruction is relevant only to an XSLT 1.0 processor operating in forwards compatibility mode.
An XSLT 2.0 or 3.0 processor operating in forwards compatibility mode will ignore the @as
               attribute.
Note:
The xsl:sequence instruction is most commonly used as the final instruction
            in the body of xsl:function, to compute the result of the function. If the result
            is a single item, consider writing <xsl:sequence select="..." as="item()"/> to
            make this clear to the reader.
Note:
The main use case for allowing xsl:sequence to contain a sequence
                  constructor is to allow the instructions within an xsl:fork
                  element to be divided into groups.
It can also be used to limit the scope of local variables or of standard
                  attributes such as [xsl:]default-collation.
The following code:
<xsl:variable name="values" as="xs:integer*"> <xsl:sequence select="(1,2,3,4)"/> <xsl:sequence select="(8,9,10)"/> </xsl:variable> <xsl:value-of select="sum($values)"/>
produces the output: 37
               
The following code constructs a sequence containing the value of the
                     @price attribute for selected elements, 
                  or a computed price for those elements that
                  have no @price attribute:
<xsl:variable name="prices" as="xs:decimal*"> <xsl:for-each select="//product"> <xsl:sequence select="@price otherwise @cost * 1.5" as="xs:decimal"/> </xsl:for-each> </xsl:variable>
Note that the existing @price attributes could equally have been
                  added to the $prices sequence using xsl:copy-of or
                     xsl:value-of. However, xsl:copy-of would
                  create a copy of the attribute node, which is not needed in this situation, while
                     xsl:value-of would create a new text node, which then has to
                  be converted to an xs:decimal. Using xsl:sequence,
                  which in this case atomizes the existing attribute node and adds an
                     xs:decimal atomic item to the result sequence, is a more direct
                  way of achieving the same result.
This example could alternatively be solved at the XPath level:
<xsl:sequence select="//product/(+@price otherwise @cost*1.5))"/>
or, in XSLT 4.0:
<xsl:select>//product/(+@price otherwise @cost*1.5))</xsl:select>
The apparently redundant + operator is there to atomize the attribute
                  value: the expression on the right hand side of the / operator must
                  not return a  sequence containing both nodes and
                     non-nodes (atomic items or function items).
xsl:select Instruction
                  The xsl:select instruction is new in 4.0.
                 [Issue 2004 PR 2008 20 May 2025]
<!-- Category: instruction -->
<xsl:select
  as? = sequence-type〔'item()*'〕 >
  <!-- Content: (xsl:fallback*#PCDATA) -->
</xsl:select>
The xsl:select instruction evaluates an XPath expression contained as a child node
            of the instruction. For example, the instruction:
<xsl:select as="map(*)"> { "title" : $title, "author" : $author } </xsl:select>
evaluates the contained XPath expression, in the current static and dynamic context, and returns (in this example) a map with two entries.
While the xsl:sequence instruction (with a select 
               attribute) can also be used to evaluate
            an arbitrary XPath expression and return its result, the xsl:select
            instruction offers some potential advantages:
An XPath expression written within an XML attribute is subjected by the XML parser to attribute value normalization, which changes the arrangement of whitespace within the value. While this will rarely affect the actual meaning of the expression, it can mean that formatting is lost. Multi-line attribute values are therefore best avoided. The loss of formatting also makes it difficult for an XSLT processor to provide precise error locations.
When an XPath expression appears in an attribute value, then one of the
               characters U+0022 (QUOTATION MARK, ")  or U+0027 (APOSTROPHE, ')  becomes unavailable for use
               with the expression, unless written as " or '
               respectively. When an expression is written within a text node, this problem does not
               arise, and both characters can be used without escaping.
The content of the xsl:select instruction can be written
               as a CDATA section, allowing operators such as < and <=
               to be written without escaping.
The instruction name xsl:sequence can easily
               confuse people reading the code in cases where the intent is to return a single
               item.
With the increasing richness of the XPath language, expressions of ten or twenty lines become increasingly common, and this instruction makes such expressions more manageable. This often arises when constructing maps and arrays designed to be serialized as JSON. For example, a function might be defined that takes an element node as input and constructs a map containing selected information:
<xsl:function name="f:book-to-json" as="map(*)"> <xsl:param name="book" as="element(book)"> <xsl:select> { "title" : string($book/title), "isbn" : string($book/isbn), "price" : number($book/@price), "author" : array { $book/author ! string() }, "date" : current-date()" } </xsl:select> </xsl:function>
Any xsl:fallback child instructions will be ignored by an 
            XSLT 4.0 processor, but will be evaluated by an XSLT 3.0 or earlier processor running
            in forwards compatible mode. An xsl:fallback instruction may be preceded
            by a text node consisting entirely of whitespace, but must not be preceded by a text node
            containing non-whitespace characters. The XPath expression to be evaluated is therefore
            contained in the last text node child. (XML comments, processing instructions, and 
            xsl:note elements will already have been removed.)
The effect of the xsl:select instruction is as follows:
Let E be the string value of the last text node child of the instruction, if any.
If E is absent, zero-length, or consists entirely of whitespace, then let V be the empty sequence.
Otherwise, let V be the result of evaluating E as an XPath expression in the current static and dynamic context.
The result of the xsl:select
               instruction is the result of using the coercion rules to convert V
                  to the type appearing in the as attribute, 
                  defaulting to item()*.
Note:
The text node cannot contain text value templates.
Note:
The xsl:select instruction requires the XPath expression to
            be known statically (though it can refer to variables whose value is dynamic). The 
            xsl:evaluate instruction, by contrast, can be used to evaluate
            XPath expressions that are constructed dynamically or read from an external document.
            The xsl:evaluate instruction is described in the next section.
Note:
Many instructions take their input either from an XPath expression
            contained in a select attribute, or from a sequence constructor
            forming the content of the instruction, the two options being mutually exclusive. 
            Instructions that follow this pattern
            include xsl:break, xsl:on-completion, xsl:catch,
            xsl:on-empty, xsl:when, xsl:attribute,
            and many others. In most of these cases, writing an XPath expression within
            a child xsl:select element is equivalent to writing the same expression
            with a select attribute. However, there are a few subtle differences,
            for example in the case of xsl:attribute, xsl:text, and xsl:value-of,
            the default separator is different (a single space when a select attribute is used, a zero-length
            string for a sequence constructor comprising an xsl:select instruction).
<!-- Category: instruction -->
<xsl:evaluate
  xpath = expression
  as? = sequence-type〔'item()*'〕
  base-uri? = { uri }
  with-params? = expression
  context-item? = expression
  namespace-context? = expression
  schema-aware? = { boolean }〔'no'〕 >
  <!-- Content: (xsl:with-param | xsl:fallback)* -->
</xsl:evaluate>
The xsl:evaluate instruction constructs an XPath expression in the
               form of a string, evaluates the expression in a specified context, and returns the
               result of the evaluation.
The expression given as the value of the xpath attribute is evaluated
               and the result is converted to a string using the coercion rules.
[Definition: The string that results
                  from evaluating the expression in the xpath attribute is referred to
                  as the target expression.]
[ERR XTDE3160] It is a dynamic error if the target expression is not a valid expression (that is, if a static error occurs when analyzing the string according to the rules of the XPath specification).
The as attribute, if present, indicates the required type of the result.
               If the attribute is absent, the required type is item()*, which allows
               any result. The result of evaluating the target
                  expression is converted to the required type using the coercion rules. This may
               cause a type error if conversion is not
               possible. The result after conversion is returned as the result of the
                  xsl:evaluate instruction.
The target expression may contain variable references; the values
               of such variables may be supplied using an xsl:with-param child
               instruction if the names of the variables are known statically, or using a map
               supplied as the value of the expression in the with-params attribute if
               the names are only known dynamically. If the with-params attribute is
               present then it must contain an expression whose value, when evaluated, is of type
                  map(xs:QName, item()*) (see 21 Maps for details of
               maps).
               [ERR XTTE3165] It is a type error if the
                     result of evaluating the expression in the with-params
                     attribute of the xsl:evaluate instruction is
                     anything other than a single map of type
                     map(xs:QName, item()*).
            
The static contextXP for the target expression is as follows:
XPath 1.0 compatibility mode is false.
Statically known namespaces and default namespaces for elements and for types:
if the namespace-context attribute is present, then its
                              value is an expression whose
                              required type is a single node. The expression is evaluated, and the
                              in-scope namespaces of the resulting node are used as the statically
                              known namespaces for the target expression. The binding for the
                              default namespace in the in-scope namespaces is used as the default
                              namespace for both
                              elements and types in the target expression.
                              [ERR XTTE3170] It is a type error if the
                                    result of evaluating the namespace-context
                                    attribute of the xsl:evaluate instruction is
                                    anything other than a single node.
                           
if the namespace-context attribute is absent, then the
                              applicable static namespaces of the xsl:evaluate instruction
                              (with the exception of any binding for the default namespace) are used
                              as the statically known namespaces for the target expression, and the
                              value of the attribute [xsl:]xpath-default-namespace,
                              if present, is used to establish the default namespace for elements and
                              types in the target expression, as described in 5.1.2 Unprefixed Lexical QNames in Expressions and Patterns.
Note:
XPath 3.0 allows expanded names to be written in a context-independent
                           way using the syntax Q{namespace-uri}local-name
Default function namespace: the standard function namespace.
In-scope schema definitions: if the schema-aware attribute is
                        present and has the effective
                           value
                        yes, then the in-scope schema definitions from the stylesheet
                        context of the xsl:evaluate instruction (that is, 
                        the schema definitions imported using
                           xsl:import-schema, taking into account any [xsl:]schema-role
                        on the xsl:evaluate instruction or on any of its ancestors). 
                        Otherwise, the built-in types (see
                           3.14 Built-in Types).
Note:
If the containing stylesheet does not import a schema, then the in-scope schema definitions
                        for the target expression will be an empty set, regardless of the value
                        of the schema-aware attribute.
In-scope variables: the names of the in-scope variables
                        are the union of the names appearing in the name attribute of
                        the contained xsl:with-param elements, and the names
                        present as keys in the map obtained by evaluating the
                           with-params attribute, if present. The corresponding type is
                           item()* in the case of a name found as a key in the
                           with-params map, or the type named in the as
                        attribute of xsl:with-param child (defaulting to
                           item()*) otherwise.
If a variable name is present both the static
                           xsl:with-param children and also in the dynamic
                           with-params map, the value from the latter takes
                        precedence.
Note:
Variables declared in the stylesheet in xsl:variable or
                              xsl:param elements are not in-scope
                           within the target expression.
Function signatures:
All functions defined in [Functions and Operators 4.0] in the
                           fn and math, map, and array namespaces;
Constructor functions for named simple types included in the in-scope schema definitions;
All user-defined functions present in the containing package provided their visibility is
                           not hidden or private;
An implementation-defined set of extension functions.
Note that this set deliberately excludes XSLT-defined functions in the
                           standard function
                           namespace including for example, key,
                           current-group, and
                           system-property. A list of these functions is in
                           G.2 List of XSLT-defined functions.
Statically known collations: the same as the collations available at this point in the stylesheet.
Default collation: the same as the default collation defined at this point
                        in the stylesheet (for example, by use of the
                           [xsl:]default-collation attribute)
Base URI: if the base-uri attribute is present, then its
                           effective value; otherwise,
                        the base URI of the xsl:evaluate instruction.
The dynamic context for evaluation of the target expression is as follows:
The context valueXP depends on the result of evaluating the
                        expression in the context-item attribute. If this attribute is
                        absent then the context value,
                        position, and size for evaluation of the target expression are all absent. 
                        If the attribute is present then the result of evaluating the expression
                        is used as the context valueXP, and the context position
                        and context size are both set to 1 (one).
Note:
The attribute name context-item is a misnomer; it reflects the fact
                     that in XSLT 3.0, the supplied expression was required to return a single item, rather than
                     an arbitrary sequence.
The variable values consists of the values
                        bound to parameters defined either in the contained
                           xsl:with-param elements, which are evaluated as
                        described in 9.3 Values of Variables and Parameters, or in the map that results
                        from evaluation of the expression in the with-params attribute;
                        if the same QName is bound in both, the value in the
                           with-params map takes precedence.
The XSLT-specific aspects of the dynamic context described in 5.3.4 Additional Dynamic Context Components used by XSLT are all absent.
The dynamically known function definitionsXP
                        (representing the functions accessible using function-available or function-lookup)
                        include all the functions available in the static context, and may also include an additional 
                        implementation-defined set of functions that are available dynamically but not statically.
                     
All other aspects of the dynamic context are the same as the dynamic context
                        for the xsl:evaluate instruction itself, except that an implementation may restrict
                           the availability of external resources (for example, available documents)
                           or provide options to restrict their availability, for security
                           reasons.
Note:
For example, a processor may disallow access using the
                              doc or collection functions
                           to documents in local filestore.
xsl:evaluate instructionThe XPath expression is evaluated in the same execution scopeFO as the calling XSLT transformation; this
                  means that the results of deterministicFO functions such as doc or
                     current-dateTime will be consistent between the calling
                  stylesheet and the called XPath expression.
It is a dynamic error if evaluation of the XPath expression fails with a dynamic error. The XPath-defined error code is used unchanged.
Note:
Implementations wanting to avoid the cost of repeated compilation of the same XPath expression should cache the compiled form internally.
Stylesheet authors need to be aware of the security risks
                  associated with the use of xsl:evaluate. The instruction should
                  not be used to execute code from an untrusted source. To avoid the risk of code
                  injection, user-supplied data should never be inserted into the expression using
                  string concatenation, but should always be referenced by use of parameters.
xsl:evaluate as an optional featureThe xsl:evaluate instruction was first introduced in XSLT 3.0. It
                  is part of the dynamic evaluation feature, which is an optional feature of the
                  specification (see 27.6 Dynamic Evaluation Feature). An XSLT 4.0
                  processor may disable the feature, or allow users to disable
                  the feature. The processor may be able to determine during
                  static analysis whether or not the feature is available, or it
                     may only be able to determine this during dynamic
                  evaluation. In the first case we refer to the feature being statically
                     disabled, in the second case to it being dynamically
                     disabled.
If the feature is statically disabled, then:
A call to element-available('xsl:evaluate') returns false,
                        wherever it appears;
A call to system-property('xsl:supports-dynamic-evaluation')
                        returns the string "no", wherever it appears;
If an xsl:evaluate instruction has an
                           xsl:fallback child, fallback processing takes place;
No static error is raised if an xsl:evaluate instruction is
                        present in the stylesheet (an error occurs only if it is actually
                        evaluated).
If the feature is dynamically disabled, then:
A call to element-available('xsl:evaluate') appearing in a
                           static expression (for
                        example, in an [xsl:]use-when attribute) returns true;
A call to element-available('xsl:evaluate') appearing anywhere
                        else returns false;
A call to system-property('xsl:supports-dynamic-evaluation')
                        appearing in a static
                           expression (for example, in an [xsl:]use-when
                        attribute) returns the string "yes";
A call to system-property('xsl:supports-dynamic-evaluation')
                        appearing anywhere else returns the string "no";
If an xsl:evaluate instruction has an
                           xsl:fallback child, fallback processing takes place;
In the absence of an xsl:fallback child, a dynamic error is
                        raised if an xsl:evaluate instruction is evaluated. The
                        dynamic error may be caught using xsl:try and
                           xsl:catch.
If a processor supports the dynamic evaluation feature, it is implementation-defined how the processor allows users to disable dynamic evaluation and it is implementation-defined whether the mechanism is static or dynamic.
[ERR XTDE3175] It is a dynamic error if an
                           xsl:evaluate instruction is evaluated when use of
                           xsl:evaluate has been statically or dynamically
                        disabled. 
In consequence of these rules, the recommended approach for stylesheet authors to
                  write code that works whether or not xsl:evaluate is enabled is
                  to use an xsl:fallback child instruction. For example:
<xsl:variable name="isValid" as="xs:boolean"> <xsl:evaluate xpath="$validityCondition"> <xsl:fallback><xsl:sequence select="true()"/></xsl:fallback> </xsl:evaluate> </xsl:variable>
Note:
There may be circumstances where it is inappropriate to allow use of
                        xsl:evaluate. For example:
There may be security risks associated with the ability to execute code from an untrusted source, which cannot be inspected during static analysis.
There may be environments where the available computing resources are sufficient to enable pre-compiled stylesheets to be executed, but not to enable XPath expressions to be compiled into executable code.
 Processors that implement xsl:evaluate should provide
                     mechanisms allowing calls on xsl:evaluate to be disabled.
                     Implementations may disable the feature by default, and they may disable it
                     unconditionally. 
xsl:evaluateA common requirement is to sort a table on the value of an expression which is selected at run-time, perhaps by supplying the expression as a string-valued parameter to the stylesheet. Suppose that such an expression is supplied to the parameter:
<xsl:param name="sortkey" as="xs:string" select="'@name'"/>
Then the data may be sorted as follows:
<xsl:sort> <xsl:evaluate xpath="$sortkey" as="xs:string" context-item="."/> </xsl:sort>
Note the importance in this use case of caching the compiled expression, since it is evaluated repeatedly, once for each item in the list being sorted.
If the function-lookup function were not available
                     in the standard library, then a very similar function could be implemented like this:
<xsl:function name="f:function-lookup"> <xsl:param name="name" as="xs:QName"/> <xsl:param name="arity" as="xs:integer"/> <xsl:try> <xsl:evaluate xpath="'Q{' || namespace-uri-from-QName($name) || '}' || local-name-from-QName($name) || '#' || $arity"> <xsl:with-param name="name" as="xs:QName" select="$name"/> <xsl:with-param name="arity" as="xs:integer" select="$arity"/> </xsl:evaluate> <xsl:catch errors="err:XTDE3160" select="()"/> </xsl:try> </xsl:function>
Note:
The main difference between this function and the standard function-lookup
                     function is that there are differences in the functions that are visible: for example function-lookup
                  gives access to user-defined functions with private visibility, whereas xsl:evaluate does not.
The xsl:evaluate instruction uses the supplied QName and arity
                     to construct an expression of the form
                     Q{namespace-uri}local#arity, which is then evaluated to return a
                     function item representing the requested function.
This section describes instructions that directly create new nodes.
[Definition: In a sequence constructor, an element in the stylesheet that does not belong to the XSLT namespace and that is not an extension instruction (see 24.2 Extension Instructions) is classified as a literal result element.] A literal result element is evaluated to construct a new element node with the same expanded QName (that is, the same namespace URI, local name, and namespace prefix). The result of evaluating a literal result element is a node sequence containing one element, the newly constructed element node.
The content of the element is a sequence constructor (see 5.7 Sequence Constructors). The sequence obtained by evaluating this sequence constructor, after prepending any attribute nodes produced as described in 11.1.2 Attribute Nodes for Literal Result Elements and namespace nodes produced as described in 11.1.3 Namespace Nodes for Literal Result Elements, is used to construct the content of the element, following the rules in 5.7.1 Constructing Complex Content
The base URI of the new element is copied from the base URI of the literal result
               element in the stylesheet, unless the content of the new element includes an
                  xml:base attribute, in which case the base URI of the new element is
               the value of that attribute, resolved (if it is a relative URI reference) against the base URI of the literal result element in
               the stylesheet. (Note, however, that this is only relevant when creating a parentless
               element. When the literal result element is copied to form a child of an element or
               document node, the base URI of the new copy is taken from that of its new
               parent.)
The attributes xsl:type and xsl:validation may be used
                  on a literal result element to invoke validation of the contents of the element
                  against a type definition or element declaration in a schema, and to determine the
                     type annotation that the new element node will carry. These
                  attributes also affect the type annotation carried by any elements and attributes
                  that have the new element node as an ancestor. These two attributes are both
                  optional, and if one is specified then the other must be
                  omitted.
The value of the xsl:validation attribute, if present, must be one of
                  the values strict, lax, preserve, or
                     strip. The value of the xsl:type attribute, if
                  present, must be an EQName identifying a type definition that is present in
                  the in-scope schema
                     components for the stylesheet. Neither attribute may be specified as
                  an attribute value template.
                  The effect of these attributes is described in 25.4 Validation.
Attribute nodes for a literal result element may be created by including
                     xsl:attribute instructions within the sequence constructor. Additionally,
                  attribute nodes are created corresponding to the attributes of the literal result
                  element in the stylesheet, and as a result of expanding the
                     xsl:use-attribute-sets attribute of the literal result element, if
                  present.
The sequence that is used to construct the content of the literal result element (as described in 5.7.1 Constructing Complex Content) is the concatenation of the following four sequences, in order:
The sequence of namespace nodes produced as described in 11.1.3 Namespace Nodes for Literal Result Elements.
The sequence of attribute nodes produced by expanding the
                           xsl:use-attribute-sets attribute (if present) following the
                        rules given in 10.2 Named Attribute Sets
                     
The attributes produced by processing the attributes of the literal result element itself, other than attributes in the XSLT namespace. The way these are processed is described below.
The sequence produced by evaluating the contained sequence constructor, if the element is not empty.
Note:
The significance of this order is that an attribute produced by an
                        xsl:attribute, xsl:copy, or
                        xsl:copy-of instruction in the content of the literal
                     result element takes precedence over an attribute produced by expanding an
                     attribute of the literal result element itself, which in turn takes precedence
                     over an attribute produced by expanding the xsl:use-attribute-sets
                     attribute. This is because of the rules in 5.7.1 Constructing Complex Content, which specify that when two or more
                     attributes in the sequence have the same name, all but the last of the
                     duplicates are discarded.
Although the above rules place namespace nodes before attributes, this is not strictly necessary, because the rules in 5.7.1 Constructing Complex Content allow the namespaces and attributes to appear in any order so long as both come before other kinds of node. The order of namespace nodes and attribute nodes in the sequence has no effect on the relative position of the nodes in document order once they are added to a tree.
Each attribute of the literal result element, other than an attribute in the XSLT namespace, is processed to produce an attribute for the element in the result tree.
The value of such an attribute is interpreted as an attribute value template: it can
                  therefore contain expressions contained in
                  curly brackets ({}). The new attribute node will have the same
                     expanded QName (that is, the same
                  namespace URI, local name, and namespace prefix) as the attribute in the
                  stylesheet tree, and its string value
                  will be the same as the effective
                     value of the attribute in the stylesheet tree. The type annotation on the attribute will
                  initially be xs:untypedAtomic, and the typed value of the attribute node will be the same as its string value.
Note:
The eventual type annotation of the attribute in the
                        result tree depends on the
                        xsl:validation and xsl:type attributes of the
                     parent literal result element, and on the instructions used to create its
                     ancestor elements. If the xsl:validation attribute is set to
                        preserve or strip, the type annotation will be
                        xs:untypedAtomic, and the typed
                        value of the attribute node will be the same as its string value. If the
                        xsl:validation attribute is set to strict or
                        lax, or if the xsl:type attribute is used, the
                     type annotation on the attribute will be set as a result of the schema
                     validation process applied to the parent element. If neither attribute is
                     present, the type annotation on the attribute will be
                        xs:untypedAtomic.
If the name of a constructed attribute is xml:id, the processor must
                  perform attribute value normalization by effectively applying the
                     normalize-space function to the value of the attribute,
                  and the resulting attribute node must be given the is-id
                  property.
Note:
 If the attribute name is xml:space, it is not an
                     error when the value is something other than default or
                        preserve. Although the XML specification states that other
                     values are erroneous, a document containing such values is well-formed; if
                     erroneous values are to be rejected, schema validation should be used. 
Note:
The xml:base, xml:lang, xml:space, and
                        xml:id attributes have two effects in XSLT. They behave as
                     standard XSLT attributes, which means for example that if they appear on a
                     literal result element, they will be copied to the result tree in the same way as any other
                     attribute. In addition, they have their standard meaning as defined in the core
                     XML specifications. Thus, an xml:base attribute in the stylesheet
                     affects the base URI of the element on which it appears, and an
                        xml:space attribute affects the interpretation of whitespace text nodes within that
                     element. One consequence of this is that it is inadvisable to write these
                     attributes as attribute value templates: although an XSLT processor will
                     understand this notation, the XML parser will not. See also 11.1.4 Namespace Aliasing which describes how to use
                        xsl:namespace-alias with these attributes.
The same is true of the schema-defined attributes xsi:type,
                        xsi:nil, xsi:noNamespaceSchemaLocation, and
                        xsi:schemaLocation. If the stylesheet is processed by a schema
                     processor, these attributes will be recognized and interpreted by the schema
                     processor, but in addition the XSLT processor treats them like any other
                     attribute on a literal result element: that is, their effective value (after expanding attribute value templates) is
                     copied to the result tree in the same way as any other attribute. If the
                        result tree is validated, the copied
                     attributes will again be recognized and interpreted by the schema
                     processor.
None of these attributes will be generated in the result tree unless the stylesheet writes them to the result tree explicitly, in the same way as any other attribute.
[ERR XTSE0805] It is a static error if an attribute on a literal result element is in the XSLT namespace, unless it is one of the attributes explicitly defined in this specification.
Note:
If there is a need to create attributes in the XSLT namespace, this can be
                     achieved using xsl:attribute, or by means of the
                        xsl:namespace-alias declaration.
The created element node will have a copy of the namespace nodes that were present on the element node in the stylesheet tree with the exception of any namespace node whose string value is designated as an excluded namespace. Special considerations apply to aliased namespaces: see 11.1.4 Namespace Aliasing.
The following namespaces are designated as excluded namespaces:
The XSLT namespace URI
                           (http://www.w3.org/1999/XSL/Transform)
A namespace URI declared as an extension namespace (see 24.2 Extension Instructions)
A namespace URI designated by using an
                           [xsl:]exclude-result-prefixes attribute either on the
                        literal result element itself or on an ancestor element. The attribute
                           must be in the XSLT namespace only if its parent
                        element is not in the XSLT namespace.
The value of the attribute is either #all, or a
                        whitespace-separated list of tokens, each of which is either a namespace
                        prefix or #default. The namespace bound to each of the prefixes
                        is designated as an excluded namespace.
                        [ERR XTSE0808] It is a static error if a
                              namespace prefix is used within the
                                 [xsl:]exclude-result-prefixes attribute and there is
                              no namespace binding in scope for that prefix.
                     
Note:
The prefix must be declared in a native namespace binding, not in a fixed namespace binding.
The default namespace of the parent element of the
                           [xsl:]exclude-result-prefixes attribute (see [XDM 4.0] section 7.5.2 Element nodes) may be designated as an excluded
                        namespace by including #default in the list of namespace
                        prefixes.
                        [ERR XTSE0809] It is a static error if the
                              value #default is used within the
                                 [xsl:]exclude-result-prefixes attribute and the parent
                              element of the [xsl:]exclude-result-prefixes attribute
                              has no default namespace.
                     
The value #all indicates that all namespaces that are in scope
                        for the stylesheet element that is the parent of the
                           [xsl:]exclude-result-prefixes attribute are designated as
                        excluded namespaces.
The designation of a namespace as an excluded namespace is effective within
                        the subtree of the stylesheet module rooted at the element bearing the
                           [xsl:]exclude-result-prefixes attribute; a subtree rooted at
                        an xsl:stylesheet element does not include any stylesheet
                        modules imported or included by children of that
                           xsl:stylesheet element.
The excluded namespaces, as described above, only affect namespace
                  nodes copied from the stylesheet when processing a literal result element. There
                  is no guarantee that an excluded namespace will not appear on the result tree for some other reason. Namespace
                  nodes are also written to the result tree as part of the process of namespace
                  fixup (see 5.7.3 Namespace Fixup), or as the result of instructions
                  such as xsl:copy and xsl:element.
Note:
When a stylesheet uses a namespace declaration only for the purposes of
                     addressing a source tree, specifying
                     the prefix in the [xsl:]exclude-result-prefixes attribute will
                     avoid superfluous namespace declarations in the serialized result tree. The attribute is also useful to
                     prevent namespaces used solely for the naming of stylesheet functions or
                     extension functions from appearing in the serialized result tree.
In XSLT 4.0, a simpler approach is to declare such namespaces in a fixed-namespaces
                  attribute on the xsl:stylesheet element: see 3.7.1 The fixed-namespaces Attribute.
                     Namespace prefixes declared in that way are not eligible to be used in the names
                     of literal result elements and their attributes, and they are not copied into the 
                     result tree.
                  
Consider the following stylesheet:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:a="a.uri" xmlns:b="b.uri" exclude-result-prefixes="#all"> <xsl:template match="/"> <foo xmlns:c="c.uri" xmlns:d="d.uri" xmlns:a2="a.uri" xsl:exclude-result-prefixes="c"/> </xsl:template> </xsl:stylesheet>
The result of this stylesheet will be:
<foo xmlns:d="d.uri"/>
The namespaces a.uri and b.uri are excluded by virtue
                     of the exclude-result-prefixes attribute on the
                        xsl:stylesheet element, and the namespace
                        c.uri is excluded by virtue of the
                        xsl:exclude-result-prefixes attribute on the foo
                     element. The setting #all does not affect the namespace
                        d.uri because d.uri is not an in-scope namespace
                     for the xsl:stylesheet element. The element in the result tree does not have a namespace node
                     corresponding to xmlns:a2="a.uri" because the effect of
                        exclude-result-prefixes is to designate the namespace URI
                        a.uri as an excluded namespace, irrespective of how many
                     prefixes are bound to this namespace URI.
If the stylesheet is changed so that the literal result element has an
                     attribute b:bar="3", then the element in the result tree will typically have a namespace
                     declaration xmlns:b="b.uri" (the processor may choose a different
                     namespace prefix if this is necessary to avoid conflicts). The
                        exclude-result-prefixes attribute makes b.uri an
                     excluded namespace, so the namespace node is not automatically copied from the
                     stylesheet, but the presence of an attribute whose name is in the namespace
                        b.uri forces the namespace fixup process (see 5.7.3 Namespace Fixup) to introduce a namespace node for this
                     namespace.
A literal result element may have an optional xsl:inherit-namespaces
                  attribute, with the value yes or no. The default value
                  is yes. If the value is set to yes, or is omitted, then
                  the namespace nodes created for the newly constructed element are copied to the
                  children and descendants of the newly constructed element, as described in
                     5.7.1 Constructing Complex Content. If the value is set to
                     no, then these namespace nodes are not automatically copied to the
                  children. This may result in namespace undeclarations (such as
                     xmlns="" or, in the case of XML 1.1, xmlns:p="")
                  appearing on the child elements when they are serialized.
When a stylesheet is used to define a transformation whose output is itself a stylesheet module, or in certain other cases where the result document uses namespaces that it would be inconvenient to use in the stylesheet, namespace aliasing can be used to declare a mapping between a namespace URI used in the stylesheet and the corresponding namespace URI to be used in the result document.
[Definition: A namespace URI in the stylesheet tree that is being used to specify a namespace URI in the result tree is called a literal namespace URI.]
[Definition: The namespace URI that is to be used in the result tree as a substitute for a literal namespace URI is called the target namespace URI.]
Either of the literal namespace URI or the target namespace URI can be null: this is treated as a reference to the set of names that are in no namespace.
<!-- Category: declaration -->
<xsl:namespace-alias
  stylesheet-prefix = prefix | "#default"
  result-prefix = prefix | "#default" />
                  [Definition: A stylesheet can use the
                        xsl:namespace-alias element to declare that a literal namespace URI is being used
                     as an alias for a target
                        namespace URI.]
               
The effect is that when names in the namespace identified by the literal namespace URI are copied to the result tree, the namespace URI in the result tree will be the target namespace URI, instead of the literal namespace URI. This applies to:
the namespace URI in the expanded QName of a literal result element in the stylesheet
the namespace URI in the expanded QName of an attribute specified on a literal result element in the stylesheet
The effect of an xsl:namespace-alias
                  declaration is local to the package in which
                  it appears: that is, it only affects the result of literal result elements within the
                  same package.
Where namespace aliasing changes the namespace URI part of the expanded QName containing the name of an
                  element or attribute node, the namespace prefix in that expanded QName is replaced
                  by the prefix indicated by the result-prefix attribute of the
                     xsl:namespace-alias declaration.
The xsl:namespace-alias element declares that the namespace URI
                  bound to the prefix specified by the stylesheet-prefix is the
                     literal namespace URI, and
                  the namespace URI bound to the prefix specified by the result-prefix
                  attribute is the target namespace
                     URI. Thus, the stylesheet-prefix attribute specifies the
                  namespace URI that will appear in the stylesheet, and the
                     result-prefix attribute specifies the corresponding namespace URI
                  that will appear in the result tree. 
Note:
It is the native namespace bindings that apply,
                  not the fixed namespace bindings. More specifically: if a prefix p
               appears in the stylesheet-prefix or result-prefix attribute,
               there must be an in-scope namespace declaration of the form xmlns:p="....";
               it is not sufficient to declare the namespace in the fixed-namespaces
               attribute of the xsl:stylesheet element.
The default namespace (as declared by xmlns) may be specified by
                  using #default instead of a prefix. If no default namespace is in
                  force, specifying #default denotes the null namespace URI. This
                  allows elements that are in no namespace in the stylesheet to acquire a namespace
                  in the result document, or vice versa. 
                     Defining an alias for the null namespace URI does not affect no-namespace attributes; 
                     these remain in no namespace. However, where result-prefix="#default" is specified and 
                     no default namespace is in force, attributes whose namespace matches the literal namespace 
                     URI are renamed to be in no namespace.
                  
If a literal namespace URI is declared to be an alias for multiple different target namespace URIs, then the declaration with the highest import precedence is used.
                  [ERR XTSE0810] It is a static error if within a package there is more than one such declaration
                            with the same literal namespace URI and the
                        same import precedence and
                        different values for the target
                           namespace URI, unless there is also an
                           xsl:namespace-alias declaration with the same literal namespace URI and a
                        higher import precedence. 
               
No error occurs if there is more than one such
                     xsl:namespace-alias declaration having the same literal namespace URI and the same
                     target namespace URI, even if
                  the result-prefix differs; in this case the
                     result-prefix used is the one that appears last in declaration order. 
                  [ERR XTSE0812] It is a static error if a value
                        other than #default is specified for either the
                           stylesheet-prefix or the result-prefix
                        attributes of the xsl:namespace-alias element when there is
                        no in-scope binding for that namespace prefix.
               
When a literal result element is processed, its namespace nodes are handled as follows:
A namespace node whose string value is a literal namespace URI is not copied to the result tree.
A namespace node whose string value is a target namespace URI is copied to the result tree, whether or not the URI identifies an excluded namespace.
In the event that the same URI is used as a literal namespace URI and a target namespace URI, the second of these rules takes precedence.
Note:
These rules achieve the effect that the element generated from the literal
                     result element will have an in-scope namespace node that binds the
                        result-prefix to the target namespace URI, provided that the namespace declaration
                     associating this prefix with this URI is in scope for both the
                        xsl:namespace-alias instruction and for the literal result
                     element. Conversely, the stylesheet-prefix and the literal namespace URI will not
                     normally appear in the result tree.
When literal result elements are being used to create element, attribute, or namespace nodes that use the XSLT namespace URI, the stylesheet may use an alias.
For example, the stylesheet
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:axsl="file://namespace.alias"> <xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/> <xsl:template match="/"> <axsl:stylesheet version="3.0"> <xsl:apply-templates/> </axsl:stylesheet> </xsl:template> <xsl:template match="elements"> <axsl:template match="/"> <axsl:comment select="system-property('xsl:version')"/> <xsl:apply-templates/> </axsl:template> </xsl:template> <xsl:template match="block"> <axsl:template match="{.}"> <fo:block><axsl:apply-templates/></fo:block> </axsl:template> </xsl:template> </xsl:stylesheet>
will generate an XSLT stylesheet from a document of the form:
<elements> <block>p</block> <block>h1</block> <block>h2</block> <block>h3</block> <block>h4</block> </elements>
The output of the transformation will be a stylesheet such as the following.
                     Whitespace has been added for clarity. Note that an implementation may output
                     different namespace prefixes from those appearing in this example; however, the
                     rules guarantee that there will be a namespace node that binds the prefix
                        xsl to the URI
                        http://www.w3.org/1999/XSL/Transform, which makes it safe to
                     use the QName xsl:version in the content of the generated
                     stylesheet.
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"> <xsl:template match="/"> <xsl:comment select="system-property('xsl:version')"/> <xsl:apply-templates/> </xsl:template> <xsl:template match="p"> <fo:block><xsl:apply-templates/></fo:block> </xsl:template> <xsl:template match="h1"> <fo:block><xsl:apply-templates/></fo:block> </xsl:template> <xsl:template match="h2"> <fo:block><xsl:apply-templates/></fo:block> </xsl:template> <xsl:template match="h3"> <fo:block><xsl:apply-templates/></fo:block> </xsl:template> <xsl:template match="h4"> <fo:block><xsl:apply-templates/></fo:block> </xsl:template> </xsl:stylesheet>
Note:
It may be necessary also to use aliases for namespaces other than the XSLT
                     namespace URI. For example, it can be useful to define an alias for the
                     namespace http://www.w3.org/2001/XMLSchema-instance, so that the
                     stylesheet can use the attributes xsi:type, xsi:nil,
                     and xsi:schemaLocation on a literal result element, without
                     running the risk that a schema processor will interpret these as applying to
                     the stylesheet itself. Equally, literal result elements belonging to a
                     namespace dealing with digital signatures might cause XSLT stylesheets to be
                     mishandled by general-purpose security software; using an alias for the
                     namespace would avoid the possibility of such mishandling.
It is possible to define an alias for the XML namespace.
<xsl:stylesheet xmlns:axml="http://www.example.com/alias-xml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0"> <xsl:namespace-alias stylesheet-prefix="axml" result-prefix="xml"/> <xsl:template match="/"> <name axml:space="preserve"> <first>James</first> <xsl:text> </xsl:text> <last>Clark</last> </name> </xsl:template> </xsl:stylesheet>
produces the output:
<name xml:space="preserve"><first>James</first> <last>Clark</last></name>
This allows an xml:space attribute to be generated in the output
                     without affecting the way the stylesheet is parsed. The same technique can be
                     used for other attributes such as xml:lang, xml:base,
                     and xml:id.
Note:
Namespace aliasing is only necessary when literal result elements are used. The
                     problem of reserved namespaces does not arise when using
                        xsl:element and xsl:attribute to construct
                     the result tree. Therefore, as an
                     alternative to using xsl:namespace-alias, it is always
                     possible to achieve the desired effect by replacing literal result elements
                     with xsl:element and xsl:attribute
                     instructions.
xsl:element
                     <!-- Category: instruction -->
<xsl:element
  name = { qname }
  namespace? = { uri }
  inherit-namespaces? = boolean〔'yes'〕
  use-attribute-sets? = eqnames〔''〕
  type? = eqname
  validation? = "strict" | "lax" | "preserve" | "strip" >
  <!-- Content: sequence-constructor -->
</xsl:element>
The xsl:element instruction allows an element to be created with a
               computed name. The expanded QName of the
               element to be created is specified by a required
               name attribute and an optional namespace attribute.
The result of evaluating the xsl:element instruction, in usual circumstances, is the newly constructed
               element node.
The content of the xsl:element instruction is a sequence constructor for the children,
                  attributes, and namespaces of the created element. The sequence obtained by
                  evaluating this sequence constructor (see 5.7 Sequence Constructors)
                  is used to construct the content of the element, as described in 5.7.1 Constructing Complex Content.
The xsl:element element may have a
                     use-attribute-sets attribute, whose value is a
                  whitespace-separated list of QNames that identify
                     xsl:attribute-set declarations. If this attribute is present,
                  it is expanded as described in 10.2 Named Attribute Sets to produce a
                  sequence of attribute nodes. This sequence is prepended to the sequence produced
                  as a result of evaluating the sequence constructor, as
                  described in 5.7.1 Constructing Complex Content.
The name attribute is interpreted as an attribute value template, whose
                     effective value
                  must be a lexical
                     QName.
                  [ERR XTDE0820] It is a  dynamic error if the effective value of the
                           name attribute  is not a
                           lexical QName. 
               
                  [ERR XTDE0830] In the case of an xsl:element instruction with no
                           namespace attribute, it is a  dynamic
                           error if the effective
                           value of the name attribute is a lexical QName whose prefix is not
                        declared in the applicable static namespaces for the
                           xsl:element instruction.
               
Note:
If a fixed-namespaces attribute is present on the containing xsl:stylesheet or
               xsl:package element, then the prefix must be declared in that attribute, not in a
               native namespace binding.
If the namespace attribute is not present then the lexical QName is expanded into an expanded QName using the namespace
                  declarations in effect for the xsl:element element, including any
                  default namespace declaration.
If the namespace attribute is present, then it too is interpreted as
                  an attribute value template.
                  The effective value
                  must be in the lexical space of the xs:anyURI
                  type. If the string is zero-length, then the expanded QName of the element has a null namespace URI. Otherwise,
                  the string is used as the namespace URI of the expanded QName of the element to be created. The local part of the
                     lexical QName specified by the
                     name attribute is used as the local part of the expanded QName of the element to be
                  created.
                  [ERR XTDE0835]  It is a  dynamic error if the effective value of the
                           namespace attribute  is not in the
                        lexical space of the xs:anyURI datatype or if it is the string
                           http://www.w3.org/2000/xmlns/.
               
Note:
The XDM data model requires the name of a node to be an instance of
                        xs:QName, and XML Schema defines the namespace part of an
                        xs:QName to be an instance of xs:anyURI. However,
                     the schema specification, and the specifications that it refers to, give
                     implementations some flexibility in how strictly they enforce these
                     constraints.
The prefix of the lexical QName
                  specified in the name attribute (or the absence of a prefix) is
                  copied to the prefix part of the expanded
                     QName representing the name of the new element node. In the event of
                  a conflict a prefix may subsequently be added, changed, or removed during the
                  namespace fixup process (see 5.7.3 Namespace Fixup). The term conflict
                  here means any violation of the constraints defined in [XDM 4.0], for example the use of the same prefix to refer to
                  two different namespaces in the element and in one of its attributes, the use of
                  the prefix xml to refer to a namespace other than the XML namespace,
                  or any use of the prefix
                  xmlns.
The xsl:element instruction has an optional
                     inherit-namespaces attribute, with the value yes or
                     no. The default value is yes. If the value is set to
                     yes, or is omitted, then the namespace nodes created for the newly
                  constructed element (whether these were copied from those of the source node, or
                  generated as a result of namespace fixup) are copied to the children and
                  descendants of the newly constructed element, as described in 5.7.1 Constructing Complex Content. If the value is set to no,
                  then these namespace nodes are not automatically copied to the children. This may
                  result in namespace undeclarations (such as xmlns="" or, in the case
                  of XML Namespaces 1.1, xmlns:p="") appearing on the child elements
                  when 
                  the element is serialized.
The base URI of the new element is copied from the base URI of the
                     xsl:element instruction in the stylesheet, unless the content
                  of the new element includes an xml:base attribute, in which case the
                  base URI of the new element is the value of that attribute, resolved (if it is a
                  relative URI) against the base URI of the xsl:element instruction
                  in the stylesheet. (Note, however, that this is only relevant when creating
                  parentless elements. When the new element is copied to form a child of an element
                  or document node, the base URI of the new copy is taken from that of its new
                  parent.)
The values of the nilled,
                     is-id, and is-idrefs properties of the new element
                  depend on the type and validation attributes of the
                     xsl:element instruction, as explained in 25.4 Validation.
The optional attributes type and validation may be used
                  on the xsl:element instruction to invoke validation of the
                  contents of the element against a type definition or element declaration in a
                  schema, and to determine the type
                     annotation that the new element node will carry. These attributes
                  also affect the type annotation carried by any elements and attributes that have
                  the new element node as an ancestor. These two attributes are both optional, and
                  if one is specified then the other must be omitted. The
                  permitted values of these attributes and their semantics are described in 25.4 Validation.
Note:
The final type annotation of the element in the result tree also depends on the type and
                        validation attributes of the instructions used to create the
                     ancestors of the element.
xsl:attribute
                     <!-- Category: instruction -->
<xsl:attribute
  name = { qname }
  namespace? = { uri }
  select? = expression
  separator? = { string }
  type? = eqname
  validation? = "strict" | "lax" | "preserve" | "strip" >
  <!-- Content: sequence-constructor -->
</xsl:attribute>
The xsl:attribute element can be used to add attributes to result
               elements whether created by literal result elements in the stylesheet or by
               instructions such as xsl:element or xsl:copy. The
                  expanded QName of the attribute to be
               created is specified by a required
               name attribute and an optional namespace attribute. Except
               in error cases, the result of evaluating an xsl:attribute
               instruction is the newly constructed attribute node.
The string value of the new attribute node may be defined either by using the
                  select attribute, or by the sequence constructor that forms the content of the
                  xsl:attribute element. These are
                  mutually exclusive: if the select attribute is present then the
                  sequence constructor must be empty, and if the sequence constructor is non-empty
                  then the select attribute must be absent. If the select
                  attribute is absent and the sequence constructor is empty, then the
               string value of the new attribute node will be a zero-length string. The way in which
               the value is constructed is specified in 5.7.2 Constructing Simple Content.
               [ERR XTSE0840] It is a static error if the
                        select attribute of the xsl:attribute element
                     is present unless the element has empty content.
            
If the separator attribute is present, then the effective value of this attribute is used to
               separate adjacent items in the result sequence, as described in 5.7.2 Constructing Simple Content. In the absence of this attribute, the default
               separator is U+0020 (SPACE)  when the content is specified using the
                  select attribute, or a zero-length string when the content is
               specified using a sequence
                  constructor.
The name attribute is interpreted as an attribute value template, whose
                  effective value
               must be a lexical
               QName.
               [ERR XTDE0850] It is a  dynamic error if the effective value 
                     of the name
                     attribute  is not a lexical
                        QName.
            
               [ERR XTDE0855] In the case of an xsl:attribute instruction with no
                        namespace attribute, it is a  dynamic
                        error if the effective
                        value of the name attribute is the string
                        xmlns.
            
               [ERR XTDE0860] In the case of an xsl:attribute instruction with no
                        namespace attribute, it is a  dynamic
                        error if the effective
                        value of the name attribute is a lexical QName whose prefix is not declared
                     in the applicable static namespaces 
                     for the xsl:attribute
                     instruction.
            
Note:
If a fixed-namespaces attribute is present on the containing xsl:stylesheet or
               xsl:package element, then the prefix must be declared in that attribute, not in a
               native namespace binding.
If the namespace attribute is not present, then the lexical QName is expanded into an expanded QName using the namespace declarations
               in effect for the xsl:attribute element, not including
               any default namespace declaration.
If the namespace attribute is present, then it too is interpreted as an
                  attribute value template. The
                  effective value
               must be in the lexical space of the xs:anyURI type.
               If the string is zero-length, then the expanded
                  QName of the attribute has a null namespace URI. Otherwise, the string
               is used as the namespace URI of the expanded
                  QName of the attribute to be created. The local part of the lexical QName specified by the name
               attribute is used as the local part of the expanded
                  QName of the attribute to be created.
               [ERR XTDE0865]  It is a  dynamic error if the effective value of the
                        namespace attribute  is not in the
                     lexical space of the xs:anyURI datatype or if it is the string
                        http://www.w3.org/2000/xmlns/.
            
Note:
The same considerations apply as for elements: [see ERR XTDE0835] in 11.2 Creating Element Nodes Using xsl:element.
The prefix of the lexical QName specified
               in the name attribute (or the absence of a prefix) is copied to the
               prefix part of the expanded QName
               representing the name of the new attribute node. In the event of a conflict this
               prefix may subsequently be added, changed, or removed during the namespace fixup
               process (see 5.7.3 Namespace Fixup). If the attribute is in a non-null
               namespace and no prefix is specified, then the namespace fixup process will invent a
               prefix. The term conflict here means any violation of the constraints
               defined in [XDM 4.0], for example the use of the same prefix
               to refer to two different namespaces in the element and in one of its attributes, the
               use of the prefix xml to refer to a namespace other than the XML
               namespace, or any use of the prefix xmlns.
If the name of a constructed attribute is xml:id, the processor must
               perform attribute value normalization by effectively applying the
                  normalize-space function to the value of the attribute, and
               the resulting attribute node must be given the is-id property. This
               applies whether the attribute is constructed using the xsl:attribute
               instruction or whether it is constructed using an attribute of a literal result
               element. This does not imply any constraints on the value of the attribute, or on its
               uniqueness, and it does not affect the type
                  annotation of the attribute, unless the containing document is
               validated.
Note:
The effect of setting the is-id property is that the parent element
                  can be located within the containing document by use of the
                     id function. In effect, XSLT when constructing a
                  document performs some of the functions of an xml:id processor, as
                  defined in [xml:id]; the other aspects of xml:id
                  processing are performed during validation.
The following instruction creates the attribute colors="red green
                     blue":
<xsl:attribute name="colors" select="'red', 'green', 'blue'"/>
It is not an error to write:
<xsl:attribute name="xmlns:xsl" namespace="file://some.namespace" select="'http://www.w3.org/1999/XSL/Transform'"/>
However, this will not result in the namespace declaration
                     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" being output.
                  Instead, it will produce an attribute node with local name xsl, and
                  with a system-allocated namespace prefix mapped to the namespace URI
                     file://some.namespace. This is because the namespace fixup process
                  is not allowed to use xmlns as the name of a namespace node.
As described in 5.7.1 Constructing Complex Content, in a sequence that is used to construct the content of an element, any attribute nodes must appear in the sequence before any element, text, comment, or processing instruction nodes. Where the sequence contains two or more attribute nodes with the same expanded QName, the one that comes last is the only one that takes effect.
Note:
If a collection of attributes is generated repeatedly, this can be done conveniently by using named attribute sets: see 10.2 Named Attribute Sets
The optional attributes type and validation may be used
                  on the xsl:attribute instruction to invoke validation of the
                  contents of the attribute against a type definition or attribute declaration in a
                  schema, and to determine the type
                     annotation that the new attribute node will carry. These two
                  attributes are both optional, and if one is specified then the other
                     must be omitted. The permitted values of these attributes
                  and their semantics are described in 25.4 Validation.
The process of validation also determines the values of
                  the is-id and is-idrefs properties on the new attribute
                  node.
Note:
The final type annotation of the attribute in the result tree also depends on the
                        type and validation attributes of the instructions
                     used to create the ancestors of the attribute.
                  The xsl:text instruction can now have a select attribute,
                  and it can take a sequence constructor as its content. The only remaining distinction
                  between the xsl:text and xsl:value-of instructions
                  is that whitespace text node children of xsl:text are treated
                  as significant, rather than being stripped during stylesheet preprocessing.
                 [Issue 323 PR 2251 14 October 2025]
This section describes three different ways of creating text nodes: by means of
               literal text nodes in the stylesheet, or by using the xsl:text and
                  xsl:value-of instructions. It is also possible to create text
               nodes using the xsl:number instruction described in 12 Numbering.
If and when the sequence that results from evaluating a sequence constructor is used to form the content of a node, as described in 5.7.2 Constructing Simple Content and 5.7.1 Constructing Complex Content, adjacent text nodes in the sequence are merged. Within the sequence itself, however, they exist as distinct nodes.
The following function returns a sequence of three text nodes:
<xsl:function name="f:wrap"> <xsl:param name="s"/> <xsl:text>(</xsl:text> <xsl:value-of select="$s"/> <xsl:text>)</xsl:text> </xsl:function>
When this function is called as follows:
<xsl:value-of select="f:wrap('---')"/>
the result is:
(---)
No additional spaces are inserted, because the calling
                     xsl:value-of instruction merges adjacent text nodes before
                  atomizing the sequence. However, the result of the instruction:
<xsl:value-of select="data(f:wrap('---'))"/>
is:
( --- )
because in this case the three text nodes are atomized to form three strings, and spaces are inserted between adjacent strings.
This example reflects the traditional usage of xsl:text to output
               constant text and xsl:value-of to output variable text. In XSLT 4.0,
               however, either instruction can be used for either purpose, and in the example above
               either instruction could be replaced by the other.
It is possible to construct text nodes whose string value is zero-length. A zero-length text node, when atomized, produces a zero-length string. However, zero-length text nodes are ignored when they appear in a sequence that is used to form the content of a node, as described in 5.7.1 Constructing Complex Content and 5.7.2 Constructing Simple Content.
A sequence constructor can contain text nodes. Each text node in a sequence constructor remaining after whitespace text nodes have been stripped as specified in 3.13.1 Stripping Whitespace and Commentary from the Stylesheet will construct a new text node with the same string value. The resulting text node is added to the result of the containing sequence constructor.
Text is processed at the tree level. Thus, markup of < in a
                  template will be represented in the stylesheet tree by a text node that includes
                  the character <. This will create a text node in the result tree that contains a <
                  character, which will be represented by the markup < (or an
                  equivalent character reference) when the result tree is serialized as an XML
                  document, unless otherwise specified using character maps (see 26.3 Character Maps) or
                     disable-output-escaping (see 26.5 Disabling Output Escaping).
A non-whitespace text node in the stylesheet that is not contained within an xsl:text or
               xsl:value-of instruction is equivalent to wrapping the text node in
               xsl:text. For example:
<xsl:if test="$debug">Here I am</xsl:if>
is equivalent to:
<xsl:if test="$debug"><xsl:text>Here I am</xsl:text></xsl:if>
<!-- Category: instruction -->
<xsl:text
  select? = expression
  separator? = { string }
  [disable-output-escaping]? = boolean〔'no'〕 >
  <!-- Content: sequence-constructor -->
</xsl:text>
<!-- Category: instruction -->
<xsl:value-of
  select? = expression
  separator? = { string }
  [disable-output-escaping]? = boolean〔'no'〕 >
  <!-- Content: sequence-constructor -->
</xsl:value-of>
The xsl:text and xsl:value-ofelement 
                  have identical content models. The only differences between them are:
The xsl:text element is treated specially
                     during whitespace-stripping, as described in 3.13.1 Stripping Whitespace and Commentary from the Stylesheet.
                     Specifically, whitespace text nodes that are children of xsl:text
                     are preserved, whereas whitespace text nodes that are children of xsl:value-of
                     are discarded.
Special rules apply to xsl:value-of 
                     when the instruction is processed
                     with XSLT 1.0 behavior.
                     Specifically, if no separator attribute is present, 
                     and if the select attribute is present, then all items in the 
                     atomized result sequence 
                     other than the first are ignored.
The xsl:text or 
                  xsl:value-of instruction is evaluated to construct a new text
                  node; the result of the instruction is the newly constructed text node.
The string value of the new text node may be defined either by using the
                     select attribute, or by the 
                  sequence constructor 
                  (see 5.7 Sequence Constructors)
                  that forms the content of the xsl:text or 
                  xsl:value-of element. 
                  These are mutually exclusive: if the select
                     attribute is present then the sequence constructor must be empty, and if the
                     sequence constructor is non-empty then the select attribute must
                     be absent. If the select attribute is absent and the sequence
                     constructor is empty, then the result of the instruction is a text node whose
                     string value is zero-length. The way in which the value is constructed
                  is specified in 5.7.2 Constructing Simple Content.
                  [ERR XTSE0870] It is a static error if the
                           select attribute of the xsl:text or 
                        xsl:value-of
                        element is present when the content of the element is non-empty.
               
If the separator attribute is present, then the 
                  effective value of this attribute is used to
                  separate adjacent items in the result sequence, as described in 
                  5.7.2 Constructing Simple Content. In the absence of this attribute, the
                  default separator is U+0020 (SPACE)  when the content is specified using the
                     select attribute, or a zero-length string when the content is
                  specified using a sequence
                     constructor.
If the element or one of its ancestors has an
                     [xsl:]expand-text attribute, and the nearest ancestor with such an
                  attribute has the value yes, then any unescaped curly brackets in the
                  value of the element indicate the presence of text value templates, which are expanded
                  as described in 5.6.2 Text Value Templates.
In the absence of such an attribute, or if the
                  effective value is no, the content of the
                     xsl:text or xsl:value-of
                  instruction may comprise a single text node whose value forms the
                     string value of the constructed text node. An
                     xsl:text or xsl:value-of element 
                  may also be empty, in which case the result of
                  evaluating the instruction is a text node whose string value is the zero-length
                  string.
For the effect of the deprecated
                  disable-output-escaping attribute, see 26.5 Disabling Output Escaping
               
Note:
It is not always necessary to use the xsl:text 
                     or xsl:value-of instruction to
                     write text nodes to the result tree.
                     Literal text can be written to the result tree by including it anywhere in a
                        sequence constructor, while computed text can be output
                     using the xsl:value-of instruction. The principal reason for
                     using xsl:text is that it offers improved control over
                     whitespace handling.
Note:
Historically, xsl:value-of was used to construct
                  variable content, while xsl:text was used to copy fixed
                  text from the stylesheet to the result document. In 4.0, that distinction
                  is no longer relevant. Stylesheet authors should consider using 
                   xsl:text whenever there is a need to construct
                     text nodes, as the intent is more clearly expressed. 
                     The xsl:value-of instruction has often been misunderstood; 
                  it is a common mistake to use it where xsl:sequence or
                  xsl:copy-of is more appropriate.
<!-- Category: instruction -->
<xsl:document
  validation? = "strict" | "lax" | "preserve" | "strip"
  type? = eqname >
  <!-- Content: sequence-constructor -->
</xsl:document>
The xsl:document instruction is used to create a new document node.
               The content of the xsl:document element is a sequence constructor for the children of
               the new document node. A document node is created, and the sequence obtained by
               evaluating the sequence constructor is used to construct the content of the document,
               as described in 5.7.1 Constructing Complex Content. 
Except in error situations, the result of evaluating the
                  xsl:document instruction is a single node, the newly constructed
               document node.
Note:
The new document is not serialized. To construct a document that is to form a
                  final result rather than an intermediate result, use the
                     xsl:result-document instruction described in 25.1 Creating Secondary Results.
The optional attributes type and validation may be used on
               the xsl:document instruction to validate the contents of the new
               document, and to determine the type annotation that elements and
               attributes within the result tree will carry.
               The permitted values and their semantics are described in 25.4.2 Validating Document Nodes.
The base URI of the new document node is taken from the base URI of the
                  xsl:document instruction.
The document-uri and unparsed-entities properties of the
               new document node are set to empty.
The following example creates a temporary tree held in a variable. The use of an
                  enclosed xsl:document instruction ensures that uniqueness
                  constraints defined in the schema for the relevant elements are checked.
<xsl:variable name="tree" as="document-node()"> <xsl:document validation="strict"> <xsl:apply-templates/> </xsl:document> </xsl:variable>
<!-- Category: instruction -->
<xsl:processing-instruction
  name = { ncname }
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:processing-instruction>
The xsl:processing-instruction element is evaluated to create a
               processing instruction node.
The xsl:processing-instruction element has a
                  required
               name attribute that specifies the name of the processing instruction
               node. The value of the name attribute is interpreted as an attribute value template.
The string value of the new processing-instruction node may be defined either by
               using the select attribute, or by the sequence constructor that forms the
               content of the xsl:processing-instruction element. These are mutually exclusive: if the select
                  attribute is present then the sequence constructor must be empty, and if the
                  sequence constructor is non-empty then the select attribute must be
                  absent. If the select attribute is absent and the sequence
                  constructor is empty, then the string value of the new
               processing-instruction node will be a zero-length string. The way in which the value
               is constructed is specified in 5.7.2 Constructing Simple Content.
               [ERR XTSE0880] It is a static error if the
                        select attribute of the
                        xsl:processing-instruction element is present unless the
                     element has empty content.
            
Except in error situations, the result of evaluating the
                  xsl:processing-instruction instruction is a single node, the
               newly constructed processing instruction node.
This instruction:
<xsl:processing-instruction name="xml-stylesheet" select="('href="book.css"', 'type="text/css"')"/>
creates the processing instruction
<?xml-stylesheet href="book.css" type="text/css"?>
Note that the xml-stylesheet processing instruction contains
                     pseudo-attributes in the form name="value". Although
                  these have the same textual form as attributes in an element start tag, they are
                  not represented as XDM attribute nodes, and cannot therefore be constructed using
                     xsl:attribute instructions.
               [ERR XTDE0890] It is a  dynamic error if the effective value of the name
                     attribute  is not both an NCNameNames and a PITargetXML.
            
Note:
Because these rules disallow the name xml, the
                     xsl:processing-instruction cannot be used to output an XML
                  declaration. The xsl:output declaration should be used to control
                  this instead (see 26 Serialization).
If the result of evaluating the content of the
                  xsl:processing-instruction contains the string
               ?>, this string is modified by inserting a space between the
                  ? and > characters.
The base URI of the new processing-instruction is copied from the base URI of the
                  xsl:processing-instruction element in the stylesheet. (Note,
               however, that this is only relevant when creating a parentless processing
               instruction. When the new processing instruction is copied to form a child of an
               element or document node, the base URI of the new copy is taken from that of its new
               parent.)
<!-- Category: instruction -->
<xsl:namespace
  name = { ncname }
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:namespace>
The xsl:namespace element is evaluated to create a namespace node.
               Except in error situations, the result of evaluating the
                  xsl:namespace instruction is a single node, the newly constructed
               namespace node.
The xsl:namespace element has a required
               name attribute that specifies the name of the namespace node (that is,
               the namespace prefix). The value of the name attribute is interpreted as
               an attribute value template. If
               the effective value of the
                  name attribute is a zero-length string, a namespace node is added for
               the default namespace.
The string value of the new namespace node (that is, the namespace URI) may be
               defined either by using the select attribute, or by the sequence constructor that forms the
               content of the xsl:namespace element. These are mutually exclusive: if the select attribute is present
                  then the sequence constructor must be empty, and if the sequence constructor is
                  non-empty then the select attribute must be absent. Since
               the string value of a namespace node cannot be a zero-length string, either a select attribute or a non-empty sequence
                  constructor must be present. The way in which the
               value is constructed is specified in 5.7.2 Constructing Simple Content.
               [ERR XTDE0905] It is a  dynamic error if the string value of
                     the new namespace node is not valid in the lexical space of the datatype
                        xs:anyURI, or if it is the string
                        http://www.w3.org/2000/xmlns/.
            
               [ERR XTSE0910] It is a static error if the
                        select attribute of the xsl:namespace element
                     is present when the element has content other than one or more
                        xsl:fallback instructions, or if the select
                     attribute is absent when the element has empty content.
            
Note the restrictions described in 5.7.1 Constructing Complex Content for the position of a namespace node relative to other nodes in the node sequence returned by a sequence constructor.
This literal result element:
<data xsi:type="xs:integer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <xsl:namespace name="xs" select="'http://www.w3.org/2001/XMLSchema'"/> <xsl:text>42</xsl:text> </data>
would typically cause the output document to contain the element:
<data xsi:type="xs:integer" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">42</data>
In this case, the element is constructed using a literal result element, and the
                  namespace xmlns:xs="http://www.w3.org/2001/XMLSchema" could therefore
                  have been added to the result tree simply
                  by declaring it as one of the in-scope namespaces in the stylesheet. In practice,
                  the xsl:namespace instruction is more likely to be useful in
                  situations where the element is constructed using an xsl:element
                  instruction, which does not copy all the in-scope namespaces from the
                  stylesheet.
               [ERR XTDE0920] It is a  dynamic error if the effective value of the name
                     attribute  is neither a zero-length string nor an NCNameNames, or if it is xmlns.
                  
            
               [ERR XTDE0925] It is a  dynamic error if the
                        xsl:namespace instruction generates a namespace node whose
                     name is xml and whose string value is not
                        http://www.w3.org/XML/1998/namespace, or a namespace node whose
                     string value is http://www.w3.org/XML/1998/namespace and whose
                     name is not xml.
            
               [ERR XTDE0930] It is a  dynamic error if evaluating the
                        select attribute or the contained sequence constructor of an xsl:namespace
                     instruction results in a zero-length string. 
            
For details of other error conditions that may arise, see 5.7 Sequence Constructors.
Note:
It is rarely necessary to use xsl:namespace to create a namespace
                  node in the result tree; in most
                  circumstances, the required namespace nodes will be created automatically, as a
                  side-effect of writing elements or attributes that use the namespace. An example
                  where xsl:namespace is needed is a situation where the required
                  namespace is used only within attribute values in the result document, not in
                  element or attribute names; especially where the required namespace prefix or
                  namespace URI is computed at run-time and is not present in either the source
                  document or the stylesheet.
Adding a namespace node to the result tree will never change the expanded QName of any element or attribute node in the result tree: that is, it will never change the namespace URI of an element or attribute. It might, however, constrain the choice of prefixes when namespace fixup is performed.
Namespace prefixes for element and attribute names are initially established by the rules of the instruction that creates the element or attribute node, and in the event of conflicts, they may be changed by the namespace fixup process described in 5.7.3 Namespace Fixup. The fixup process ensures that an element has in-scope namespace nodes for the namespace URIs used in the element name and in its attribute names, and the serializer will typically use these namespace nodes to determine the prefix to use in the serialized output. The fixup process cannot generate namespace nodes that are inconsistent with those already present in the tree. This means that it is not possible for the processor to decide the prefix to use for an element or for any of its attributes until all the namespace nodes for the element have been added.
If a namespace prefix is mapped to a particular namespace URI using the
                     xsl:namespace instruction, or by using
                     xsl:copy or xsl:copy-of to copy a namespace
                  node, this prevents the namespace fixup process (and hence the serializer) from
                  using the same prefix for a different namespace URI on the same element.
Given the instruction:
<xsl:element name="p:item" xmlns:p="http://www.example.com/p"> <xsl:namespace name="p">http://www.example.com/q</xsl:namespace> </xsl:element>
a possible serialization of the result tree is:
<ns0:item xmlns:ns0="http://www.example.com/p" xmlns:p="http://www.example.com/q"/>
The processor must invent a namespace prefix for the URI p.uri; it
                  cannot use the prefix p because that prefix has been explicitly
                  associated with a different URI.
Note:
The xsl:namespace instruction cannot be used to generate a
                     namespace undeclaration of the form xmlns="" (nor the
                  new forms of namespace undeclaration permitted in [Namespaces in XML 1.1]).
                  Namespace undeclarations are generated automatically by the serializer if
                     undeclare-prefixes="yes" is specified on
                     xsl:output, whenever a parent element has a namespace node for
                  the default namespace prefix, and a child element has no namespace node for that
                  prefix.
<!-- Category: instruction -->
<xsl:comment
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:comment>
The xsl:comment element is evaluated to construct a new comment
               node. Except in error cases, the result of evaluating the
                  xsl:comment instruction is a single node, the newly constructed
               comment node.
The string value of the new comment node may be defined either by using the
                  select attribute, or by the sequence constructor that forms the content of the
                  xsl:comment element. These are mutually
                  exclusive: if the select attribute is present then the sequence
                  constructor must be empty, and if the sequence constructor is non-empty then the
                     select attribute must be absent. If the select
                  attribute is absent and the sequence constructor is empty, then the
               string value of the new comment node will be a zero-length string. The way in which
               the value is constructed is specified in 5.7.2 Constructing Simple Content.
               [ERR XTSE0940] It is a static error if the
                        select attribute of the xsl:comment element is
                     present unless the element has empty content.
            
For example, this
<xsl:comment>This file is automatically generated. Do not edit!</xsl:comment>
would create the comment
<!--This file is automatically generated. Do not edit!-->
In the generated comment node, the processor must insert a space
               after any occurrence of x2D (hyphen) that is followed by another occurrence of x2D (hyphen) or
               that ends the comment.
<!-- Category: instruction -->
<xsl:copy
  select? = expression
  copy-namespaces? = boolean〔'yes'〕
  inherit-namespaces? = boolean〔'yes'〕
  use-attribute-sets? = eqnames〔''〕
  type? = eqname
  validation? = "strict" | "lax" | "preserve" | "strip" >
  <!-- Content: sequence-constructor -->
</xsl:copy>
The xsl:copy instruction provides a way of copying a selected item. The selected item is the item selected by
                     evaluating the expression in the select attribute if present, or
                     the context item otherwise.
                  If the selected item is a node, evaluating the xsl:copy
                  instruction constructs a copy of the selected node, and the result of the
                     xsl:copy instruction is this newly constructed node. By
                  default, the namespace nodes of the context node are automatically copied as well,
                  but the attributes and children of the node are not automatically copied.
                  [ERR XTTE0945] It is a type error to use the
                           xsl:copy instruction with no select
                        attribute when the context item is absent. 
               
If the select expression returns an empty sequence,
                  the xsl:copy instruction returns an empty sequence, and the
                  contained sequence constructor is not evaluated.
[ERR XTTE3180] It is a type error if the result of
                        evaluating the select expression  is a sequence of more
                        than one item.
When the selected item is an atomic item
                     or function item, the
                     xsl:copy instruction returns this value. The sequence constructor is not evaluated.
                     
When the selected item is an attribute node,
                  text node, comment node, processing instruction node, or namespace node, the
                     xsl:copy instruction returns a new node that is a copy of the
                  context node. The new node will have the same node kind, name, and string value as
                  the context node. In the case of an attribute node, it will also have the same
                  values for the is-id and is-idrefs properties. The
                     sequence constructor is not evaluated. 
When the selected item is a document node or
                  element node, the xsl:copy instruction returns a new node that
                  has the same node kind and name as the selected
                  node. The content of the new node is formed by evaluating the sequence constructor contained in the
                     xsl:copy instruction. If the
                        select attribute is present then the sequence constructor is
                     evaluated with the selected item as the singleton focus; otherwise it is evaluated using the context of
                     the xsl:copy instruction unchanged. The sequence
                  obtained by evaluating this sequence constructor is used (after prepending any
                  attribute nodes or namespace nodes as described in the following paragraphs) to
                  construct the content of the document or element node, as described in 5.7.1 Constructing Complex Content.
When the selected item is a document node, the
                     unparsed-entities property of the existing document node is copied
                  to the new document node.
When the selected item is an element or attribute node,
                  the values of the is-id, is-idrefs, and
                     nilled properties of the new element or attribute depend on the
                  values of the validation and type attributes, as defined
                  in 25.4 Validation.
The xsl:copy instruction has an optional
                     use-attribute-sets attribute, whose value is a
                  whitespace-separated list of QNames that identify
                     xsl:attribute-set declarations. This attribute is used only
                  when copying element nodes. This list is expanded as described in 10.2 Named Attribute Sets to produce a sequence of attribute nodes. This sequence
                  is prepended to the sequence produced as a result of evaluating the sequence constructor.
The xsl:copy instruction has an optional
                     copy-namespaces attribute, with the value yes or
                     no. The default value is yes. The attribute is used
                  only when copying element nodes. If the value is set to yes, or is
                  omitted, then all the namespace nodes of the source element are copied as
                  namespace nodes for the result element. These copied namespace nodes are prepended
                  to the sequence produced as a result of evaluating the sequence constructor (it is immaterial
                  whether they come before or after any attribute nodes produced by expanding the
                     use-attribute-sets attribute). If the value is set to
                     no, then the namespace nodes are not copied. However, namespace
                  nodes will still be added to the result element as required by
                  the namespace fixup process: see 5.7.3 Namespace Fixup.
The xsl:copy instruction has an optional
                     inherit-namespaces attribute, with the value yes or
                     no. The default value is yes. The attribute is used
                  only when copying element nodes. If the value is set to yes, or is
                  omitted, then the namespace nodes created for the newly constructed element
                  (whether these were copied from those of the source node, or generated as a result
                  of namespace fixup) are copied to the children and descendants of the newly
                  constructed element, as described in 5.7.1 Constructing Complex Content. If the value is set to no, then these namespace nodes are not
                  automatically copied to the children. This may result in namespace undeclarations
                  (such as xmlns="" or, in the case of XML Namespaces 1.1,
                     xmlns:p="") appearing on the child elements when a final result tree is serialized.
                  [ERR XTTE0950] It is a type error to use the
                           xsl:copy or xsl:copy-of instruction to
                        copy a node that has namespace-sensitive content if the
                           copy-namespaces attribute has the value no and
                        its explicit or implicit validation attribute has the value
                           preserve. It is also a type error if either of these
                        instructions (with validation="preserve") is used to copy an
                        attribute having namespace-sensitive content, unless the parent element is
                        also copied. A node has namespace-sensitive content if its typed value
                        contains an item of type xs:QName or xs:NOTATION
                        or a type derived therefrom. The reason this is an error is because the
                        validity of the content depends on the namespace context being
                        preserved.
               
Note:
When attribute nodes are copied, whether with xsl:copy or with
                        xsl:copy-of, the processor does not automatically copy any
                     associated namespace information. The namespace used in the attribute name
                     itself will be declared by virtue of the namespace fixup process (see 5.7.3 Namespace Fixup) when the attribute is added to an element in the
                        result tree, but if namespace
                     prefixes are used in the content of the attribute (for example, if the value of
                     the attribute is an XPath expression) then it is the responsibility of the
                     stylesheet author to ensure that suitable namespace nodes are added to the
                        result tree. This can be achieved by
                     copying the namespace nodes using xsl:copy, or by generating
                     them using xsl:namespace.
The optional attributes type and validation may be used
                  on the xsl:copy instruction to validate the contents of an
                  element, attribute or document node against a type definition, element
                  declaration, or attribute declaration in a schema, and thus to determine the
                     type annotation that the new copy of an element or
                  attribute node will carry. These attributes are ignored when copying an item that
                  is not an element, attribute or document node. When the node being copied is an
                  element or document node, these attributes also affect the type annotation carried
                  by any elements and attributes that have the copied element or document node as an
                  ancestor. These two attributes are both optional, and if one is specified then the
                  other must be omitted. The permitted values of these attributes
                  and their semantics are described in 25.4 Validation.
Note:
The final type annotation of the node in the result tree also depends on the
                        type and validation attributes of the instructions
                     used to create the ancestors of the node.
When a node is copied, its base URI is copied, except
                  when the result of the xsl:copy instruction is an element node
                  having an xml:base attribute, in which case the base URI of the new
                  node is taken as the value of its xml:base attribute, resolved if it
                  is relative against the base URI of the xsl:copy instruction. 
When an xml:id attribute is copied, using either the
                     xsl:copy or xsl:copy-of instruction, it is
                     implementation-defined whether the value of the attribute
                  is subjected to attribute value normalization (that is, effectively applying the
                     normalize-space function).
Note:
In most cases the value will already have been subjected to attribute value normalization on the source tree, but if this processing has not been performed on the source tree, it is not an error for it to be performed on the result tree.
<!-- Category: instruction -->
<xsl:copy-of
  select = expression
  copy-accumulators? = boolean〔'no'〕
  copy-namespaces? = boolean〔'yes'〕
  type? = eqname
  validation? = "strict" | "lax" | "preserve" | "strip" />
The xsl:copy-of instruction can be used to construct a copy of a
                  sequence of nodes, atomic items, and/or function
                     items with each new node containing copies of all the children,
                  attributes, and (by default) namespaces of the original node, recursively. The
                  result of evaluating the instruction is a sequence of items corresponding
                  one-to-one with the supplied sequence, and retaining its order.
The required
                  select attribute contains an expression, whose value may be any sequence of nodes, atomic items,
                     and/or function items. The items in this
                  sequence are processed as follows:
If the item is an element node, a new element is constructed and appended to the result sequence. The new element will have the same expanded QName as the original, and it will have deep copies of the attribute nodes and children of the element node.
The new element will also have namespace nodes copied from the original
                        element node, unless they are excluded by specifying
                           copy-namespaces="no". If this attribute is omitted, or takes
                        the value yes, then all the namespace nodes of the original
                        element are copied to the new element. If it takes the value
                        no, then none of the namespace nodes are copied: however,
                        namespace nodes will still be created in the result tree as required by the namespace
                        fixup process: see 5.7.3 Namespace Fixup. This attribute affects
                        all elements copied by this instruction: both elements selected directly by
                        the select
                        expression, and elements that are
                        descendants of nodes selected by the select expression. 
The values of the is-id,
                           is-idrefs, and nilled properties of the new
                        element depend on the values of the validation and
                           type attributes, as defined in 25.4 Validation.
If the item is a document node, the instruction adds a new document node to
                        the result sequence; the children of this document node will be one-to-one
                        copies of the children of the original document node (each copied according
                        to the rules for its own node kind). The
                              unparsed-entities property of the original document node
                           is copied to the new document node.
If the item is an attribute or namespace node, or a text node, a comment, or
                        a processing instruction, the same rules apply as with
                           xsl:copy (see 11.9.1 Shallow Copy).
If the item is an atomic item or a function
                           item, the value is appended to the result sequence, as with
                           xsl:sequence.
The optional attributes type and validation may be used
                  on the xsl:copy-of instruction to validate the contents of an
                  element, attribute or document node against a type definition, element
                  declaration, or attribute declaration in a schema and thus to determine the
                     type annotation that the new copy of an element or
                  attribute node will carry. These attributes are applied individually to each
                  element, attribute, and document node that is selected by the expression in the
                     select attribute. These attributes are ignored when copying an
                  item that is not an element, attribute or document node.
The specified type and validation apply directly only to
                  elements, attributes and document nodes created as copies of nodes actually
                  selected by the select expression, they do not apply to nodes that
                  are implicitly copied because they have selected nodes as an ancestor. However,
                  these attributes do indirectly affect the type
                     annotation carried by such implicitly copied nodes, as a consequence
                  of the validation process.
These two attributes are both optional, and if one is specified then the other must be omitted. The permitted values of these attributes and their semantics are described in 25.4 Validation.
Errors may occur when copying namespace-sensitive elements or attributes using
                     validation="preserve". [see ERR XTTE0950].
If removal of namespaces is requested using
                     copy-namespaces="no", then any validation that is requested is
                  applied to the tree that remains after the relevant namespaces have been removed.
                  This will cause validation to fail if there is namespace-sensitive content that
                  depends on the presence of the removed namespaces.
                  For any node N that is explicitly selected by the evaluation of the 
                  select expression, the base URI of the new copy is as follows:
If N is an element node having an xml:base attribute, 
                     the base URI of the new node is taken as the value of the xml:base attribute, 
                     resolved if it is relative against the static base URI of the xsl:copy-of instruction.
                  
Otherwise, the base URI of the new copy is the same as the base URI of N.
For any element or processing-instruction node that has N as an ancestor, 
                     the base URI of the new copy is set to be the same as that of its new parent, 
                     with the following exception: if a copied element has an xml:base 
                     attribute, then its base URI is set to the value of that attribute, 
                     resolved if it is relative against the base URI of the new parent node.
                  
Note:
If two elements in a subtree have different base URIs for some reason 
                     unconnected with xml:base attributes (for example, if they originated in different 
                     external entities), then these differences are lost when the subtree is copied.
                  
Note:
As a consequence of rules specified elsewhere (see 5.7.1 Constructing Complex Content), 
                        if a node created using the xsl:copy-of instruction is subsequently attached 
                        as a child to a new element or document node, the final copy of the node inherits 
                        its base URI from its new parent node, unless this is overridden using an xml:base attribute.
                     
The effect of the copy-accumulators attribute is described in
                  19.2 Applicability of Accumulators.
<!-- Category: instruction -->
<xsl:number
  value? = expression
  select? = expression
  level? = "single" | "multiple" | "any"〔'single'〕
  count? = pattern
  from? = pattern
  format? = { string }〔'1'〕
  lang? = { language }
  letter-value? = { "alphabetic" | "traditional" }
  ordinal? = { string }〔'no'〕
  start-at? = { string }
  grouping-separator? = { char }
  grouping-size? = { integer } />
The xsl:number instruction is used to create a formatted number. The
            result of the instruction is a newly constructed text node containing the formatted
            number as its string value.
            [Definition: The xsl:number
               instruction performs two tasks: firstly, determining a place marker
               (this is a sequence of integers, to allow for hierarchic numbering schemes such as
                  1.12.2 or 3(c)ii), and secondly, formatting the place
               marker for output as a text node in the result sequence.] The place marker
            to be formatted can either be supplied directly, in the value attribute, or
            it can be computed based on the position of a selected node within the tree that
            contains it.
            [ERR XTSE0975] It is a static error if the
                     value attribute of xsl:number is present unless
                  the select, level, count, and
                     from attributes are all absent.
         
Note:
The facilities described in this section are specifically designed to enable the
               calculation and formatting of section numbers, paragraph numbers, and the like. For
               formatting of other numeric quantities, the format-number
               function may be more suitable.
Furthermore, formatting of integers where there is no requirement to calculate the
               position of a node in the document can now be accomplished using the
                  format-integer function, which borrows many concepts from
               the xsl:number specification.
start-at AttributeThe effective value of the
                  start-at attribute must be a string representing a
               whitespace-separated sequence of one or more integers, each one optionally preceded
               by a minus sign, separated by whitespace. More specifically, the value must be a
               string matching the regular expression -?[0-9]+(\s+-?[0-9]+)*. This
               sequence of integers is used to re-base the sequence of integers being
               formatted. Specifically if $S is the sequence of integers represented by
               the start-at attribute, and $V is the sequence of integers to
               be formatted, then the following transformation is applied to $V:
for $i in 1 to count($V) return if ($i le count($S)) then $V[$i] + $S[$i] - 1 else $V[$i] + $S[last()] - 1
Note:
This means that if there are N integers in the start-at
                  attribute, then these are used to re-base the first N numbers, while
                  numbers after the Nth are re-based using the last (Nth)
                  integer in the start-at attribute. If the start-at
                  attribute contains more integers than are required, the surplus is ignored.
For example, if the attribute is given as
                  start-at="3 0 0", and the number sequence to be formatted is
                  (1, 1, 1, 1), then the re-based sequence is 3, 0, 0,
               0.
The place marker to be formatted may be
               specified by an expression. The value attribute contains the expression. 
               The value of this expression is 
               atomized using the procedure defined in [XPath 4.0], 
               and each value $V in the atomized sequence is then
               converted to the integer value returned by the XPath expression
                  xs:integer(round(number($V))). If
                  the start-at attribute is present, this sequence is then re-based as
                  described in 12.1 The start-at Attribute. The resulting sequence of
               integers is used as the place marker to be formatted.
If the instruction is processed with XSLT 1.0 behavior, then:
All items in the atomized sequence after the first are discarded;
If the atomized sequence is empty, it is replaced by a sequence containing the
                        xs:double value NaN as its only item;
If any value in the sequence cannot be converted to an integer (this includes
                     the case where the sequence contains a NaN value) then the string
                        NaN is inserted into the formatted result string in its proper
                     position. The error described in the following paragraph does not apply in this
                     case.
               [ERR XTDE0980] It is a  dynamic error if any undiscarded item
                     in the atomized sequence supplied as the value of the value
                     attribute of xsl:number cannot be converted to an integer, or
                     if the resulting integer is less than 0 (zero). 
            
Note:
The value zero does not arise when numbering nodes in a source document, but it
                  can arise in other numbering sequences. It is permitted specifically because the
                  rules of the xsl:number instruction are also invoked by functions
                  such as format-time: the minutes and seconds component of a
                  time value can legitimately be zero.
The resulting sequence is formatted as a string using the effective values of the attributes specified in
                  12.4 Number to String Conversion Attributes; each of these attributes is interpreted as an attribute value template. After
               conversion, the xsl:number element constructs a new text node
               containing the resulting string, and returns this node.
If no value attribute is specified, then the xsl:number
               instruction returns a new text node containing a formatted place marker that is based on the position of a
               selected node within its containing document. If the select attribute is
               present, then the expression contained in the select attribute is
               evaluated to determine the selected node. If the select attribute is
               omitted, then the selected node is the context
                  node.
               [ERR XTTE0990] It is a type error if the
                        xsl:number instruction is evaluated, with no
                        value or select attribute, when the context item is not a node. 
            
               [ERR XTTE1000] It is a type error if the result of
                     evaluating the select attribute of the xsl:number
                     instruction is anything other than a single node.
            
The following attributes control how the selected node is to be numbered:
The level attribute specifies rules for selecting the nodes that
                     are taken into account in allocating a number; it has the values
                        single, multiple or any. The default
                     is single.
The count attribute is a pattern that specifies which nodes are to be counted at those
                     levels. If count attribute is not specified, then it defaults to
                     the pattern that matches any node with the same node kind as the selected node
                     and, if the selected node has an expanded
                        QName, with the same expanded
                        QName as the selected node.
The from attribute is a pattern that specifies where counting starts.
In addition, the attributes specified in 12.4 Number to String Conversion Attributes are used for number
               to string conversion, as in the case when the value attribute is
               specified.
The xsl:number element first constructs a sequence of positive
               integers using the level, count and from
               attributes. Where level is single or any, this
               sequence will either be empty or contain a single number; where level is
                  multiple, the sequence may be of any length. The sequence is
               constructed as follows:
Let matches-count($node) be a function that returns true if and only if
               the given node $node matches the pattern given in the count
               attribute, or the implied pattern (according to the rules given above) if the
                  count attribute is omitted.
Let matches-from($node) be a function that returns true if and only if
               the given node $node matches the pattern given in the from
               attribute, or if $node is the root node of a tree. If the
                  from attribute is omitted, then the function returns true if and only
               if $node is the root node of a tree.
Let $S be the selected node.
When level="single": 
Let $A be the node sequence selected by the following
                     expression:
                        $S/ancestor-or-self::node()[matches-count(.)][1]
                  
(this selects the innermost ancestor-or-self node that matches the
                        count pattern)
Let $F be the node sequence selected by the expression:
                        $S/ancestor-or-self::node()[matches-from(.)][1]
                  
(this selects the innermost ancestor-or-self node that matches the
                        from pattern)
Let $AF be the value of:
                        $A[ancestor-or-self::node()[. is $F]]
                  
(this selects $A if it is in the subtree rooted at $F, or the empty sequence otherwise)
If $AF is empty, return the empty sequence, ()
                  
Otherwise return the value of:
                        1 + count($AF/preceding-sibling::node()[matches-count(.)])
                  
(the number of preceding siblings of the counted node that match the
                        count pattern, plus one).
When level="multiple": 
Let $A be the node sequence selected by the expression:
                        $S/ancestor-or-self::node()[matches-count(.)]
                  
(the set of ancestor-or-self nodes that match the count
                     pattern)
Let $F be the node sequence selected by the expression:
                        $S/ancestor-or-self::node()[matches-from(.)][1]
                  
(the innermost ancestor-or-self node that matches the from
                     pattern)
Let $AF be the value of:
                        $A[ancestor-or-self::node()[. is $F]]
                  
(the nodes selected in the first step that are in the subtree rooted at the node selected in the second step)
Return the result of the expression:
                        for $af in $AF return
                        1+count($af/preceding-sibling::node()[matches-count(.)])
                  
(a sequence of integers containing, for each of these nodes, one plus the
                     number of preceding siblings that match the count pattern)
When level="any": 
Let $A be the node sequence selected by the expression:
                        $S/(preceding::node()|ancestor-or-self::node())[matches-count(.)]
                  
(the set of nodes consisting of the selected node together with all nodes,
                     other than attributes and namespaces, that precede the selected node in
                     document order, provided that they match the count pattern)
Let $F be the node sequence selected by the expression:
                        $S/(preceding::node()|ancestor-or-self::node())[matches-from(.)][last()]
                  
(the last node in document order that matches the from pattern and
                     that precedes the selected node, using the same definition)
Let $AF be the node sequence $A[. is $F or . >>
                        $F]
(the nodes selected in the first step, excluding those that precede the node selected in the second step)
If $AF is empty, return the empty sequence, ()
                  
Otherwise return the value of the expression count($AF)
                  
The resulting sequence of numbers is referred to as the place marker.
If the start-at attribute is present, then the
                  place marker is re-based as described in 12.1 The start-at Attribute.
The sequence of numbers is then converted into a string using the effective values of the attributes specified in
                  12.4 Number to String Conversion Attributes; each of these attributes is interpreted as an attribute value template. After
               conversion, the resulting string is used to create a text node, which forms the
               result of the xsl:number instruction.
The following will number the items in an ordered list:
<xsl:template match="ol/item"> <fo:block> <xsl:number/> <xsl:text>. </xsl:text> <xsl:apply-templates/> </fo:block> </xsl:template>
The following two rules will number title elements. This is intended
                  for a document that contains a sequence of chapters followed by a sequence of
                  appendices, where both chapters and appendices contain sections, which in turn
                  contain subsections. Chapters are numbered 1, 2, 3; appendices are numbered A, B,
                  C; sections in chapters are numbered 1.1, 1.2, 1.3; sections in appendices are
                  numbered A.1, A.2, A.3. Subsections within a chapter are numbered 1.1.1, 1.1.2,
                  1.1.3; subsections within an appendix are numbered A.1.1, A.1.2, A.1.3.
<xsl:template match="title"> <fo:block> <xsl:number level="multiple" count="chapter|section|subsection" format="1.1 "/> <xsl:apply-templates/> </fo:block> </xsl:template> <xsl:template match="appendix//title" priority="1"> <fo:block> <xsl:number level="multiple" count="appendix|section|subsection" format="A.1 "/> <xsl:apply-templates/> </fo:block> </xsl:template>
Note:
This specification is aligned with that of the
                     format-integer function, but there are differences; for
                  example grouping separators are part of the primary format token in
                     format-integer, but are indicated by separate attributes
                  in xsl:number.
The following attributes are used to control conversion of a sequence of numbers into a string. The numbers are integers greater than or equal to 0 (zero). The attributes are all optional.
The main attribute is format. The default value for the
                  format attribute is 1. The format attribute
               is split into a sequence of tokens where each token is a maximal sequence of
               alphanumeric characters or a maximal sequence of non-alphanumeric characters.
                  Alphanumeric means any character that has a Unicode category of Nd,
               Nl, No, Lu, Ll, Lt, Lm or Lo (see [UNICODE]). The alphanumeric tokens (format tokens)
               indicate the format to be used for each number in the sequence; in most cases the
               format token is the same as the required representation of the number 1 (one).
Each non-alphanumeric token is either a prefix, a separator, or a suffix. If there is a non-alphanumeric token but no format token, then the single non-alphanumeric token is used as both the prefix and the suffix. The prefix, if it exists, is the non-alphanumeric token that precedes the first format token: the prefix always appears exactly once in the constructed string, at the start. The suffix, if it exists, is the non-alphanumeric token that follows the last format token: the suffix always appears exactly once in the constructed string, at the end. All other non-alphanumeric tokens (those that occur between two format tokens) are separator tokens and are used to separate numbers in the sequence.
The nth format token is used to format the nth number in the
               sequence. If there are more numbers than format tokens, then the last format token is
               used to format remaining numbers. If there are no format tokens, then a format token
               of 1 is used to format all numbers. Each number after the first is
               separated from the preceding number by the separator token preceding the format token
               used to format that number, or, if that is the first format token, then by
                  . (dot).
Given the sequence of numbers 5, 13, 7 and the format token
                     A-001(i), the output will be the string E-013(vii)
               
Format tokens are interpreted as follows:
Any token where the last character has a decimal digit value of 1 (as specified
                     in the Unicode character property database, see [UNICODE]), and the Unicode
                     value of preceding characters is one less than the Unicode value of the last
                     character generates a decimal representation of the number where each number is
                     at least as long as the format token. The digits used in the decimal
                     representation are the set of digits containing the digit character used in the
                     format token. Thus, a format token 1 generates the sequence
                        0 1 2 ... 10 11 12 ..., and a format token 01
                     generates the sequence 00 01 02 ... 09 10 11 12 ... 99 100 101. A
                     format token of U+0661 (ARABIC-INDIC DIGIT ONE, ١)  generates the
                     sequence ١ then ٢ then
                        ٣ ...
A format token A generates the sequence A B C ... Z AA AB
                        AC....
A format token a generates the sequence a b c ... z aa ab
                        ac....
A format token i generates the sequence i ii iii iv v vi vii
                        viii ix x ....
A format token I generates the sequence I II III IV V VI VII
                        VIII IX X ....
A format token w generates numbers written as lower-case words,
                     for example in English, one two three four ....
                  
A format token W generates numbers written as upper-case words,
                     for example in English, ONE TWO THREE FOUR ....
                  
A format token Ww generates numbers written as title-case words,
                     for example in English, One Two Three Four ....
                  
Any other format token indicates a numbering sequence in which that token
                     represents the number 1 (one) (but see the note below).
                     
                     It is implementation-defined which numbering sequences,
                     additional to those listed above, are supported. If an implementation does not
                     support a numbering sequence represented by the given token, it
                        must use a format token of 1.
Note:
In some traditional numbering sequences additional signs are added to denote that the letters should be interpreted as numbers; these are not included in the format token. An example, see also the example below, is classical Greek where a dexia keraia and sometimes an aristeri keraia is added.
For all format tokens other than the first kind above (one that consists of decimal
               digits), there may be implementation-defined lower and upper bounds on the range of numbers
               that can be formatted using this format token; indeed, for some numbering sequences
               there may be intrinsic limits. For example, the format
                  token U+2460 (CIRCLED DIGIT ONE, ①)  has a range imposed
                  by the Unicode character repertoire (zero to 20 in Unicode versions prior to 3.2,
                  or zero to 50 in subsequent versions). For the numbering sequences
               described above any upper bound imposed by the implementation must
                  not be less than 1000 (one thousand) and any lower bound must not be
               greater than 1. Numbers that fall outside this range must be
               formatted using the format token 1. The numbering sequence associated
               with the format token 1 has a lower bound of 0 (zero).
The above expansions of numbering sequences for format tokens such as a
               and i are indicative but not prescriptive. There are various conventions
               in use for how alphabetic sequences continue when the alphabet is exhausted, and
               differing conventions for how roman numerals are written (for example,
                  IV versus IIII as the representation of the number 4).
               Sometimes alphabetic sequences are used that omit letters such as i and
                  o. This specification does not prescribe the detail of any sequence
               other than those sequences consisting entirely of decimal digits.
Many numbering sequences are language-sensitive. This applies especially to the
               sequence selected by the tokens w, W and Ww.
               It also applies to other sequences, for example different languages using the
               Cyrillic alphabet use different sequences of characters, each starting with the
               letter #x410 (Cyrillic capital letter A). In such cases, the lang
               attribute specifies which language’s conventions are to be used; its effective
                     value
                  must either be a string in the value space of
                     xs:language, or a zero-length string. If no
                  lang value is specified, or if the
                  value is a zero-length string, the language that is used is implementation-defined. The set of
               languages for which numbering is supported is implementation-defined. If a language is
               requested that is not supported, the processor may use a fallback language identified by removing
                  successive hyphen-separated suffixes from the supplied value until a supported
                  language code is obtained; failing this, the processor  uses the language
               that it would use if the lang attribute were omitted.
The optional ordinal attribute is used to
               indicate whether cardinal or ordinal numbers are required, and to select other
               options relating to the grammatical context of the number to be formatted. The
               allowed set of values is implementation-defined. If the attribute
               is absent, or if its value is zero-length, or if its value is no or
                  0 or false, then cardinal numbers appropriate to the
               selected language are output. If the value is yes or 1 or
                  true, then ordinal numbers appropriate to the target language are
               output. Other values are implementation-defined.
For example, in English, the value ordinal="yes" when used with the
               format token 1 outputs the sequence 1st 2nd 3rd 4th ...,
               and when used with the format token w outputs the sequence first
                  second third fourth ....
Note:
In some languages, the form of numbers (especially ordinal numbers) varies
                  depending on the grammatical context: they may have different genders and may
                  decline with the noun that they qualify. In such cases the value of the
                     ordinal attribute may be used to indicate the variation of the
                  cardinal or ordinal number required, in an implementation-defined way. 
The way in which the variation is indicated will depend on the conventions of the language.
For inflected languages that vary the ending of the word, the approach recommended
                  in the previous version of this specification was to indicate the required ending,
                  preceded by a hyphen: for example in German, appropriate values might be
                     ordinal="-e", ordinal="-er",
                     ordinal="-es", ordinal="-en". 
Another approach, which might usefully be adopted by an implementation based on
                  the open-source ICU localization library [ICU], or any other library
                  making use of the Unicode Common Locale Data Repository [Unicode CLDR], is
                  to allow the value of the attribute to be the name of a registered numbering rule
                  set for the language in question, conventionally prefixed with a percent sign: for
                  example, ordinal="%spellout-ordinal-masculine", or
                     ordinal="%spellout-cardinal-year". (The attribute name
                     ordinal in this case is a misnomer, but serves the purpose.) 
The specification format="1" ordinal="-º" lang="it", if supported,
                  should produce the sequence:
1º 2º 3º 4º ...
The specification format="Ww" ordinal="-o" lang="it", if supported,
                  should produce the sequence:
Primo Secondo Terzo Quarto Quinto ...
The letter-value attribute disambiguates between numbering sequences
               that use letters. In many languages there are two commonly used numbering sequences
               that use letters. One numbering sequence assigns numeric values to letters in
               alphabetic sequence, and the other assigns numeric values to each letter in some
               other manner traditional in that language. In English, these would correspond to the
               numbering sequences specified by the format tokens a and i.
               In some languages, the first member of each sequence is the same, and so the format
               token alone would be ambiguous. A value of alphabetic specifies the
               alphabetic sequence; a value of traditional specifies the other
               sequence. If the letter-value attribute is not specified, then it is
                  implementation-dependent how
               any ambiguity is resolved.
Note:
Implementations may use extension
                     attributes on xsl:number to provide additional
                  control over the way in which numbers are formatted.
The grouping-separator attribute gives the separator used as a grouping
               (for example, thousands) separator in decimal numbering sequences, and the optional
                  grouping-size specifies the size (normally 3) of the grouping. For
               example, grouping-separator="," and grouping-size="3" would
               produce numbers of the form 1,000,000 while
                  grouping-separator="." and grouping-size="2" would
               produce numbers of the form 1.00.00.00. If only one of the
                  grouping-separator and grouping-size attributes is
               specified, then it is ignored.
The effective
                  value of the grouping-separator attribute
                  may be any string, including a zero-length string. 
The effective
                  value of the grouping-size attribute
                  must be a string in the lexical space of
                  xs:integer. If the resulting integer is positive then it defines the
               number of digits between adjacent grouping separators; it if is zero or negative,
               then no grouping separators are inserted. 
These examples use non-Latin characters which might not display correctly in all browsers, depending on the system configuration.
| Description | Format Token | Sequence | 
|---|---|---|
| French cardinal words | format="Ww" lang="fr" | Un, Deux, Trois, Quatre | 
| German ordinal words | format="w" ordinal="-e" lang="de" | erste, zweite, dritte, vierte | 
| Katakana numbering | format="ア" | ア, イ, ウ, エ, オ, カ, キ, ク, ケ, コ, サ, シ, ス, セ, ソ, タ, チ, ツ, テ, ト, ナ, ニ, ヌ, ネ, ノ, ハ, ヒ, フ, ヘ, ホ, マ, ミ, ム, メ, モ, ヤ, ユ, ヨ, ラ, リ, ル, レ, ロ, ワ, ヰ, ヱ, ヲ, ン | 
| Katakana numbering in iroha order | format="イ" | イ, ロ, ハ, ニ, ホ, ヘ, ト, チ, リ, ヌ, ル, ヲ, ワ, カ, ヨ, タ, レ, ソ, ツ, ネ, ナ, ラ, ム, ウ, ヰ, ノ, オ, ク, ヤ, マ, ケ, フ, コ, エ, テ, ア, サ, キ, ユ, メ, ミ, シ, ヱ, ヒ, モ, セ, ス | 
| Thai numbering | format="๑" | ๑, ๒, ๓, ๔, ๕, ๖, ๗, ๘, ๙, ๑๐, ๑๑, ๑๒, ๑๓, ๑๔, ๑๕, ๑๖, ๑๗, ๑๘, ๑๙, ๒๐ | 
| Traditional Hebrew numbering | format="א" letter-value="traditional" | א, ב, ג, ד, ה, ו, ז, ח, ט, י, יא, יב, יג, יד, טו, טז, יז, יח, יט, כ | 
| Traditional Georgian numbering | format="ა" letter-value="traditional" | ა, ბ, გ, დ, ე, ვ, ზ, ჱ, თ, ი, ია, იბ, იგ, იდ, იე, ივ, იზ, იჱ, ით, კ | 
| Classical Greek numbering (see note) | format="α" letter-value="traditional" | αʹ, βʹ, γʹ, δʹ, εʹ, ϛʹ, ζʹ, ηʹ, θʹ, ιʹ, ιαʹ, ιβʹ, ιγʹ, ιδʹ, ιεʹ, ιϛʹ, ιζʹ, ιηʹ, ιθʹ, κʹ | 
| Old Slavic numbering | format="а" letter-value="traditional" | А, В, Г, Д, Е, Ѕ, З, И, Ѳ, Ӏ, АӀ, ВӀ, ГӀ, ДӀ, ЕӀ, ЅӀ, ЗӀ, ИӀ, ѲӀ, К | 
Note that Classical Greek is an example where the format token is not the same as the representation of the number 1.
            [Definition: A sort key
                  specification is a sequence of one or more adjacent
                  xsl:sort elements which together define rules for sorting the
               items in an input sequence to form a sorted sequence.]
         
            [Definition: Within a sort key specification, each
                  xsl:sort element defines one sort key
               component.] The first xsl:sort element specifies the
            primary component of the sort key specification, the second xsl:sort
            element specifies the secondary component of the sort key specification, and so on.
A sort key specification may occur immediately within an
               xsl:apply-templates, xsl:for-each,
               xsl:perform-sort, or xsl:for-each-group
            element.
Note:
When used within xsl:for-each, xsl:for-each-group,
               or xsl:perform-sort, xsl:sort elements must occur
               before any other children.
xsl:sort Element<xsl:sort
  select? = expression
  lang? = { language }
  order? = { "ascending" | "descending" }〔'ascending'〕
  collation? = { uri }
  stable? = { boolean }〔'yes'〕
  case-order? = { "upper-first" | "lower-first" }
  data-type? = { "text" | "number" | eqname } >
  <!-- Content: sequence-constructor -->
</xsl:sort>
The xsl:sort element defines a sort key component. A sort key component specifies how a sort key value is to be computed for each item
               in the sequence being sorted, and also how two sort key values are to be
               compared.
The value of a sort key component is
               determined either by its select attribute or by the contained sequence constructor. If neither is
               present, the default is select=".", which has the effect of sorting on
               the actual value of the item if it is an atomic item, or on the typed-value of the
               item if it is a node. If a select attribute is present, its value
                  must be an XPath expression.
               [ERR XTSE1015] It is a static error if an
                        xsl:sort element with a select attribute has
                     non-empty content.
            
Those attributes of the xsl:sort elements whose values are attribute value templates are
               evaluated using the same focus as is used to
               evaluate the select attribute of the containing instruction
               (specifically, xsl:apply-templates, xsl:for-each,
                  xsl:for-each-group, or xsl:perform-sort).
The stable attribute is permitted only on the first
                  xsl:sort element within a sort key specification.
            
               [ERR XTSE1017] It is a static error if an
                        xsl:sort element other than the first in a sequence of
                     sibling xsl:sort elements has a stable
                     attribute.
            
               [Definition: A sort
                     key specification is said to be stable if its first
                     xsl:sort element has no stable attribute, or has
                  a stable attribute whose effective
                     value is yes.]
            
[Definition: The sequence to be sorted is referred to as the initial sequence.]
                  [Definition: The sequence after sorting
                     as defined by the xsl:sort elements is referred to as the
                        sorted sequence.]
               
[Definition: For each item in the initial sequence, a value is computed for each sort key component within the sort key specification. The value computed for an item by using the Nth sort key component is referred to as the Nth sort key value of that item.]
The items in the initial sequence are
                  ordered into a sorted sequence by
                  comparing their sort key values. The
                  relative position of two items A and B in the sorted
                  sequence is determined as follows. The first sort key value of A is
                  compared with the first sort key value of B, according to the rules of
                  the first sort key component. If,
                  under these rules, A is less than B, then A will
                  precede B in the sorted sequence, unless the order
                  attribute of this sort key
                     component specifies descending, in which case
                     B will precede A in the sorted sequence. If, however, the
                  relevant sort key values compare equal, then the second sort key value of
                     A is compared with the second sort key value of B,
                  according to the rules of the second sort key
                     component. This continues until two sort key values are found that
                  compare unequal. If all the sort key values compare equal, and the sort key specification is stable, then A will precede B
                  in the sorted sequence if and only if
                     A preceded B in the initial sequence. If all the sort key values compare equal, and the
                     sort key specification is
                  not stable, then the relative order of
                     A and B in the sorted
                     sequence is implementation-dependent.
Note:
If two items have equal sort key
                        values, and the sort is stable,
                     then their order in the sorted
                        sequence will be the same as their order in the initial sequence, regardless of whether
                        order="descending" was specified on any or all of the sort key components.
The Nth sort key value is computed by evaluating either the
                     select attribute or the contained sequence constructor of the
                     Nth xsl:sort element, or the expression
                     . (dot) if neither is present. This evaluation is done with the
                     focus set as follows:
The context item is the item in the initial sequence whose sort key value is being computed.
The context position is the position of that item in the initial sequence.
The context size is the size of the initial sequence.
Note:
As in any other XPath expression, the current function may
                     be used within the select expression of xsl:sort
                     to refer to the item that is the context item for the expression as a whole;
                     that is, the item whose sort key
                        value is being computed.
The sort key values are atomized, and are then compared. The way they are compared depends on their datatype, as described in the next section.
It is possible to force the system to compare sort key values using the rules for a particular datatype by
                  including a cast as part of the sort key
                     component. For example, <xsl:sort
                     select="xs:date(@dob)"/> will force the attributes to be compared as
                  dates. In the absence of such a cast, the sort key values are compared using the
                  rules appropriate to their datatype. Any values of type
                     xs:untypedAtomic are cast to xs:string.
For backwards compatibility with XSLT 1.0, the data-type attribute
                  remains available. If this has the effective
                     value
                  text, the atomized sort key
                     values are converted to strings before being compared. If it has the
                  effective value number, the atomized sort key values are converted to
                  doubles before being compared. The conversion is done by using the
                     string or number function as
                  appropriate. If the data-type attribute has
                     any other effective value, then
                     this value must be an EQName denoting an expanded
                        QName with a non-absent namespace, and the effect of the
                  attribute is implementation-defined. 
               If the attribute is omitted, no conversion
               takes place.
                  If the xsl:sort element is processed with XSLT 1.0
                              behavior,
                  then if any sort key value, after
                           atomization and any type
                        conversion required by the data-type
                        attribute, is a sequence containing more than one item, then the effective
                        sort key value is the first item in the sequence.
In general the sort key values (after any conversion) are sequences of atomic items. Two sequences of atomic items S1 and S2 are compared as follows:
If both S1 and S2 are empty sequences, then they compare equal.
A sequence that is empty is considered to be less than a sequence that is not empty.
If neither sequence is empty, then
                        head(S1) and 
                        head(S2) are compared
                        according to the rules below.
If they compare equal, the result is obtained
                        by comparing tail(S1) to 
                        tail(S2).
Otherwise, the result of comparing these two items is used as the result of the sequence comparison.
For example:
(1, 2, 3) precedes (1, 2, 4).
(1, 2) precedes (1, 2, 3)
() precedes (1, 2)
Individual atomic items are compared as follows:
If both values are instances of xs:string, xs:anyURI,
                  or xs:untypedAtomic, they are compared using the appropriate collation,
                  as described in the next section.
If both values are instances of xs:numeric, they are compared
                  using the compare function.
Note:
This is a change from earlier versions, since xs:decimal values are now compared
                  as decimals, rather than being first converted to xs:double.
In all other cases, values are compared according to the rules
                     of the XPath lt operator. This will raise an error if the values are
                  not comparable (for example, if one is an xs:integer and the other is
                  an xs:date).
                  [ERR XTDE1030] It is a  dynamic error if, for any sort key component, the set of
                           sort key values evaluated for
                        all the items in the initial
                           sequence, after any type conversion requested, contains a pair
                        of atomic items for which the result of the XPath lt
                        operator is an error. If the processor is
                           able to detect the error statically, it may optionally
                           raise it as a static
                           error.
               
Note:
The above error condition may occur if the values to be sorted are of a type
                     that does not support ordering (for example, xs:QName) or if the
                     sequence is heterogeneous (for example, if it contains both strings and
                     numbers). The error can generally be prevented by invoking a cast or
                     constructor function within the sort key component.
The error condition is subject to the usual caveat that a processor is not required to evaluate any expression solely in order to determine whether it raises an error. For example, if there are several sort key components, then a processor is not required to evaluate or compare minor sort key values unless the corresponding major sort key values are equal.
The rules given in this section apply when comparing values whose type is
                     xs:string or a type derived by restriction from
                     xs:string, or whose type is xs:anyURI or a type
                  derived by restriction from xs:anyURI.
[Definition: Facilities in XSLT 3.0 and XPath 3.0 that require strings to be ordered rely on the concept of a named collation. A collation is a set of rules that determine whether two strings are equal, and if not, which of them is to be sorted before the other.] A collation is identified by a URI, but the manner in which this URI is associated with an actual rule or algorithm is largely implementation-defined.
For more information about collations, see [Functions and Operators 4.0] section 5.3 Comparison of strings in [Functions and Operators 4.0]. Some
                  specifications, for example [UNICODE TR10], use the term “collation”
                  to describe rules that can be tailored or parameterized for various purposes. In
                  this specification, a collation URI refers to a collation in which all such
                  parameters have already been fixed. Therefore, if a collation URI is specified,
                  other attributes such as case-order and lang are
                  ignored. 
Every implementation must
                     recognize the collation URI 
                  http://www.w3.org/2005/xpath-functions/collation/codepoint, which
                  provides the ability to compare strings based on the Unicode codepoint values of
                  the characters in the string.
Furthermore, every implementation must recognize collation URIs representing tailorings of the Unicode Collation Algorithm (UCA), as described in [Functions and Operators 4.0] section 5.3.4 The Unicode Collation Algorithm. Although this form of collation URI must be recognized, implementations are not required to support every possible tailoring.
If the xsl:sort element has a collation attribute,
                  then the strings are compared according to the rules for the named collation: that is, they are compared using the
                  XPath function call compare($a, $b, $collation).
If the effective value of the
                     collation attribute of xsl:sort is a relative
                  URI, then it is resolved against the base URI of the xsl:sort
                  element.
                  [ERR XTDE1035] It is a  dynamic error if the
                           collation attribute of xsl:sort (after
                        resolving against the base URI) is not a URI that is recognized by the
                        implementation as referring to a collation.
               
Note:
It is entirely for the implementation to determine whether it recognizes a particular collation URI. For example, if the implementation allows collation URIs to contain parameters in the query part of the URI, it is the implementation that determines whether a URI containing an unknown or invalid parameter is or is not a recognized collation URI. The fact that this situation is described as an error thus does not prevent an implementation applying a fallback collation if it chooses to do so.
The lang and case-order attributes are ignored if a
                     collation attribute is present. But in the absence of a
                     collation attribute, these attributes provide input to an implementation-defined algorithm to
                  locate a suitable collation:
The lang attribute indicates that a collation suitable for a
                        particular natural language should be used. 
                        The effective value of the attribute must
                         either be a string in the value space of
                              xs:language, or a zero-length string. Supplying the
                           zero-length string has the same effect as omitting the attribute. If a
                           language is requested that is not supported, the processor
                              may use a fallback language identified by removing
                           successive hyphen-separated suffixes from the supplied value until a
                           supported language code is obtained; failing this, the processor behaves
                           as if the lang attribute were omitted. 
Note:
The fallback algorithm described above is identical to the rules in RFC4647 Basic Filtering used in BCP 47, and is specified in [RFC4647] in greater detail.
The case-order attribute indicates whether the desired
                        collation should sort upper-case letters before
                        lower-case or vice versa. The effective
                           value of the attribute must be either
                           lower-first (indicating that lower-case letters precede
                        upper-case letters in the collating sequence) or upper-first
                        (indicating that upper-case letters precede lower-case).
When lower-first is requested, the returned collation
                           should have the property that when two strings differ
                        only in the case of one or more characters, then a string in which the first
                        differing character is lower-case should precede a string in which the
                        corresponding character is title-case, which should in turn precede a string
                        in which the corresponding character is upper-case. When upper-first is
                        requested, the returned collation should have the
                        property that when two strings differ only in the case of one or more
                        characters, then a string in which the first differing character is
                        upper-case should precede a string in which the corresponding character is
                        title-case, which should in turn precede a string in which the corresponding
                        character is lower-case.
So, for example, if lang="en", then A a B b are
                        sorted with case-order="upper-first" and a A b B
                        are sorted with case-order="lower-first".
As a further example, if lower-first is requested, then a sorted sequence
                        might be “MacAndrew, macintosh, macIntosh, Macintosh, MacIntosh,
                        macintoshes, Macintoshes, McIntosh”. If upper-first is requested, the same
                        sequence would sort as “MacAndrew, MacIntosh, Macintosh, macIntosh,
                        macintosh, MacIntoshes, macintoshes, McIntosh”.
If none of the collation, lang, or
                     case-order attributes is present, the collation is chosen in an
                     implementation-defined way. It is not
                     required that the default collation for sorting should be
                  the same as the default collation
                  used when evaluating XPath expressions, as described in 5.3.1 Initializing the Static Context and 3.7.2 The default-collation Attribute.
Note:
It is usually appropriate, when sorting, to use a strong collation, that is, one that takes account of secondary differences (accents) and tertiary differences (case) between strings that are otherwise equal. A weak collation, which ignores such differences, may be more suitable when comparing strings for equality.
Useful background information on international sorting is provided in [UNICODE TR10]. The case-order attribute may be
                     interpreted as described in section 6.6 of [UNICODE TR10].
                  The collation, case-order, and lang attributes are 
                  ignored when no string comparisons are performed during the sorting process; this 
                  includes the cases where (a) the sequences to be sorted are empty, (b) the sort 
                  keys are of a non-string type such as xs:integer, or (c) data-type="number" is 
                  specified. In these cases, an implementation may raise errors in the value 
                  of these attributes, but is not required to do so. As always, an implementation 
                  may issue warnings.
               
<!-- Category: instruction -->
<xsl:perform-sort
  select? = expression >
  <!-- Content: (xsl:sort+, sequence-constructor) -->
</xsl:perform-sort>
The xsl:perform-sort instruction is used to return a sorted sequence.
The initial sequence is obtained either
               by evaluating the select attribute or by evaluating the contained
               sequence constructor (but not both). If there is no select attribute and
               no sequence constructor then the initial
                  sequence (and therefore, the sorted
                  sequence) is an empty sequence.
               [ERR XTSE1040] It is a static error if an
                        xsl:perform-sort instruction with a select
                     attribute has any content other than xsl:sort and
                        xsl:fallback instructions.
            
The result of the xsl:perform-sort instruction is the result of
               sorting its initial sequence using its
               contained sort key
               specification.
The following stylesheet function sorts a sequence of atomic items using the value itself as the sort key.
<xsl:function name="local:sort" as="xs:anyAtomicType*"> <xsl:param name="in" as="xs:anyAtomicType*"/> <xsl:perform-sort select="$in"> <xsl:sort select="."/> </xsl:perform-sort> </xsl:function>
The following example defines a function that sorts books by price, and uses this function to output the five books that have the lowest prices:
<xsl:function name="bib:books-by-price" as="schema-element(bib:book)*"> <xsl:param name="in" as="schema-element(bib:book)*"/> <xsl:perform-sort select="$in"> <xsl:sort select="xs:decimal(bib:price)"/> </xsl:perform-sort> </xsl:function> ... <xsl:copy-of select="bib:books-by-price(//bib:book) [position() = 1 to 5]"/>
When used within xsl:for-each or
                  xsl:apply-templates, a sort key specification indicates that the sequence of items selected by
               that instruction is to be processed in sorted order, not in the order of the supplied
               sequence.
For example, suppose an employee database has the form
<employees> <employee> <name> <given>James</given> <family>Clark</family> </name> ... </employee> </employees>
Then a list of employees sorted by name could be generated using:
<xsl:template match="employees"> <ul> <xsl:apply-templates select="employee"> <xsl:sort select="name/family"/> <xsl:sort select="name/given"/> </xsl:apply-templates> </ul> </xsl:template> <xsl:template match="employee"> <li> <xsl:value-of select="name/given"/> <xsl:text> </xsl:text> <xsl:value-of select="name/family"/> </li> </xsl:template>
When used within xsl:for-each-group, a sort key specification indicates the
               order in which the groups are to be processed. For the effect of
                  xsl:for-each-group, see 14 Grouping. 
               A new attribute xsl:for-each-group/@split-when is available to
               give applications more complete control over how a sequence is partitioned
              [Issue 571  26 September 2023]
               A new attribute xsl:for-each-group/@merge-when is available to
               give applications control to create groups based on clustering, overlap, and networks.
              [Issue 2051  23 July 2025]
The facilities described in this section are designed to allow items in a sequence to be grouped based on common values; for example it allows grouping of elements having the same value for a particular attribute, or elements with the same name, or elements with common values for any other expression. Since grouping identifies items with duplicate values, the same facilities also allow selection of the distinct values in a sequence of items, that is, the elimination of duplicates.
Note:
Simple elimination of duplicates can also be achieved using the function
                  distinct-values: see [Functions and Operators 4.0].
In addition these facilities allow grouping based on sequential position, for example
            selecting groups of adjacent para elements. The facilities also provide an
            easy way to do fixed-size grouping, for example identifying groups of three adjacent
            nodes, which is useful when arranging data in multiple columns.
For each group of items identified, it is possible to evaluate a sequence constructor for the group. Grouping is nestable to multiple levels so that groups of distinct items can be identified, then from among the distinct groups selected, further sub-grouping of distinct items in the current group can be done.
It is also possible for one item to participate in more than one group.
Note:
Grouping can also be achieved by constructing a map. For example, 
            the function call map:build(//employee, fn { department }) constructs a map
            in which employees are grouped by department.
xsl:for-each-group ElementThe xsl:for-each-group instruction 
               allows a flat sequence of items to be processed as a sequence
               of groups, allowing a number of criteria to be used to define the grouping. The
               instruction may be used anywhere within a sequence
               constructor.
<!-- Category: instruction -->
<xsl:for-each-group
  select = expression
  group-by? = expression
  group-adjacent? = expression
  group-starting-with? = pattern
  group-ending-with? = pattern
  split-when? = expression
  merge-when? = expression
  composite? = boolean〔'no'〕
  collation? = { uri } >
  <!-- Content: (xsl:sort*, sequence-constructor) -->
</xsl:for-each-group>
The select attribute contains an
               expression which is evaluated to produce a
               sequence, called the population.
               [Definition: The xsl:for-each-group
                  instruction allocates the items in an input sequence into groups of
                  items (that is, it establishes a collection of sequences) based either on common
                  values of a grouping key, or on a pattern that
                  the initial or final item in a group must
                  match.] The sequence
                  constructor that forms the content of the
                  xsl:for-each-group instruction is evaluated once for each of
               these groups.
               [Definition: The sequence of items to be grouped,
                  which is referred to as the population, is determined by evaluating
                  the XPath expression contained in the
                  select attribute.]
            
[Definition: The population is treated as a sequence; the order of items in this sequence is referred to as population order.]
A group is never empty. If the population is empty, the number of groups will be zero.
The assignment of items to groups depends on the group-by, 
                  group-adjacent, group-starting-with, 
                  group-ending-with, split-when,
               and merge-when attributes. 
[ERR XTSE1080] These six attributes are mutually exclusive: it is a static error if none of these attributes is present or if more than one of them is present.
               [ERR XTSE1090] It is a static error to specify the
                        collation attribute or the
                           composite attribute if neither the
                        group-by attribute nor the group-adjacent attribute is
                     specified.
            
               [Definition: If the
                     group-by or group-adjacent attributes is present,
                  then for each item in the population a set
                  of grouping keys is calculated, as follows: the expression contained
                  in the group-by or group-adjacent attribute is
                  evaluated; the result is atomized; and any xs:untypedAtomic items
                  are cast to xs:string. If
                        composite="yes" is specified, there is a single grouping key
                     whose value is the resulting sequence; otherwise, there is a set of grouping
                     keys, consisting of the distinct atomic items present in the result
                     sequence.]
            
When calculating grouping keys for an item in the population, the 
               expression contained in the group-by 
               or group-adjacent attribute is evaluated with that 
               item as the context item, with its position in 
               population order as the 
               context position, and with the size of the
               population as the context size.
If the group-by attribute is present, and if
                  the composite attribute is omitted or takes the value
                  no, then an item in the population may
               have multiple grouping keys: that is, the group-by expression evaluates
               to a sequence, and each item in the sequence is treated as
                  a separate grouping key.  The item is included in as many groups as there
               are distinct grouping keys (which may be zero).
If the group-adjacent attribute is used, and
                  if the composite attribute is omitted or takes the value
                     no, then each item in the population
                  must have exactly one grouping key value.
               [ERR XTTE1100] It is a type error if the result of
                     evaluating the group-adjacent expression is an empty sequence or a
                     sequence containing more than one item, unless
                           composite="yes" is specified.
            
               Atomic grouping keys are compared using
               the rules of the distinct-values function, using the relevant collation.
               The relevant collation is the collation specified as the 
               effective value of the collation
               attribute, resolved if relative against the base URI of the
               xsl:for-each-group element; if there is no collation
               attribute then the default collation is
               used. Given this collation, two grouping keys K1 and K2
               are considered equal if count(distinct-values(($K1, $K2), $collation)) = 1.
            
Composite grouping keys are equal if they contain the same number of items and the items are pairwise equal when compared according to the rules in the previous paragraph.
               [ERR XTDE1110] It is a  dynamic error if the collation URI
                     specified to xsl:for-each-group (after resolving against the
                     base URI) is a collation that is not recognized by the implementation. (For
                     notes, [see ERR XTDE1035].)
            
For more information on collations, see 13.1.3 Sorting Using Collations.
The way in which an xsl:for-each-group element is
               evaluated depends on which of the six group-defining attributes is present:
If the group-by attribute is present, the items in the population are examined, in population order.
                     For each item J, the expression in the group-by
                     attribute is evaluated to produce a sequence of zero or more grouping key values. If composite="yes" is specified, there will be a single
                        grouping key, which will in general be a sequence of zero or more atomic
                        items; otherwise, there will be zero or more grouping keys, each of which
                        will be a single atomic item. For each one of these grouping keys, if there is already a group
                     created to hold items having that grouping key value, J is appended to that group; otherwise a new group is
                     created for items with that grouping key value, and J becomes its
                     first member.
An item in the population may thus be appended to zero, one, or many groups. An item will never be appended more than once to the same group; if two or more grouping keys for the same item are equal, then the duplicates are ignored. An item here means the item at a particular position within the population—if the population contains the same node at several different positions in the sequence then a group may indeed contain duplicate nodes.
The number of groups will be the same as the number of distinct grouping key values present in the population.
If the group-adjacent attribute is present, the items in the
                        population are examined, in
                     population order. If an item has the same value for the grouping key as its preceding item within
                     the population (in population order), then it is appended to the same group as its preceding item;
                     otherwise a new group is created and the item becomes its first member.
If the group-starting-with attribute is present, then its value
                        must be a pattern. 
The items in the population are examined in population order. If an item matches the pattern, or is the first item in the population, then a new group is created and the item becomes its first member. Otherwise, the item is appended to the same group as its preceding item within the population.
If the group-ending-with attribute is present, then its value
                        must be a pattern. 
The items in the population are examined in population order. If an item is the first item in the population, or if the previous item in the population matches the pattern, then a new group is created and the item becomes its first member. Otherwise, the item is appended to the same group as its preceding item within the population.
If the split-when attribute is present, then its value
                     must be an expression.
                     This expression is evaluated once for every item in the population
                     except the first. The context item is that item, the context position is its position
                     in the population, and the context size is the size of the population.
                     The expression is supplied with two variables: $group is set to the 
                     contents of the current group being constructed, and $next is the next item in the population. 
                     If the effective boolean valueXP
                     of the expression is true, then this
                  item forms the start of a new group; if it is false, the item is added to the existing
                  group.
For example:
split-when="count($group) = 3" starts a new
                     group whenever the existing group has exactly three members; that is, it partitions the
                     population into groups of size 3 (with the last group being smaller if necessary).
split-when="$next[self::h1]" starts a new
                        group whenever an h1 element is encountered. The effect is the
                     same as specifying group-starting-with="h1"
split-when="foot($group)/@continued='no'" starts a new
                        group immediately after any element having @continued="no". The effect is the
                        same as specifying group-ending-with="*[@continued='no']"
split-when="node-name($group[last()] != node-name($next)" 
                        starts a new group whenever the name of an item differs from the name of the previous
                     item. The effect is the same as specifying group-adjacent="node-name(.)".
split-when="foot($group)[self::hr] or $next[self::hr]" 
                        starts a new group immediately before and immediately after every hr
                        element. (That is, hr elements become singleton groups.)
split-when="$next ne foot($group) + 1" 
                        starts a new group whenever the current item is not equal to the previous item
                     plus one. For example 1, 2, 5, 6, 7, 10, 11 is grouped as (1, 2), (5, 6, 7),
                     (10, 11).
split-when="sum($group/string-length()) gt 40" starts a new
                     group when the sum of the string lengths of the items in the current group exceeds 40.
split-when="ends-with(foot($group), '.') and matches($next, '^\p{Lu}')" 
                        starts a new group when the last item in the current group ends with "." and the
                        next item starts with a capital letter.
split-when="deep-equal(slice($group, -2 to -1), ('', ''))" 
                        starts a new group after two consecutive zero-length strings.
split-when="count($group) gt 1 and head($group)/@name = foot($group)/@name" 
                        starts a new group if the last item in the current group has the same value for @name
                        as the first item in that group (provided they are not the same item).
If the merge-when attribute is present, then its value
                        must be an expression that is a sequence comparator.
                        [Definition: A sequence
                           comparator is an expression that evaluates two sequences of items
                        and results in a true or false value. ] The sequence comparator is
                     supplied with two variables: $group-a and $group-b,
                     each of which has the signature item()+ and shadows any variable or parameter with the same
                     name. The sequence comparator is evaluated not item by item (as with
                        split-when) but group by group. The context item is absent, the context position is the position of
                     the first sequence ($group-a) within the sequence of groups being
                     constructed, and the context size is the number of groups at the moment of
                     evaluation.
The process begins by creating singleton groups. For each item in the population a group is created, with that item's position as its grouping key, and the item as its only member.
After the groups are created, they are evaluated pairwise against the sequence comparator. The pairwise comparison begins with the first two groups, then the first and third groups, and so on until the first and last groups, then pairwise comparison moves to the second and third groups, then the second and fourth groups, and so forth. Pairwise comparison proceeds until the next-to-last and last groups are evaluated.
$group-a is set to the items in the first group in a pair of 
                     groups, G1, and $group-b to the second group, 
                     G2.
If the effective boolean valueXP of
                     the sequence comparator is true, then all items in G2
                     are merged with the items in G1, preserving original sequence order,
                     and the grouping keys of G2 are merged with those of G1,
                     sorted in ascending order. The process of merging two groups is identical to
                     the process described in 15 Merging to merge sequences. Pairwise
                     comparison then restarts from the beginning with the first pair of groups, as
                     described above. 
The process is repeated until it is the case that there is no pair of groups
                     for which the sequence
                        comparator evaluates to true, or there is only one
                     group.
Every item in the population will be appended to exactly one group.
Unlike other grouping methods, a group created by merge-when may
                     have more than one grouping key. Although those grouping keys are not
                     significant for the semantics of the grouping operation, they can be used to
                     examine the original population, and they are useful for the merge
                     operation.
merge-when is most effective for building clusters or
                     networks. For example:
                           merge-when="$group-a/(@id | is-related-to) = $group-b/(@id |
                              is-related-to)" creates groups of elements. In a group with
                           more than one item, each item has at least one other item that it relates
                           to, or that relates to the same item it relates to. That is, each group
                           represents a kind of network cluster.
Suppose we have elements containing text units where word tokens of
                           significance are wrapped in children tok elements.
                              merge-when="every $a in $group-a, $b in $group-b satisfies
                              count($a/tok[. = $b/tok]) ge 3" creates groups of possibly
                           related texts. In groups of more than one item, any pair of texts has
                           at least three common word-tokens. 
merge-when="some $a in $group-a, $b in $group-b satisfies
                              count($a/tok[. = $b/tok]) ge 3" creates groups of related
                           texts, likely less cohesive than in the previous example. In groups of
                           more than one item, every text has at least one other text with which it
                           has three word-tokens in common. 
                        
merge-when="not($group-a = $group-b)" creates maximal groups
                           of distinct values. For example, 4, 1, 5, 1, 9, 4, 1 is
                           grouped as 4, 1, 5, 9 (with grouping keys 1, 2, 3,
                              5), 1, 4 (with grouping keys 4, 6),
                           and 1 (with grouping key 7). Note, the first
                           group is always the result of the distinct-values
                           function, and the final group always contains the items that appear most
                           frequently in the original population. 
 In merge-when="count($group-a) le 3 and
                              count(distinct-values(($group-a, $group-b) ! node-name(.))) eq 1" no
                           group has more than three items. Within each group, every item has the
                           same node name. The effect is the same as specifying
                           group-by="node-name(.)" then subgrouping with 
                           split-when="count($group) = 3".
merge-when="some $a in $group-a, $b in $group-b satisfies
                              tokenize($a/@class) = tokenize($b/@class)" creates groups of
                           elements. In a group with multiple items, every item has at least one
                           other item that has at least one of its tokens in @class.
merge-when="some $a in $group-a, $b in $group-b satisfies abs($a -
                              $b) le 2" creates groups of numerals. Each numeral has at least
                           one other numeral where the two differ by two or less. For example,
                              3, 9, 4, 1, 10, 6 is grouped as (3, 4, 1, 6)
                           (with grouping keys 1, 3, 4, 6) and (9, 10) (with
                           grouping keys 2, 5).
merge-when="some $a in $group-a, $b in $group-b satisfies abs($a -
                              $b) le xs:dayTimeDuration('PT2H')" creates groups of time
                           values. Within groups of more than one item, each time value has at least
                           one other time value that is two hours or less apart. For example,
                              xs:time("11:12:00Z"), xs:time("13:24:55Z"),
                              xs:time("09:44:10Z"), xs:time("14:09:22Z"),
                              xs:time("08:16:30Z") is grouped as (xs:time("11:12:00Z"),
                              xs:time("09:44:10Z"), xs:time("08:16:30Z")) (with grouping keys
                              1, 3, 5) and (xs:time("13:24:55Z"),
                              xs:time("14:09:22Z")) (with grouping keys 2,
                           4).
                           merge-when="every $a in $group-a, $b in $group-b satisfies
                              (string-to-codepoints($a) = string-to-codepoints($b))" creates
                           groups of strings. In groups with more than one member, each member
                           shares at least one codepoint with every other member. For example,
                              ("animal", "bison", "cat", "dog", "zebra") is grouped as
                              ("animal", "bison", "zebra") (linking letters are a, i,
                           n, and b), ("cat") (although it shares letter a with
                           "animal," the group has already been merged with "bison," which has no
                           common letter with "cat"), and ("dog"). The grouping keys
                           are 1, 2, 5, 3, and 4,
                           respectively.
In all cases the order of items within each group is predictable, and reflects the original population order, in that the items are processed in population order and each item is appended at the end of zero or more groups.
Note:
As always, a different algorithm may be used if it achieves the same effect.
[Definition: For each group, the item within the group that is first in population order is known as the initial item of the group.]
The sequence constructor contained in the
                  xsl:for-each-group element is evaluated once for each of the
                  groups, in processing order. The sequences that result are concatenated, in
                  processing order, to form the result
               of the xsl:for-each-group element. Within the sequence constructor, the context item is the initial item of the relevant group, the context position is the position of this
                  group in the processing order of the groups, and the context size is the number of groups This has the effect
               that within the sequence constructor, a call on
                  position() takes successive values 1, 2, ... last().
Two pieces of information are available during the processing of each group (that is,
               while evaluating the sequence constructor contained in the
                  xsl:for-each-group instruction, and also while evaluating the
               sort key of a group as expressed by the select attribute or sequence
               constructor of an xsl:sort child of the
                  xsl:for-each-group element):
[Definition: The current group is the group itself, as a sequence of items].
[Definition: The current grouping key is a single atomic item, or in the case of a composite key, a sequence of atomic items, containing the grouping key of the items in the current group.]
Information about the current group
               and the current grouping key is held in the dynamic context, and
               is available using the current-group and
                  current-grouping-key functions respectively.
In XSLT 2.0, the current group and the
                  current grouping key were passed unchanged through calls of
                  xsl:apply-templates and xsl:call-template, and
               also xsl:apply-imports and xsl:next-match. This
               behavior is retained in XSLT 3.0 except in the case where streaming is in use:
               specifically, if the xsl:apply-templates,
                  xsl:call-template, xsl:apply-imports, or
                  xsl:next-match instruction occurs within a  construct (typically, within an
                  xsl:source-document instruction, or within a streamable template rule), then the current group and current grouping key are set
               to absent in the called template. The reason for this is to allow
               the streamability of an xsl:for-each-group instruction to be
               assessed statically, as described in 12.5.19 Streamability ofSG.
Returns the group currently being processed by an xsl:for-each-group
             instruction.
| fn:current-group() as item()* | 
This function is deterministicFO, context-dependentFO, and focus-independentFO.
The evaluation context for XPath expressions includes a component called the current group, which is a sequence.
The function current-group returns the sequence
            of items making up the current group.
The current group is bound during evaluation of the
               xsl:for-each-group instruction. If no
               xsl:for-each-group instruction is being evaluated, the current group
            will be absent: that is, any reference to it will cause a dynamic
            error.
The effect of invocation constructs on the current group is as follows:
If the invocation construct is contained within a 
                   (for example, if it is within an
                     xsl:source-document instruction with the attribute streamable="yes", 
                  or within a streamable template), then the
                  invocation construct sets the current group to absent. In this
                  situation the scope of the current group is effectively static; it can only be
                  referenced within the body of the xsl:for-each-group instruction
                  to which it applies.
If the invocation construct is a (static or dynamic) function call, then the invocation construct sets the current group to absent.
Otherwise the invocation construct leaves the current group unchanged. In this situation the scope of the current group is effectively dynamic: it can be referenced within called templates and attribute sets.
The current group is initially absent
            during the evaluation of global variables and stylesheet parameters, during the
         evaluation of the use attribute or contained sequence constructor of xsl:key,
         and during the evaluation of the initial-value attribute of xsl:accumulator
         and the select attribute of contained sequence constructor of xsl:accumulator-rule.
            [ERR XTSE1060] It is a static error if the
                     current-group function is used within a pattern.
         
            [ERR XTDE1061] It is a dynamic error if the
                     current-group function is used when the current group is
                     absent
                  , or when it is invoked in the course of evaluating a
                     pattern. The error may be reported statically if it
                  can be detected statically.
         
Like other XSLT extensions to the dynamic evaluation context,
            the current group is not retained as part of the closure of a
            function value. This means that the expression current-group#0 is valid and
            returns a function value, but any invocation of this function will fail with a dynamic
            error [see ERR XTDE1061]. 
Returns the grouping key of the group currently being processed using the
               xsl:for-each-group
             instruction.
| fn:current-grouping-key() as xs:anyAtomicType* | 
This function is deterministicFO, context-dependentFO, and focus-independentFO.
The evaluation context for XPath expressions includes a component called the current grouping key, which is a sequence of atomic items. The current grouping key is the grouping key shared in common by all the items within the current group.
The function current-grouping-key returns the current grouping key.
The current grouping key is bound during evaluation of an
               xsl:for-each-group instruction that has a group-by, 
               group-adjacent, or merge-when attribute. If no
                  xsl:for-each-group instruction is being evaluated, the current
               grouping key will be absent, which means that any reference to it
               causes a dynamic error. The current grouping key is also set to absent during the evaluation of an xsl:for-each-group
               instruction with a group-starting-with, group-ending-with,
               or split-when attribute.
The effect of invocation constructs on the current grouping key is as follows:
If the invocation construct is contained within a 
                   (for example, if it is within an
                     xsl:source-document instruction with the attribute streamable="yes", 
                  or within a streamable template), then the
                  invocation construct sets the current grouping key to absent.
                  In this situation the scope of the current group is effectively static; it can
                  only be referenced within the body of the xsl:for-each-group
                  instruction to which it applies.
If the invocation construct is a (static or dynamic) function call, then the invocation construct sets the current grouping key to absent.
Otherwise the invocation construct leaves the current grouping key unchanged. In this situation the scope of the current group is effectively dynamic: it can be referenced within called templates and attribute sets.
The current grouping key is initially absent
            during the evaluation of global variables and stylesheet parameters, during the
            evaluation of the use attribute or contained sequence constructor of xsl:key,
            and during the evaluation of the initial-value attribute of xsl:accumulator
            and the select attribute of contained sequence constructor of xsl:accumulator-rule.
While an xsl:for-each-group instruction with a group-by or
               group-adjacent attribute is being evaluated, the
            current grouping key will be a single atomic
            item if composite="no" is specified (explicitly
               or implicitly), or a sequence of atomic items if composite="yes" is
               specified.
         
While an xsl:for-each-group instruction with a merge-when 
            attribute is being evaluated, the
            current grouping key will be a sequence of 
            integers, indicating the positions of the items within the original sequence.
         
At other times, the current grouping key will be absent.
The grouping keys of
               all items in a group are not necessarily identical. For example, one might be an
                  xs:float while another is a numerically equal
               xs:decimal. The current-grouping-key
            function returns the grouping key of the initial item in the group, after atomization and
            casting of xs:untypedAtomic items to xs:string.
The function takes no arguments.
            [ERR XTSE1070] It is a static error if the
                     current-grouping-key function is used within a pattern.
         
            [ERR XTDE1071] It is a dynamic error if the
                     current-grouping-key function is used when the current
                  grouping key is absent, or when it is invoked in the course of evaluating a pattern.
                  The error may be reported statically if it can be detected
                  statically.
         
Like other XSLT extensions to the dynamic evaluation context,
            the current grouping key is not retained as part of the closure of a
            function value. This means that the expression current-grouping-key#0 is
            valid and returns a function value, but any invocation of this function will fail with a
            dynamic error [see ERR XTDE1071]. 
               [Definition: There is a total ordering among groups referred to as the order of first appearance. A
                  group G is defined to precede a group H in order of first
                  appearance if the initial item of
                     G precedes the initial item of H in population order. If
                  two groups G and H have the same initial item (because the
                  item is in both groups) then G precedes H if the grouping key of G precedes the
                  grouping key of H in the sequence that results from evaluating the
                     group-by expression of this initial item.]
            
               [Definition: There is another total ordering among groups referred to as
                     processing order. If group R precedes group
                     S in processing order, then in the result sequence returned by the
                     xsl:for-each-group instruction the items generated by
                  processing group R will precede the items generated by processing group
                     S.]
            
If there are no xsl:sort elements immediately within the
                  xsl:for-each-group element, the processing order of the groups is the order of
                  first appearance.
Otherwise, the xsl:sort elements immediately within the
                  xsl:for-each-group element define the processing order of the
                  groups (see 13 Sorting). They do
               not affect the order of items within each group. Multiple sort key components are allowed, and are
               evaluated in major-to-minor order. If two groups have the same values for all their
               sort key components, they are processed in order of first appearance if
               the sort key specification is
                  stable, otherwise in an implementation-dependent order.
The select
               expression of an xsl:sort
               element is evaluated once for each group. During
               this evaluation, the context item is the
                  initial item of the group, the context position is the position of this item
               within the set of initial items (that is, one item for each group in the population) in population order, the context
                  size is the number of groups, the current group is
               the group whose sort key value is being
               determined, and the current grouping key is the grouping key for
               that group. If the xsl:for-each-group instruction uses the
               group-starting-with, group-ending-with,
                  or split-when
               attributes, then the current grouping key is absent.
For example, this means that if the grouping
                     key is @category, you can sort the groups in order of
                  their grouping key by writing <xsl:sort
                     select="current-grouping-key()"/>; or you can sort the groups in
                  order of size by writing <xsl:sort
                     select="count(current-group())"/>
               
The following example groups a list of nodes based on common values. The resulting groups are numbered and sorted, and a total is calculated for each group.
Source XML document:
<cities> <city name="Milano" country="Italia" pop="5"/> <city name="Paris" country="France" pop="7"/> <city name="München" country="Deutschland" pop="4"/> <city name="Lyon" country="France" pop="2"/> <city name="Venezia" country="Italia" pop="1"/> </cities>
More specifically, the aim is to produce a four-column table, containing one row
                  for each distinct country. The four columns are to contain first, a sequence
                  number giving the number of the row; second, the name of the country, third, a
                  comma-separated alphabetical list of the city names within that country, and
                  fourth, the sum of the pop attribute for the cities in that
                  country.
Desired output:
<table> <tr> <th>Position</th> <th>Country</th> <th>List of Cities</th> <th>Population</th> </tr> <tr> <td>1</td> <td>Italia</td> <td>Milano, Venezia</td> <td>6</td> </tr> <tr> <td>2</td> <td>France</td> <td>Lyon, Paris</td> <td>9</td> </tr> <tr> <td>3</td> <td>Deutschland</td> <td>München</td> <td>4</td> </tr> </table>
Solution:
<table xsl:version="3.0" xsl:expand-text="yes" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <tr> <th>Position</th> <th>Country</th> <th>City List</th> <th>Population</th> </tr> <xsl:for-each-group select="cities/city" group-by="@country"> <tr> <td>{position()}</td> <td>{current-grouping-key()}</td> <td> <xsl:for-each select="current-group()/@name"> <xsl:sort select="."/> <xsl:if test="position() ne 1">, </xsl:if> {.} </xsl:for-each> </td> <td>{sum(current-group()/@pop)}</td> </tr> </xsl:for-each-group> </table>
Sometimes it is necessary to use a composite grouping key: for example, suppose the source document is similar to the one used in the previous examples, but allows multiple entries for the same country and city, such as:
<cities> <city name="Milano" country="Italia" year="1950" pop="5.23"/> <city name="Milano" country="Italia" year="1960" pop="5.29"/> <city name="Padova" country="Italia" year="1950" pop="0.69"/> <city name="Padova" country="Italia" year="1960" pop="0.93"/> <city name="Paris" country="France" year="1951" pop="7.2"/> <city name="Paris" country="France" year="1961" pop="7.6"/> </cities>
Now suppose we want to list the average value of @pop for each
                  (country, name) combination. One way to handle this is to concatenate the parts of
                  the key, for example <xsl:for-each-group select="concat(@country, '/',
                     @name)">. A second solution is to nest one
                     xsl:for-each-group element directly inside another. XSLT 3.0
                  introduces a third option, which is to define the grouping key as composite:
<xsl:for-each-group select="cities/city" group -by="@name, @country" composite="yes" expand-text="yes"> <p>{current-grouping-key()[1]}, {current-grouping-key()[2]}: {avg(current-group()/@pop)""<t>{current-grouping-key()[1]}, {current-grouping-key()[2]}: {avg(current-group()/@pop)"/> </p> </xsl:for-each-group>
The next example identifies a group not by the presence of a common value, but
                  rather by adjacency in document order. A group consists of an h2
                  element, followed by all the p elements up to the next
                     h2 element.
Source XML document:
<body> <h2>Introduction</h2> <p>XSLT is used to write stylesheets.</p> <p>XQuery is used to query XML databases.</p> <h2>What is a stylesheet?</h2> <p>A stylesheet is an XML document used to define a transformation.</p> <p>Stylesheets may be written in XSLT.</p> <p>XSLT 2.0 introduces new grouping constructs.</p> </body>
Desired output:
<chapter> <section title="Introduction"> <para>XSLT is used to write stylesheets.</para> <para>XQuery is used to query XML databases.</para> </section> <section title="What is a stylesheet?"> <para>A stylesheet is used to define a transformation.</para> <para>Stylesheets may be written in XSLT.</para> <para>XSLT 2.0 introduces new grouping constructs.</para> </section> </chapter>
Solution:
<xsl:template match="body"> <chapter> <xsl:for-each-group select="*" group-starting-with="h2"> <section title="{self::h2}"> <xsl:for-each select="current-group()[self::p]"> <para><xsl:value-of select="."/></para> </xsl:for-each> </section> </xsl:for-each-group> </chapter> </xsl:template>
The use of title="{self::h2}" rather than title="{.}" is
                  to handle the case where the first element is not an h2 element.
The next example illustrates how a group of related elements can be identified by
                  the last element in the group, rather than the first. Here the absence of the
                  attribute continued="yes" indicates the end of the group.
Source XML document:
<doc> <page continued="yes">Some text</page> <page continued="yes">More text</page> <page>Yet more text</page> <page continued="yes">Some words</page> <page continued="yes">More words</page> <page>Yet more words</page> </doc>
Desired output:
<doc> <pageset> <page>Some text</page> <page>More text</page> <page>Yet more text</page> </pageset> <pageset> <page>Some words</page> <page>More words</page> <page>Yet more words</page> </pageset> </doc>
Solution:
<xsl:template match="doc"> <doc> <xsl:for-each-group select="*" group-ending-with="page[not(@continued='yes')]"> <pageset> <xsl:for-each select="current-group()"> <page><xsl:value-of select="."/></page> </xsl:for-each> </pageset> </xsl:for-each-group> </doc> </xsl:template>
The next example shows how an item can be added to multiple groups. Book titles will be added to one group for each indexing term marked up within the title.
Source XML document:
<titles> <title>A Beginner's Guide to <ix>Java</ix></title> <title>Learning <ix>XML</ix></title> <title>Using <ix>XML</ix> with <ix>Java</ix></title> </titles>
Desired output:
<h2>Java</h2> <p>A Beginner's Guide to Java</p> <p>Using XML with Java</p> <h2>XML</h2> <p>Learning XML</p> <p>Using XML with Java</p>
Solution:
<xsl:template match="titles"> <xsl:for-each-group select="title" group-by="ix"> <h2><xsl:value-of select="current-grouping-key()"/></h2> <xsl:for-each select="current-group()"> <p><xsl:value-of select="."/></p> </xsl:for-each> </xsl:for-each-group> </xsl:template>
In this example, the membership of a node within a group is based both on
                  adjacency of the nodes in document order, and on common values. In this case, the
                  grouping key is a boolean condition, true or false, so the effect is that a
                  grouping establishes a maximal sequence of nodes for which the condition is true,
                  followed by a maximal sequence for which it is false, and so on.
Source XML document:
<p>Do <em>not</em>: <ul> <li>talk,</li> <li>eat, or</li> <li>use your mobile telephone</li> </ul> while you are in the cinema.</p>
Desired output:
<p>Do <em>not</em>:</p> <ul> <li>talk,</li> <li>eat, or</li> <li>use your mobile telephone</li> </ul> <p>while you are in the cinema.</p>
Solution:
This requires creating a p element around the maximal sequence of
                  sibling nodes that does not include a ul or ol
                  element.
This can be done by using group-adjacent, with a grouping key that is
                  true if the element is a ul or ol element, and false
                  otherwise:
<xsl:template match="p"> <xsl:for-each-group select="node()" group-adjacent="self::ul or self::ol"> <xsl:choose> <xsl:when test="current-grouping-key()"> <xsl:copy-of select="current-group()"/> </xsl:when> <xsl:otherwise> <p> <xsl:copy-of select="current-group()"/> </p> </xsl:otherwise> </xsl:choose> </xsl:for-each-group> </xsl:template>
Consider a map with composite keys that might appear in a JSON document as:
{
   "Africa/Abidjan": { "offset": "+00:00", "DST-offset": "+00:00" },
   "Africa/Algiers": { "offset": "+01:00", "DST-offset": "+01:00" },
   "Africa/Nairobi": { "offset": "+03:00", "DST-offset": "+03:00" },
   "America/Anchorage": { "offset": "-09:00", "DST-offset": "-08:00" },
   "America/Los_Angeles": { "offset": "-08:00", "DST-offset": "-07:00" },
   "Asia/Dubai": { "offset": "+04:00", "DST-offset": "+04:00" },
   "Asia/Kolkata": { "offset": "+05:30", "DST-offset": "+05:30" }                 
}
                  And suppose we wish to group this into a two-level map, thus:
{
  "Africa": {
    "Abidjan": { "offset": "+00:00", "DST-offset": "+00:00" },
    "Algiers": { "offset": "+01:00", "DST-offset": "+01:00" },
    "Nairobi": { "offset": "+03:00", "DST-offset": "+03:00" }
  },
  "America": {
    "Anchorage": { "offset": "-09:00", "DST-offset": "-08:00" },
    "Los_Angeles": { "offset": "-08:00", "DST-offset": "-07:00" }
  },
  "Asia": {
    "Dubai": { "offset": "+04:00", "DST-offset": "+04:00" },
    "Kolkata": { "offset": "+05:30", "DST-offset": "+05:30" }
  }
}
                  This can be achieved as follows:
<xsl:map> <xsl:for-each-group select="json-doc('tz.json') => map:pairs()" group-by="substring-before(?key, '/')"> <xsl:map-entry key="current-grouping-key()"> <xsl:map> <xsl:for-each select="current-group()"> <xsl:map-entry key="substring-after(?key, '/')" select="?value"/> </xsl:for-each> </xsl:map> </xsl:map-entry> </xsl:for-each-group> </xsl:map>
Consider a sequence of atomic values that we wish to group according to cluster. For the sake of illustration we restrict ourselves to integers. For each integer, the group it is in should include every other integer of proximate distance two or less.
<xsl:variable name="ages" as="xs:integer*" select="5, 24, 9, 5, 6, 8, 36, 38, 28">
We want to return the following four groups:
map { 1 : (5, 9, 5, 6, 8), 2 : (24), 3 : (36, 38), 4 : (28)}
                  Solution:
<xsl:map> <xsl:for-each-group select="$ages" merge-when="function($a, $b){abs($a - $b) le 2}"> <xsl:map-entry key="position()" select="current-group()"/> </xsl:for-each-group> </xsl:map>
The next example shows how the component parts of multiple versions of a text can be collated when they refer to overlapping reference systems. Suppose we have a text, with various commentaries and glosses, and we wish to collate them by text cluster, for online presentation.
<body type="source"> <div ref="7a1">[text]</div> <div ref="7a2">[text]</div> <div ref="7a3">[text]</div> <div ref="7a4">[text]</div> <!-- . . . --> </body>
<body type="commentary"> <div ref="7a1 7a2">[commentary A]</div> <!-- . . . --> </body>
<body type="commentary"> <div ref="7a2 7a3">[commentary B]</div> <!-- . . . --> </body>
<body type="gloss"> <div ref="7a1">[gloss A]</div> <!-- . . . --> </body>
<body type="gloss"> <div ref="7a4">[gloss B]</div> <!-- . . . --> </body>
We wish to collate text portions, and display the grouped clusters in an HTML fragment:
<div class="edition"> <div class="text-cluster"> <div class="ref">7a1</div> <div class="ref">7a2</div> <div class="ref">7a3</div> <div class="source">[text]</div> <div class="commentary">[commentary A]</div> <div class="commentary">[commentary B]</div> <div class="gloss">[gloss A]</div> </div> <div class="text-cluster"> <div class="ref">7a4</div> <div class="source">[text]</div> <div class="gloss">[gloss B]</div> </div> </div>
In this solution, we bind all the texts to a variable, $versions, 
               and we pass a template copy of the desired HTML output through a designated XSLT mode. 
               At the appropriate place, we collate the versions by using group-by-cluster:
<xsl:template match="html:div[@class eq 'edition']" mode="collate-versions"> <xsl:copy> <xsl:copy-of select="@*"/> <xsl:for-each-group select="$versions//body/div" merge-when="function($a, $b){tokenize($a/@ref) = tokenize($b/@ref)}"> <div class="text-cluster"> <xsl:for-each select="distinct-values(current-group() ! tokenize(@ref))"> <div class="ref"> <xsl:value-of select="."/> </div> </xsl:for-each> <xsl:for-each-group select="current-group()" group-by="../@type"> <div> <xsl:attribute name="class" select="current-grouping-key()"/> <xsl:apply-templates mode="#current"/> </div> </xsl:for-each-group> </div> </xsl:for-each-group> </xsl:copy> </xsl:template>
The xsl:merge instruction allows a sorted sequence of items to be
            constructed by merging several input sequences. Each
            input sequence must have a merge key (one or more
            atomic items that can be computed as a function of the items in the sequence); the
            input sequence must either already be sorted on the value of
            its merge keys, or pre-sorting on these values must be requested. 
            The merge keys for the different input sequences must be compatible in the sense that key
               values from an item in one sequence are always comparable with key values from an
               item in a different sequence.
For example, if two log files contain details of events sorted by date and time, then
            the xsl:merge instruction can be used to combine these into a single
            sequence that is also sorted by date and time.
The data written to the output sequence can be computed in an arbitrary way from the data in the input sequences, provided it follows the ordering of the input sequences.
The xsl:merge instruction can be used to merge several sequences of
            items that all have the same structure (more precisely, sequences whose merge keys are
            computed in the same way): for example, log files created by the same application
            running on different machines in a server farm. Alternatively,
               xsl:merge can be used to merge sequences that have different
            structure (sequences whose merge keys are computed in different ways), provided that the
            computed merge keys are compatible: an example might be two log files created by
            different applications, using different XML vocabularies, that both contain timestamped
            events but represent the timestamp in different ways. The
               xsl:merge-source element represents a set
               of input sequences that follow common rules, including the rules for
            computing the merge key. The xsl:merge operation may take any number of
               xsl:merge-source elements representing different rules for input sequences, and each xsl:merge-source
            element may describe any number (zero or more) of input sequences. The number of input
            sequences to the merging operation is thus fixed only at the
               time the xsl:merge instruction is evaluated, and
                  may vary from one evaluation to another.
The following examples illustrate some of the possibilities. The detailed explanation of the constructs used follows later in this section.
This example takes as input a homogeneous collection of XML log files each of which
               contains a sorted sequence of event elements with a
                  timestamp attribute validated as an instance of
                  xs:dateTime. It merges the events from the input files into a single
               sorted output file.
<xsl:result-document href="merged-events.xml"> <events> <xsl:merge> <xsl:merge-source for-each-source="uri-collection('log-files')" select="events/event"> <xsl:merge-key select="@timestamp"/> </xsl:merge-source> <xsl:merge-action> <xsl:copy-of select="current-merge-group()"/> </xsl:merge-action> </xsl:merge> </events> </xsl:result-document>
The example assumes that there are several input files each
                  of which has a structure similar to the following, in which the
                  timestamp attribute has a typed value that is an instance of
                  xs:dateTime:
<events> <event timestamp="2009-08-20T12:01:01Z">Transaction T1234 started</event> <event timestamp="2009-08-20T12:01:08Z">Transaction T1235 started</event> <event timestamp="2009-08-20T12:01:12Z">Transaction T1235 ended</event> <event timestamp="2009-08-20T12:01:15Z">Transaction T1234 ended</event> </events>
The output file will have the same structure, and will contain copies of all the
                  event elements from all of the input files, in sorted order. Note that multiple events with the same timestamp can occur
                  either within a single file or across multiple files: the order of appearance of
                  these events in the output file corresponds to the order of the log files within
                  the collection (which might or might not be predictable, depending on the
                  implementation).
This example takes as input two log files with different structure, producing a single merged output in which the entries have a common structure:
<xsl:result-document href="merged-events.xml"> <events> <xsl:merge> <xsl:merge-source select="doc('log-file-1.xml')/events/event"> <xsl:merge-key select="@timestamp"/> </xsl:merge-source> <xsl:merge-source select="doc('log-files-2.xml')/log/day/record"> <xsl:merge-key select="dateTime(../@date, time)"/> </xsl:merge-source> <xsl:merge-action> <xsl:apply-templates select="current-merge-group()" mode="standardize-log-entry"/> </xsl:merge-action> </xsl:merge> </events> </xsl:result-document>
Here the first input file has a structure similar to that shown in the previous example, while the second input has a different structure, of the form:
<log> <day date="2009-08-20"> <record> <time>12:01:09-05:00</time> <message>Temperature 15.4C</message> </record> <record> <time>12:03:00-05:00</time> <message>Temperature 18.2C</message> </record> </day> </log>
The templates in mode standardize-log-entry convert the log entries to a
               common output format, for example:
<xsl:template match="event" mode="standardize-log-entry" as="schema-element(event)"> <xsl:copy-of select="." validation="preserve"/> </xsl:template> <xsl:template match="record" mode="standardize-log-entry" as="schema-element(event)"> <event timestamp="{dateTime(../@date, time)}" xsl:validation="strict"> <xsl:value-of select="message"/> </event> </xsl:template>
Note:
The xsl:merge instruction is designed to enable streaming of data,
               so that there is no need to allocate memory to hold the input sequences. However, it can also be used in cases where streamed
                  processing is not possible, for example when the input needs to be
               sorted.
[Definition: A merge
                     source definition is the definition of one kind of input to the merge
                  operation. It selects zero or more merge
                     input sequences, and it includes a 
               merge key specification to define
                  how the merge key
                        values are computed for each such merge input
                  sequence.] A merge source definition corresponds to an
                  xsl:merge-source element in the stylesheet.
[Definition: A merge input sequence is an arbitrary sequenceDM of items which is already sorted according to the merge key specification for the corresponding merge source definition.]
[Definition: A merge
                     key specification consists of one or more adjacent
                     xsl:merge-key elements which together define how the 
               merge input sequences selected by a
                     merge source definition are
                  sorted. Each xsl:merge-key element defines one 
               merge key component.] For
               example, a merge key specification for a log file might specify two merge key
               components, date and time.
[Definition: A merge key
                     component specifies one component of a merge key specification; it
                  corresponds to a single xsl:merge-key element in the
                  stylesheet.]
[Definition: For each item in a merge input sequence, a value is computed for each merge key component within the merge key specification. The value computed for an item by using the Nth merge key component is referred to as the Nth merge key value of that item.] A merge key value may be any sequence of atomic items (including an empty sequence).
[Definition: The ordered collection of merge key values computed for one item in a merge input sequence (one for each merge key component within the merge key specification) is referred to as a combined merge key value.] Since each merge key value is (in general) a sequence of atomic items, the combined merge key value is modeled as an array of such sequences.
[Definition: A merge
                     activation is a single evaluation of the sequence constructor contained
                  within the xsl:merge-action element, which occurs once for each
                  distinct combined merge key value.]
xsl:merge Instruction<!-- Category: instruction -->
<xsl:merge>
  <!-- Content: (xsl:merge-source+, xsl:merge-action, xsl:fallback*) -->
</xsl:merge>
The effect of the xsl:merge instruction is to produce a sorted
               result sequence from a number of input sequences.
The input sequences to the merge operation are defined by the
                  xsl:merge-source child elements, as described in the next
               section.
The sequence constructor contained in the
                  xsl:merge-action element is evaluated once for each distinct
                  combined merge key value to form a partial result sequence.
               The result of the xsl:merge instruction is the concatenation of
               these partial result sequences. For example, the action might be to copy the items
               from all the input sequences to the result sequence without change; or it might be to
               select the items from one input sequence in preference to the others. In the general
               case, the items in the partial result sequence are produced by an arbitrary
               computation that has access to the items (from the various input sequences) that
               share the same value for the composite merge key.
The xsl:merge-source and
                  xsl:merge-action elements are described in the following
               sections.
Any xsl:fallback children of the xsl:merge
               instruction are ignored by an XSLT 3.0 processor, but are used by an XSLT 1.0 or XSLT
               2.0 processor to perform fallback processing.
Note:
An xsl:merge instruction that has no input sequences returns an
                  empty sequence. An xsl:merge instruction with a single input
                  sequence performs processing that is very similar in concept to
                     xsl:for-each-group with the group-adjacent
                  attribute, except that it requires the input to be sorted on the grouping key.
<xsl:merge-source
  name? = ncname
  for-each-item? = expression
  for-each-source? = expression
  select = expression
  streamable? = boolean
  use-accumulators? = tokens〔''〕
  sort-before-merge? = boolean〔'no'〕
  validation? = "strict" | "lax" | "preserve" | "strip"
  type? = eqname >
  <!-- Content: xsl:merge-key+ -->
</xsl:merge-source>
Each xsl:merge-source element defines one or more merge input sequences.
The name attribute provides a means of
               distinguishing items from different merge sources within the
                  xsl:merge-action instructions. If the name attribute
               is present on an xsl:merge-source element, then it must not be equal
               to the name attribute of any sibling xsl:merge-source
               element. If the name attribute is absent, then an implementation-dependent name, different from all explicitly specified
               names, is allocated to the merge source.
[ERR XTSE3195] If the for-each-item attribute is present then the
                        for-each-source, use-accumulators, and streamable attributes
                     must all be absent. If either or both of the
                        use-accumulators or streamable attributes is present 
                     then the for-each-source attribute must be present. If the
                        for-each-source attribute is present then the
                     for-each-item attribute must be absent. 
                     
The use-accumulators attribute defines the
               set of accumulators that are applicable to the streamed document, as explained in
                  19.2 Applicability of Accumulators.
If neither of
                     for-each-item and for-each-source is
               present, the xsl:merge-source element defines a single
               merge input sequence. This sequence is the result of evaluating the expression in the
                  select attribute. This is evaluated using the dynamic context of the
               containing xsl:merge instruction. This sequence will be merged with
               the sequences defined by other xsl:merge-source elements, if
               present.
When the for-each-item
               attribute is present, the xsl:merge-source element defines a
               collection of merge input sequences. The selection of items in these input sequences
               is a two-stage process: the for-each-item attribute of the
                  xsl:merge-source element is an expression that selects a sequence
               of anchor items, and for each anchor item, the select
               attribute is evaluated to select the items that make up one merge input sequence. The
                  for-each-item expression is evaluated with
               the dynamic context of the containing xsl:merge instruction, while
               the select attribute is evaluated with the focus for the evaluation as follows:
The context item is the anchor item
The context position is the position of the anchor item within the sequence of anchor items
The context size is the number of anchor items.
When the for-each-source attribute is
               present, its value must be an expression that returns a sequence of URIs. 
               The expression is evaluated with the same
               dynamic context as the containing xsl:merge instruction. The
               expected type of the expression is xs:string*, and the actual result of
               the expression is converted to this type using the coercion rules. Each of these URIs is used to obtain a
               document node. Each must be a valid URI reference. If it is an
               absolute URI reference, it is used as is; if it is a relative URI reference, it is
               made absolute by resolving it against the base URI of the
                  xsl:merge-source element. The process of obtaining a document
               node given a URI is the same as for the doc function, and may trigger the same error conditions.
               However, unlike the doc function, the
                  xsl:merge instruction offers no guarantee that the resulting
               document will be stable (that is, that multiple calls specifying the same URI will
               return the same document). The resulting document nodes act as the anchor
                  items. These anchor items are then used in the same way as a sequence of
               anchor items selected directly using the for-each-item attribute:
               in particular, the focus is
               determined in the same way.
Note:
Examples of expressions that return a sequence of URIs are:
for-each-source="'inputA.xml', 'inputB.xml'"
for-each-source="(1 to $N) ! ('input' || $N || '.xml')"
for-each-source="uri-collection('input/dir/')
Relative URIs are resolved relative to the base URI of the
                     xsl:merge-source element.
The attributes validation and
                  type are used to control schema validation of documents read by
               virtue of their appearance in the result of the for-each-source
               expression. These attributes are mutually exclusive [see ERR XTSE1505]. 
               
               If the for-each-source attribute is absent, then the
                  validation and type attributes must
               both be absent. The process of validation follows
               the rules defined in 25.4 Validation.
If the sort-before-merge attribute is absent or has
               the value no, then each merge input sequence must already
               be in the correct order for merging (a dynamic error occurs if it is not). If the
               attribute is present with the value yes, then each input sequence will
               first be sorted to ensure that it is in the correct order. 
                  The sorting is carried out as if by evaluating an xsl:perform-sort 
                  instruction with xsl:sort children corresponding one-to-one with 
                  the xsl:merge-key children of the xsl:merge-source 
                  element, differing only (a) in the change of element name, 
                  and (b) in the addition of the attribute stable="yes" to the first such element.
                  
               
The following xsl:merge-source element selects two anchor items
                  (the root nodes of two documents), and for each of these it selects an input
                  sequence consisting of selected event elements within the relevant
                  document.
<xsl:merge-source for-each-source="'log-A.xml', 'log-B.xml'" streamable="yes" select="events/event"> <xsl:merge-key select="@timestamp" order="ascending"/> </xsl:merge-source>
This example can be extended to merge any number of input documents with the same structure:
<xsl:merge-source for-each-source="uri-collection('log-collection')" streamable="yes" select="events/event"> <xsl:merge-key select="@time" order="ascending"/> </xsl:merge-source>
In both the above examples the anchor items are document nodes, and the items in the input sequence are elements within the document that is rooted at this node. This is a common usage pattern, but by no means the only way in which the construct can be used.
The number of anchor items selected by an xsl:merge-source element,
               and therefore the number of input sequences, is variable, but the input sequences
               selected by one xsl:merge-source element must all use the same
               expressions to select the items in the input sequence and to compute their merge
               keys. If different expressions are needed for different input sequences, then
               multiple xsl:merge-source elements can be used.
The following code merges two log files having different internal structure:
<xsl:merge-source for-each-source="'event-log.xml'" streamable="yes" select="/*/event"> <xsl:merge-key select="@timestamp"/> </xsl:merge-source> <xsl:merge-source for-each-source="'error-log.xml'" streamable="yes" select="/*/error"> <xsl:merge-key select="dateTime(@date, @time)"/> </xsl:merge-source>
Although the merge keys are computed in different ways for the two input
                  sequences, the keys must be compatible across the two sequences: in this case they
                  are both atomic items of type xs:dateTime.
In the common case where there is only one input sequence of a particular kind, the
                  for-each-item attribute of
                  xsl:merge-source may be omitted; the select
               expression is then evaluated relative to the focus
               of the xsl:merge instruction itself.
Where one or more of the inputs to the merging process is not pre-sorted, a sort
                  can be requested using the sort-before-merge attribute. For
                  example:
<xsl:merge-source select="doc('event-log.xml')/*/event"> <xsl:merge-key select="@timestamp"/> </xsl:merge-source> <xsl:merge-source select="doc('error-log.xml')//error" sort-before-merge="yes"> <xsl:merge-key select="dateTime(current-date(), @time)"/> </xsl:merge-source>
               [ERR XTSE3190] It is a static error if two sibling
                        xsl:merge-source elements have the same name.
            
The keys on which the input sequences are sorted are referred to as merge keys. If
               the attribute sort-before-merge has the value yes, the
               input sequences will be sorted into the correct sequence before the merge operation
               takes place (alternatively, the processor may use an algorithm
               that has the same effect as sorting followed by merging). If the attribute is absent
               or has the value no, then the input sequences must
               already be in the correct order.
The merge key for each type of input sequence (that is, for each
                  xsl:merge-source element) is defined by a sequence of
                  xsl:merge-key element children of the
                  xsl:merge-source element. Each xsl:merge-key
               element defines one merge key component. The syntax and semantics of an
                  xsl:merge-key element are closely based on the rules for the
                  xsl:sort element (with minor exceptions
                  noted below; the only difference in syntax is the absence of the
                  stable attribute); the main difference is that
                  xsl:merge-key elements do not cause a sort to take place, they
               merely declare the existing sort order of the input sequence. 
               
<xsl:merge-key
  select? = expression
  lang? = { language }
  order? = { "ascending" | "descending" }〔'ascending'〕
  collation? = { uri }
  case-order? = { "upper-first" | "lower-first" }
  data-type? = { "text" | "number" | eqname } >
  <!-- Content: sequence-constructor -->
</xsl:merge-key>
The select attribute and the contained sequence constructor are mutually
               exclusive:
               [ERR XTSE3200] It is a static error if an
                        xsl:merge-key element with a select attribute
                     has non-empty content.
            
Note:
From XSLT 4.0, the select expression or contained sequence constructor
            may evaluate (after atomization) to an arbitrary sequence of atomic items. Previously,
            only a singleton atomic item or an empty sequence was allowed.
The value of Nth item in the merge key of an item
               J in a merge input
                  sequence
               S is computed as follows, where K is the Nth
               xsl:merge-key element of the relevant xsl:merge-source:
If K has a select attribute, then the result 
                  of evaluating and atomizing that select expression;
If K contains a non-empty sequence constructor, then the result of evaluating and atomizing that sequence constructor;
Otherwise, the result of atomizing the context item.
In each case the evaluation uses a singleton focus 
               based on J, or, if streamable="yes" is specified on the
               xsl:merge-source element, a singleton focus based on 
               a snapshot of J (see 10 Streamable MergingSG). 
               
Note:
This means that position() and last() return 1 (one).
                  This differs from the way xsl:sort keys are evaluated, where
                  position() is the position in the unsorted sequence, and
                  last() is the size of the unsorted sequence.
The effect of the xsl:merge-key elements is defined in terms of the
               rules for an equivalent sequence of xsl:sort elements: if the rules
               for sorting (see 13.1.1 The Sorting Process) with stable="yes"
               would place an item A before an item B in the sorted sequence produced by the sorting
               process, then A must precede B in the input sequence to the
               merging process.
The merge keys of the various input sequences to a merge operation must be compatible
               with each other, since the merge operation will decide the ordering of the result
               sequence by comparing merge key values across input sequences. This means that across
               all the xsl:merge-source children of an xsl:merge
               instruction:
Each xsl:merge-source element must have the
                     same number of xsl:merge-key child elements; let this number
                     be N.
For each integer J in 1..N, consider the set S of
                        xsl:merge-key elements that are in position J
                     among the xsl:merge-key children of their parent
                        xsl:merge-source element. 
                     For each attribute A in the set lang, order, collation,
                     case-order, and data-type it must be the case that for
                     any two elements s1 and s2 in S, the
                     effective value of attribute A on s1
                     is the same as the effective value of attribute A on s2,
                     where two attributes are said to have the same effective value if either (a) both attributes
                     are absent, or (b) both attributes are present and the results of evaluating them 
                     (they are attribute value templates) are codepoint-equal. Furthermore, in the case
                     of the collation attribute, the absolute collation URI must be the same
                     after resolving against the base URI.
If any of the attributes lang, order,
                  collation, case-order, or data-type are
                  attribute value templates,
               then their effective values are evaluated
               using the focus of the containing
                  xsl:merge instruction.
               [ERR XTSE2200] It is a static error if the number of
                        xsl:merge-key children of a
                        xsl:merge-source element is not equal to the number of
                        xsl:merge-key children of another
                        xsl:merge-source child of the same
                        xsl:merge instruction.
            
               [ERR XTDE2210] It is a dynamic
                        error if there are two xsl:merge-key elements
                     that occupy corresponding positions among the xsl:merge-key
                     children of two different xsl:merge-source elements and that
                     have differing effective values for
                     any of the attributes lang, order,
                        collation, case-order, or data-type.
                     Values are considered to differ if  
                     they have different effective values. 
                     In the case of the collation attribute, the values are
                     compared as absolute URIs after resolving against the base URI. The error
                        may be raised statically if it is detected
                     statically.
            
               [ERR XTDE2220] It is a dynamic error if any input
                     sequence to an xsl:merge instruction contains two items that
                     are not correctly sorted according to the merge key values defined on the
                        xsl:merge-key children of the corresponding
                        xsl:merge-source element, when compared using the collation
                     rules defined by the attributes of the corresponding
                        xsl:merge-key children of the xsl:merge
                     instruction, unless the attribute sort-before-merge is present
                     with the value yes.
            
               [ERR XTTE2230] It is a type error if some item selected
                     by a particular merge key in one input sequence is not comparable using the
                     XPath le operator with the corresponding item selected by the corresponding
                     sort key in another input sequence.
            
During processing of an xsl:merge instruction, two additional values
               are available within the dynamic context:
[Definition: The
                           current merge group is a map. During
                        evaluation of an xsl:merge instruction, as each group of
                        items with equal combined merge
                           key values is processed, the current merge group is set to a
                        map whose keys are the names of the various merge sources, and whose
                        associated values are the items from each merge source having the relevant
                        composite merge key value.]
[Definition: The current
                           merge key is a an array, whose members are sequences of atomic items.
                     There is one member in the array for each xsl:merge-key element
                     in the merge key specification.
                     During evaluation of an
                           xsl:merge instruction, as each group of items with equal
                           combined merge key
                           values is processed, the current merge key is set to the
                        combined merge key value that these items have in common.]
These values are made available through the functions
                  current-merge-group, current-merge-key-array and
                  current-merge-key.
The current merge group and current merge key are available within the sequence
            constructor contained by an xsl:merge-action element. The values are initially
            absent during the evaluation of global variables and stylesheet parameters,
            during the evaluation of the use attribute or contained sequence constructor of
            xsl:key, and during the evaluation of the initial-value attribute of
            xsl:accumulator and the select attribute of contained sequence constructor of
            xsl:accumulator-rule. All invocation constructs
               set the current merge group and current merge key to absent. 
Note:
Taken together, these rules mean that any invocation of
            current-merge-group, current-merge-key-array, 
               or current-merge-key that is not lexically scoped by an
            xsl:merge-action element will raise a dynamic error.
When an inner xsl:merge instruction is lexically nested within the
            xsl:merge-action element of an outer xsl:merge instruction, any use of
            current-merge-group or current-merge-key that appears within the
            xsl:merge-action of the inner xsl:merge instruction is a reference to the
               current merge group or current merge key of the inner
               xsl:merge instruction, while any such
            reference that appears within the outer xsl:merge-action element, but not
               within the inner xsl:merge-action, is a reference to the current merge group or current merge key
             of the outer xsl:merge instruction. This means, for example, that a
            reference to the current merge group of the outer xsl:merge can appear in the
            select attribute of an xsl:merge-source child of the inner xsl:merge.
On completion of the evaluation of the xsl:merge-action sequence constructor, 
               the current merge group
               and current merge key revert to their previous values.
Returns the group of items currently being processed by an xsl:merge
            instruction.
| fn:current-merge-group( | ||
| $source | as xs:string? | := () | 
| )  as item()* | ||
This function is deterministicFO, context-dependentFO, and focus-independentFO.
The current merge group is bound during evaluation of the
               xsl:merge-action child of an xsl:merge instruction. 
            If no xsl:merge-action is being
            evaluated, then the current merge group is absent, in which case the
            function raises a dynamic error (see below).
The current merge group (if not absent) is a map. 
            It contains the set of items, from all merge inputs, that share a common value for
            the merge key. This is structured as a map so that the items from each merge source can
            be identified. The key in the map is the value of the name attribute of the
            corresponding xsl:merge-source element (or an invented name, in its
            absence), and the associated value is the set of items contributed by that merge
            group.
The map itself is not made visible, but this function returns values derived from the map. Specifically, if the map is denoted by $G:
If $source is supplied
               and is non-empty, the function returns the value of the expression
                     if (map:contains($source)) then $G($source) else error().
                  Informally, if there is an xsl:merge-source element whose
                     name attribute matches $source, the function returns
                  the items in the current merge group that are contributed by this merge source;
                  otherwise it raises a dynamic error (see below).
Otherwise (when $source is absent or empty)
                  the function returns the value of the expression
                     sort(map:keys($G))!$G(.), where the sort() function
                  sorts the names of xsl:merge-source elements into the document
                  order of the xsl:merge-source elements in the stylesheet.
                  Informally, it returns all the items in the current merge group regardless of
                  which merge source they derive from.
Within the current merge group, the ordering of items from the input sequences is as follows, in major-to-minor order:
Items are first ordered by the xsl:merge-source element that
                  defined the input sequence from which the item was taken; items from
                     xsl:merge-source
                  A precede items from xsl:merge-source
                  B if A precedes B in document order within the
                  stylesheet.
Items from different input sequences selected by the same
                     xsl:merge-source element are then ordered based on the order
                  of the anchor items in the sequence selected by evaluating the select
                  attribute of the xsl:merge-source element.
Finally, duplicate items from the same input sequence retain their order from the input sequence.
Duplicates are not eliminated: for example, if the same node is selected in more than one input sequence, it may appear twice in the current merge group.
            [ERR XTSE3470] It is a static error if the
                     current-merge-group function is used within a pattern.
         
            [ERR XTDE3480] It is a dynamic error if the
                     current-merge-group function is used when the current
                  merge group is absent. The error
                     may be reported statically if it can be detected
                  statically.
         
            [ERR XTDE3490] It is a dynamic error if the
                     $source argument of the current-merge-group
                  function (when supplied)
                  does not match the name attribute of any
                     xsl:merge-source element for the current merge operation. The
                  error may be reported statically if it can be detected
                  statically.
         
Because the current merge group is cleared by function calls and
            template calls, the current-merge-group function only has useful
            effect when the call appears as a descendant of an xsl:merge-action
            element.
If an xsl:merge-source element has no name attribute, then
            it is not possible to discover the items in the current merge group that derive
            specifically from that source, but these items will still be present in the current
            merge group, and will be included in the result when the function is called with no
            arguments.
Like other XSLT extensions to the dynamic evaluation context, the current merge group is not retained as part of the closure of a function
            value. This means that the expression current-merge-group#0 is valid and
            returns a function value, but any invocation of this function will fail with a dynamic
            error [see ERR XTDE3480]. 
Returns the merge key of the 
            merge group currently being processed using the
               xsl:merge instruction.
| fn:current-merge-key-array() as array(xs:anyAtomicType*) | 
This function is deterministicFO, context-dependentFO, and focus-independentFO.
The evaluation context for XPath expressions includes a component called the current merge key, which is an array whose members are sequence of atomic items. The current merge key is the combined merge key value shared in common by all the items within the current merge group.
The function current-merge-key-array returns the 
            current merge key as an array.
While the xsl:merge-action child of an 
            xsl:merge instruction is being evaluated, the 
            current merge key will be an array with one member
            for each xsl:merge-key element, where the value 
            of that member is the result of evaluating and atomizing the
            select expression, or the contained sequence constructor,
            or the context item, as appropriate.
At other times, the current merge key will be absent.
The merge keys of
               all items in a group are not necessarily identical. For example, one might be an
                  xs:float while another is a numerically equal
            xs:decimal. The current-merge-key-array
            function returns the combined merge key of the 
            first item in the group, after atomization and
            casting of xs:untypedAtomic items to xs:string.
            [ERR XTSE3500] It is a static error if the
                     current-merge-key-array or
                  current-merge-key function 
                  is used within a pattern.
         
            [ERR XTDE3510] It is a dynamic error if the
                     current-merge-key-array or 
                  current-merge-key function is used when the current
                  merge key is absent, or when it is invoked
                  in the course of evaluating a pattern. The error may be
                  reported statically if it can be detected statically.
         
Like other XSLT extensions to the dynamic evaluation context, the current merge key is not retained as part of the closure of a function
            value. This means that the expression current-merge-key-array#0 is valid and
            returns a function value, but any invocation of this function will fail with a dynamic
            error [see ERR XTDE3510]. 
Returns the merge key of the 
            merge group currently being processed using the
               xsl:merge instruction.
| fn:current-merge-key() as xs:anyAtomicType* | 
This function is deterministicFO, context-dependentFO, and focus-independentFO.
The function returns the result of the expression
         current-merge-key-array()?*, that is, the result
         of flattening the contents of the current merge key into
         a sequence of atomic items.
The same error conditions apply as for the current-merge-key-array
         function.
This function is retained from XSLT 3.0 both for backwards compatibility,
            and for convenience. It is useful in the common case where there is a single
            merge key whose value is a single atomic item; it is also usable if there
            are multiple merge keys whose values are single atomic items. In the general
         case where there are multiple merge keys each of which may contain zero or more
         atomic items, the function current-merge-key-array
         is needed.
xsl:merge-action ElementThe xsl:merge-action child of an xsl:merge
               instruction defines the processing to be applied for each distinct 
               combined merge key value found in the input sequences to the
                  xsl:merge instruction.
<xsl:merge-action>
  <!-- Content: sequence-constructor -->
</xsl:merge-action>
The merge key values for each item in an input sequence are calculated based on the
               corresponding xsl:merge-key elements, in the same way as sort key values are calculated using a sequence
               of xsl:sort elements (see 13.1.1 The Sorting Process). If
               several items from the same or from different input sequences have the same values
               for all their merge keys (comparing pairwise), then they are considered to form a
               group. The sequence constructor contained in the xsl:merge-action
               element is evaluated once for each such group of items, and the result of the
                  xsl:merge instruction is the concatenation of the results
               obtained by processing each group in turn.
The groups are processed one by one, based on the values of
                  the merge keys for the group. If group G has a set of merge
               key values M, while group H has a set of merge key values
                  N, then in the result of the xsl:merge instruction,
               the result of processing group G will precede the result of processing
                  H if and only if M precedes N in the sort order
               defined by the lang, order, collation,
                  case-order, and data-type attributes of the merge key
               definitions.
Comparison of merge key values follows the rules for 
               xsl:sort given in 13.1.2 Comparing Sort Key Values. 
               This means that except for special cases such as empty sequences and NaN, 
               two sets of merge key values are distinct if any corresponding items in
               the two sets of values do not compare equal under the rules for the XPath
                  eq operator, under the collating rules for the corresponding merge
               key definition. In rare cases, when considering more than two sets of merge key
               values, ambiguities may arise because of the non-transitivity of the eq
               operator when applied across different numeric types. In this situation, the
               partitioning of items into sets having distinct key values is handled in the same way
               as for xsl:for-each-group (see 14.5 Non-Transitivity),
               and is to some extent implementation-dependent. 
            
            
The focus for evaluation of the sequence
               constructor contained in the xsl:merge-action element is as
               follows:
The context item is the first item in
                     the group being processed, that is
                           current-merge-group()[1]
The context position is the
                     position of the current group within the sequence of groups (so the first
                     evaluation of xsl:merge-action has position()=1,
                     the second has position()=2, and so on).
The context size is as follows:
If any of the xsl:merge-source elements within the xsl:merge instruction specifies 
                        streamable="yes" (explicitly or implicitly), then absent.
Note:
This means that within the xsl:merge-action of a streamable xsl:merge, 
                           calling last() raises error [ERR XPDY0002] XP40.
Otherwise, the number of groups, that is, the number of distinct sets of merge key values.
Consider a situation where there are two merge sources, named "master" and
                  "update"; the master source identifies a single merge input file (the master
                  file), while the update source identifies a set of N update files,
                  perhaps one for each day of the week. The required logic is that if a merge key is
                  present only in the master file, then the corresponding item should be copied to
                  the output; if it is present in a single update file then that item replaces the
                  corresponding item from the master file; if it is present in several update files,
                  then an error is raised. This can be achieved as follows:
<xsl:merge> <xsl:merge-source name="master" for-each-source="'master.xml'" streamable="yes" select="/events/event"> <xsl:merge-key select="@key"/> </xsl:merge-source> <xsl:merge-source name="updates" for-each-source="uri-collection('updates')" streamable="yes" select="/events/event-change"> <xsl:merge-key select="@affected-key"/> </xsl:merge-source> <xsl:merge-action> <xsl:choose> <xsl:when test="empty(current-merge-group('master'))"> <xsl:message> Error: update is present with no matching master record! </xsl:message> </xsl:when> <xsl:when test="empty(current-merge-group('updates'))"> <xsl:copy-of select="current-merge-group('master')"/> </xsl:when> <xsl:when test="count(current-merge-group('updates')) = 1"> <xsl:copy-of select="current-merge-group('updates')"/> </xsl:when> <xsl:otherwise> <xsl:message> Conflict: multiple updates for the same master record! </xsl:message> </xsl:otherwise> </xsl:choose> </xsl:merge-action> </xsl:merge>
Some words of explanation:
Error messages are produced if there is an update element whose key does not correspond to any element in the master source, or if there is more than one update element corresponding to the same master element.
In the absence of errors, if there is a single update element then it is copied to the output; if there is none, then the master element is copied.
Previous sections introduced examples designed to illustrate some specific features
               of the xsl:merge instruction. This section provides some further
               examples to illustrate different ways in which the instruction can be used.
This example applies transactions from a transaction file to a master file. Records in the master file for which there is no corresponding transaction are copied unchanged. The transaction file contains instructions to delete, replace, or insert records identified by an ID value. The master file is known to be sorted on the ID value; the transaction file is unsorted.
Master file document structure:
<data> <record ID="A0001">...</record> <record ID="A0002">...</record> <record ID="A0003">...</record> </data>
Transaction file document structure:
<transactions> <update record="A0004" action="insert">...</update> <update record="A0002" action="delete"/> <update record="A0003" action="replace">...</update> </transactions>
Solution:
<xsl:merge> <xsl:merge-source name="master" select="doc('master.xml')/data/record"> <xsl:merge-key select="@ID"/> </xsl:merge-source> <xsl:merge-source name="updates" sort-before-merge="yes" select="doc('transactions.xml')/transactions/update"> <xsl:merge-key select="@record"/> </xsl:merge-source> <xsl:merge-action> <xsl:choose> <xsl:when test="empty(current-merge-group('updates'))"> <xsl:copy-of select="current-merge-group('master')"/> </xsl:when> <xsl:when test="current-merge-group('updates')/@action=('insert', 'replace')"> <record ID="{current-merge-key()}"> <xsl:copy-of select="current-merge-group('updates')/*"/> </record> </xsl:when> <xsl:when test="current-merge-group('updates')/@action='delete'"/> </xsl:choose> </xsl:merge-action> </xsl:merge>
The xsl:merge instruction can be used to determine the union,
                  intersection, or difference of two sequences of numbers (or other atomic items).
                  This code gives the union:
<xsl:merge> <xsl:merge-source select="1 to 30"> <xsl:merge-key select="."/> </xsl:merge-source> <xsl:merge-source select="20 to 40"> <xsl:merge-key select="."/> </xsl:merge-source> <xsl:merge-action> <xsl:sequence select="current-merge-key()"/> </xsl:merge-action> </xsl:merge>
While this gives the intersection:
<xsl:merge> <xsl:merge-source select="1 to 30"> <xsl:merge-key select="."/> </xsl:merge-source> <xsl:merge-source select="20 to 40"> <xsl:merge-key select="."/> </xsl:merge-source> <xsl:merge-action> <xsl:if test="count(current-merge-group()) eq 2"> <xsl:sequence select="current-merge-key()"/> </xsl:if> </xsl:merge-action> </xsl:merge>
Sometimes it is convenient to be able to compute multiple results during a single scan of the input data. For example, a transformation may wish to rename selected elements, and also to output a count of how many elements have been renamed. Traditionally in a functional language this means computing two separate functions of the input sequence, which (in the absence of sophisticated optimization) will result in the input being scanned twice. This is inconsistent with streaming, where the input is only available to be scanned once, and it can also lead to poor performance in non-streaming applications.
To meet this requirement, XSLT 3.0 introduces the instruction xsl:fork.
            The content of this instruction is a restricted form
               of
            sequence constructor, and in a formal
            sense the effect of the instruction is simply to return the result of evaluating the
            sequence constructor. However, the presence of the instruction affects the analysis of
            streamability (see 3 Streamability Analysis PrinciplesSG). In particular, when
               xsl:fork is used in a context where streaming is required, each
            independent instruction within the sequence constructor must be streamable, but the
            analysis assumes that these instructions can all be evaluated during a single pass of
            the streamed input document.
Note:
The semantics of the instruction require a number of result sequences to be computed during a single pass of the input. A processor may interpret this as a request to use multiple threads. However, implementations using a single thread are feasible, and this instruction is not intended primarily as a means for stylesheet authors to express their intentions with regard to multi-threaded execution.
Note:
Because multiple results are computed during a single pass of the input, and then concatenated into a single sequence, this instruction will generally involve some buffering of results. The amount of memory used should not exceed that needed to hold the results of the instruction. However, within this principle, implementations may adopt a variety of strategies for evaluation; for example, there may be cases where buffering of the input is more efficient than buffering of output.
Generally, stylesheet authors indicate that buffering of input is the preferred
               strategy by using the copy-of or snapshot
               functions, and indicate that buffering of output is preferred by using
                  xsl:fork. However, conformant processors are not constrained in
               their choice of evaluation strategies.
The content model of the xsl:fork
            instruction (given that an XSLT 3.0 processor ignores xsl:fallback)
            takes two possible forms:
A sequence of xsl:sequence instructions
A single xsl:for-each-group instruction. This will normally use
                  the group-by attribute, because in all other cases the containing
                     xsl:fork instruction has no useful effect.
The first form is appropriate when splitting a single input stream into a fixed number of output streams, known statically: for example, one output stream for credit transactions, a second for debit transactions. The second form is appropriate when the number of output streams depends on the data: for example, one output stream for each distinct city name found in the input data.
The following section describes the xsl:fork instruction more
            formally.
xsl:fork Instruction<!-- Category: instruction -->
<xsl:fork>
  <!-- Content: (xsl:fallback*, ((xsl:sequence, xsl:fallback*)* | (xsl:for-each-group, xsl:fallback*))) -->
</xsl:fork>
Note:
The content model can be described as follows: there is either a single
                     xsl:for-each-group instruction, or a sequence of zero or more
                     xsl:sequence instructions; in addition,
                     xsl:fallback instructions may be added anywhere.
The result of the xsl:fork instruction is the sequence formed by
               concatenating the results of evaluating each of its contained  instructions, in order.
               That is, the result can be determined by treating the content as a sequence constructor and evaluating it as
               such.
Note:
Any xsl:fallback children will be ignored by an XSLT 3.0
                  processor.
By using the xsl:fork instruction, the
               stylesheet author is suggesting to the processor that buffering of output is acceptable even though this might
               use unbounded memory and thus violate the normal expectations of streamable
               processing
The presence of an xsl:fork instruction affects the analysis of
               streamability, as described in 3 Streamability Analysis PrinciplesSG.
This section gives examples of how splitting using xsl:fork can be
               used to enable streaming of input documents in cases where several results need to be
               computed during a single pass over the input data.
Consider a transaction file that contains a sequence of debits and credits:
<transactions> <transaction value="5.60"/> <transaction value="11.20"/> <transaction value="-3.40"/> <transaction value="8.90"/> <transaction value="-1.99"/> </transactions>
where the requirement is to split this into two separate files containing credits and debits respectively.
This can be achieved in code as follows:
<xsl:source-document streamable="yes" href="transactions.xml"> <xsl:fork> <xsl:sequence> <xsl:result-document href="credits.xml"> <credits> <xsl:for-each select="transactions/transaction[@value >= 0]"> <xsl:copy-of select="."/> </xsl:for-each> </credits> </xsl:result-document> </xsl:sequence> <xsl:sequence> <xsl:result-document href="debits.xml"> <debits> <xsl:for-each select="transactions/transaction[@value < 0]"> <xsl:copy-of select="."/> </xsl:for-each> </debits> </xsl:result-document> </xsl:sequence> </xsl:fork> </xsl:source-document>
In the absence of the xsl:fork instruction, this would not be
                  streamable, because the sequence constructor includes two  instructions. With the addition of the
                     xsl:fork instruction, however, each
                     xsl:result-document instruction is allowed to make a downwards
                  selection. 
One possible implementation model for this is as follows: a single thread reads
                  the source document, and sends parsing events such as start-element and
                  end-element to two other threads, each of which is writing one of the two result
                  documents. Each of these implements the downwards-selecting path expression using
                  a process that waits until the next transaction start-element event
                  is received; when this event is received, the process examines the
                     @value attribute to determine whether or not this transaction is
                  to be copied; if it is, then all events until the matching
                     transaction end-element event are copied to the serializer for the
                  result document; otherwise, these events are discarded.
Consider a transaction file that contains a sequence of debits and credits:
<transactions> <transaction value="5.60" account="01826370"/> <transaction value="11.20" account="92741838"/> <transaction value="-3.40" account="01826370"/> <transaction value="8.90" account="92741838"/> <transaction value="-1.99" account="43861562"/> </transactions>
where the requirement is to split this into a number of separate files, one for each account number found in the input.
This can be achieved in code as follows:
<xsl:source-document streamable="yes" href="transactions.xml"> <xsl:fork> <xsl:for-each-group select="transactions/transaction" group-by="@account"> <xsl:result-document href="account{current-grouping-key()}.xml"> <transactions account="{current-grouping-key()}"> <xsl:copy-of select="current-group()"/> </transactions> </xsl:result-document> </xsl:for-each-group> </xsl:fork> </xsl:source-document>
In the absence of the xsl:fork instruction, this would not be
                  streamable, because in the general case the output of
                     xsl:for-each-group with a group-by attribute
                  needs to be buffered. (The streamability rules do not recognize an
                     xsl:for-each-group whose body comprises an
                     xsl:result-document instruction as a special case.) With the
                  addition of the xsl:fork instruction, however, the code becomes
                  guaranteed streamable. 
One possible implementation model for this is as follows: the processor opens a
                  new serializer each time a new account number is encountered in the input, and
                  writes the <transactions> start tag to the serializer. When a
                     transaction element is encountered in the input, it is copied to
                  the relevant serializer, according to the value of the account
                  attribute. At the end of the input, a <transactions> end tag is
                  written to each of the serializers, and each output file is closed.
In the more general case, where the body of the
                     xsl:for-each-group instruction contributes output to the
                  principal result document, the output generated by processing each group needs to
                  be buffered in memory. The requirement to use xsl:fork exists so
                  that this use of (potentially unbounded) memory has to be a conscious decision by
                  the stylesheet author.
The rules for streamability do not allow two instructions in a sequence
                  constructor to both read child or descendant elements of the context node, which
                  makes it tricky to perform a calculation in which multiple child elements act as
                  operands. This restriction can be avoided by using xsl:fork, as
                  shown below, where each of the two branches of the xsl:fork
                  instruction selects children of the context node.
<xsl:template match="order" mode="a-streamable-mode"> <xsl:variable name="price-and-discount" as="xs:decimal+"> <xsl:fork> <xsl:sequence select="xs:decimal(price)"/> <xsl:sequence select="xs:decimal(discount)"/> </xsl:fork> </xsl:variable> <xsl:value-of select="$price-and-discount[1] - $price-and-discount[2]"/> </xsl:template>
A possible implementation strategy here is for events from the XML parser to be
                  sent to two separate agents (perhaps but not necessarily running in different
                  threads), one of which computes xs:decimal(price) and the other
                     xs:decimal(discount); on completion the results computed by the
                  two agents are appended to the sequence that forms the value of the variable.
With this strategy, the processor would require sufficient memory to hold the results of evaluating each branch of the fork. If these results (unlike this example) are large, this could defeat the purpose of streaming by requiring large amounts of memory; nevertheless, this code is treated as streamable.
Note:
An alternative solution to this requirement is to use map constructors: see [XPath 4.0] section 4.14.1.1 Map Constructors.
In this example the input is a narrative document containing note
                  elements at any level of nesting. The requirement is to output a copy of the input
                  document in which (a) the note elements have been removed, and (b) a
                     footnote is added at the end indicating how many note
                  elements have been deleted.
<xsl:mode on-no-match="shallow-copy" streamable="yes"/> <xsl:template match="note"/> <xsl:template match="/*"> <xsl:fork> <xsl:sequence> <xsl:apply-templates/> </xsl:sequence> <xsl:sequence> <footnote> <p>Removed <xsl:value-of select="count(.//note)"/> note elements.</p> </footnote> </xsl:sequence> </xsl:fork> </xsl:template>
The xsl:fork instruction contains two independent branches. These
                  can therefore be evaluated in the same pass over the input data. The first branch
                  (the xsl:apply-templates instruction) causes everything except
                  the note elements to be copied to the result; the second instruction
                  (the literal result element footnote) outputs a count of the number
                  of descendant note elements.
Note that although the processing makes a single pass over the input stream, there
                  is some buffering of results required, because the results of the instructions
                  within the xsl:fork instruction need to be concatenated. In this
                  case an intelligent implementation might be able to restrict the buffered data to
                  a single integer.
In a formal sense, however, the result is exactly the same as if the
                     xsl:fork element were not there.
An alternative way of solving this example problem would be to
                  count the number of note elements using an accumulator: see 19 Accumulators.
The function library for XPath 3.0 defines several functions that make use of regular expressions:
                  matches returns a boolean result that indicates whether or
                  not a string matches a given regular expression.
                  replace takes a string as input and returns a string
                  obtained by replacing all substrings that match a given regular expression with a
                  replacement string.
                  tokenize returns a sequence of strings formed by breaking a
                  supplied input string at any separator that matches a given regular
                  expression.
                  analyze-string returns a tree of nodes that effectively add
                  markup to a string indicating the parts of the string that matched the regular
                  expression, as well as its captured groups.
These functions are described in [Functions and Operators 4.0].
Supplementing these functions, XSLT provides
            an instruction xsl:analyze-string, which is defined in this
            section.
Note:
The xsl:analyze-string instruction predates the
                  analyze-string function, and provides very similar
               functionality, though in a different way. The two constructs are not precisely
               equivalent; for example, xsl:analyze-string allows a regular
               expression that matches a zero-length string while the
                  analyze-string function does not. The
                  xsl:analyze-string instruction (via the use of
                  regex-group) provides information about the value of captured
               substrings; the analyze-string function additionally provides
               information about the position of the captured substrings within the original
               string.
The regular expressions used by this instruction, and the flags that control the interpretation of these regular expressions, must conform to the syntax defined in [Functions and Operators 4.0] (see [Functions and Operators 4.0] section 6.1 Regular expression syntax), which is itself based on the syntax defined in [XML Schema Part 2].
xsl:analyze-string Instruction
                  The xsl:matching-substring and xsl:non-matching-substring
                  elements within xsl:analyze-string may now take a select attribute
                  in place of a contained sequence constructor.
                 [Issue 443 PR 489 16 May 2023]
The rules have been adjusted to allow for new capabilities in regular expressions, such as zero-width assertions. [ PR 1856]
<!-- Category: instruction -->
<xsl:analyze-string
  select = expression
  regex = { string }
  flags? = { string }〔''〕 >
  <!-- Content: (xsl:matching-substring?, xsl:non-matching-substring?, xsl:fallback*) -->
</xsl:analyze-string>
<xsl:matching-substring
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:matching-substring>
<xsl:non-matching-substring
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:non-matching-substring>
The xsl:analyze-string instruction takes as input a string (the
               result of evaluating the expression in the select attribute) and a
               regular expression (the effective value of the regex attribute).
If the result of evaluating the select expression is an empty sequence, it is treated as a zero-length string.
                  If the value is not a string, it is converted to a string by applying the
                  coercion rules.
The flags attribute may be used to control the interpretation of the
               regular expression. If the attribute is omitted, the effect is the same as supplying
               a zero-length string. This is interpreted in the same way as the $flags
               attribute of the functions matches,
                  replace, and tokenize. Specifically,
               if it contains the letter m, the match operates in multiline mode. If it
               contains the letter s, it operates in dot-all mode. If it contains the
               letter i, it operates in case-insensitive mode. If it contains the
               letter x, then whitespace within the regular expression is ignored. For
               more detailed specifications of these modes, see [Functions and Operators 4.0]
                  ([Functions and Operators 4.0] section 6.2 Flags).
Note:
Because the regex attribute is an attribute value template, curly
                  brackets within the regular expression must be doubled. For example, to match a
                  sequence of one to five characters, write regex=".{{1,5}}". For
                  regular expressions containing many curly brackets it may be more convenient to
                  use a notation such as regex="{'[0-9]{1,5}[a-z]{3}[0-9]{1,2}'}", or
                  to use a variable.
The xsl:analyze-string instruction may have two child elements:
                  xsl:matching-substring and
                  xsl:non-matching-substring. Both elements are optional, and
               neither may appear more than once. At least one of them must be present. If both are
               present, the xsl:matching-substring element must come first.
The content of the xsl:analyze-string instruction must take one of
               the following forms:
A single xsl:matching-substring instruction, followed by zero
                     or more xsl:fallback instructions
A single xsl:non-matching-substring instruction, followed by
                     zero or more xsl:fallback instructions
A single xsl:matching-substring instruction, followed by a
                     single xsl:non-matching-substring instruction, followed by
                     zero or more xsl:fallback instructions
               [ERR XTSE1130] It is a static error if the
                        xsl:analyze-string instruction contains neither an
                        xsl:matching-substring nor an
                        xsl:non-matching-substring element.
            
Any xsl:fallback elements among the children of the
                  xsl:analyze-string instruction are ignored by an XSLT 2.0 or 3.0 processor, but allow fallback behavior to be
               defined when the stylesheet is used with an XSLT 1.0 processor operating with
               forwards-compatible behavior.
For the xsl:matching-substring and
               xsl:non-matching-substring elements, the select attribute and the contained sequence
               constructor are mutually exclusive [see ERR XTSE3185].
This instruction is designed to process all the non-overlapping substrings of the input string that match the regular expression supplied: that is, the disjoint matching segmentsFO that result from processing the input string using the supplied regular expression and the supplied flags.
               [ERR XTDE1140] It is a  dynamic error if the effective value
                     of the regex
                     attribute  does not conform to the
                        required syntax for regular expressions, as specified in
                        [Functions and Operators 4.0]. If the regular expression is known
                     statically (for example, if the attribute does not contain any expressions enclosed in curly brackets) then
                     the processor may raise the error as a static error. 
            
               [ERR XTDE1145] It is a  dynamic error if the effective value of the flags
                     attribute  has a value other than the values defined in
                        [Functions and Operators 4.0]. If the value of the attribute is known
                     statically (for example, if the attribute does not contain any expressions enclosed in curly brackets) then
                     the processor may raise the error as a static error. 
            
Conceptually, the processor uses the fn:analyze-string
            instruction to construct an fn:analyze-string-result element
            containing a sequence of fn:match and fn:non-match
            children. It then processes this sequence of children: for each fn:match
            child, it evaluates the xsl:matching-substring element, and
            for each fn:non-match child, it evaluates the xsl:non-matching-substring
            element.
Each of these elements has 
               either a select attribute or 
               a contained sequence constructor. 
               If the element is absent, the effect is the same as if it were present with
               empty content. In processing each matching or non-matching segmentFO, 
                  the string-value of the segment will be
               the context item (as a value of type
                  xs:string); the position of the segment within the sequence of
               matching and non-matching segments will be the context position; and the number of matching and non-matching
               segments will be the context size.
Returns the string captured by a capturing subexpression of the regular expression
            used during evaluation of the xsl:analyze-string instruction.
| fn:regex-group( | ||
| $number | as xs:integer | |
| )  as xs:string | ||
This function is deterministicFO, context-dependentFO, and focus-independentFO.
            [Definition: While
               the xsl:matching-substring instruction is active, a set of
                  current captured groups is available, corresponding to the
               capturing subexpressions of the regular expression.] These captured
            groups are accessible using the function regex-group. This
            function takes an integer argument to identify the group, and returns a string
            representing the captured substring.
The Nth captured group (where N > 0) is the string matched
            by the subexpression contained by the Nth left parenthesis in the regex,
               excluding any non-capturing parenthesized expressions. The zeroth captured substring is the string that
            matches the entire regex. This means that the value of regex-group(0) is
            initially the same as the value of . (dot).
The function returns the zero-length string if there is no captured group with the relevant number. This can occur for a number of reasons:
The number is negative.
The regular expression does not contain a capturing subexpression with the given number.
The capturing subexpression exists, and did not match any part of the input string.
The capturing subexpression exists, and matched a zero-length substring of the input string.
The set of captured groups is a context variable with dynamic scope. It is initially
            an empty sequence. During the evaluation of an xsl:matching-substring
            instruction it is set to the sequence of matched substrings for that regex match. During
            the evaluation of an xsl:non-matching-substring instruction or a
               pattern or a stylesheet function it is set to an empty
            sequence. On completion of an instruction that changes the value, the variable reverts
            to its previous value.
The value of the current captured groups is unaffected through calls of
               xsl:apply-templates, xsl:call-template,
               xsl:apply-imports or xsl:next-match, or by
            expansion of named attribute sets.
Problem: replace all newline characters in the abstract element by
                  empty br elements:
Solution:
<xsl:analyze-string select="abstract" regex="\n"> <xsl:matching-substring> <br/> </xsl:matching-substring> <xsl:non-matching-substring> <xsl:value-of select="."/> </xsl:non-matching-substring> </xsl:analyze-string>
Problem: replace all occurrences of [...] in the body by
                     cite elements, retaining the content between the square brackets
                  as the content of the new element.
Solution:
<xsl:analyze-string select="body" regex="\[(.*?)\]"> <xsl:matching-substring> <cite><xsl:value-of select="regex-group(1)"/></cite> </xsl:matching-substring> <xsl:non-matching-substring> <xsl:value-of select="."/> </xsl:non-matching-substring> </xsl:analyze-string>
Note that this simple approach fails if the body element contains
                  markup that needs to be retained. In this case it is necessary to apply the
                  regular expression processing to each text node individually. If the
                     [...] constructs span multiple text nodes (for example, because
                  there are elements within the square brackets) then it probably becomes necessary
                  to make two or more passes over the data.
Problem: the input string contains a date such as 23 March 2002.
                  Convert it to the form 2002-03-23.
Solution (with no error handling if the input format is incorrect):
<xsl:variable name="months" select="'January', 'February', 'March', ..."/> <xsl:analyze-string select="normalize-space($input)" regex="([0-9]{{1,2}})\s([A-Z][a-z]+)\s([0-9]{{4}})"> <xsl:matching-substring> <xsl:number value="regex-group(3)" format="0001"/> <xsl:text>-</xsl:text> <xsl:number value="index-of($months, regex-group(2))" format="01"/> <xsl:text>-</xsl:text> <xsl:number value="regex-group(1)" format="01"/> </xsl:matching-substring> </xsl:analyze-string>
Note the use of normalize-space to simplify the work done by the
                  regular expression, and the use of doubled curly brackets because the
                     regex attribute is an attribute value template.
This example removes all empty and whitespace-only lines from a file.
<xsl:analyze-string select="unparsed-text('in.txt')" regex="^[\t ]*$" flags="m" expand-text="yes"> <xsl:non-matching-substring>{.}</xsl:non-matching-substring> </xsl:analyze-string>
There are many variants of CSV formats. Some, but not all,
                  are handled by new XPath 4.0 functions such as parse-csv.
                  This example is designed to handle input
                  where:
Each record occupies one line.
Fields are separated by commas.
Quotation marks around a field are optional, unless the field contains a comma or quotation mark, in which case they are mandatory.
A quotation mark within the value of a field is represented by a pair of two adjacent quotation marks.
For example, the input record:
Ten Thousand,10000,,"10,000","It's ""10 Grand"", mister",10K
contains six fields, specifically:
Ten Thousand
10000
<zero-length-string>
10,000
It's "10 Grand", mister
10K
The following code parses such CSV input into an XML structure containing
                     row and col elements:
<xsl:for-each select="unparsed-text-lines('in.csv')" expand-text="yes"> <row> <xsl:analyze-string select="." regex='(?:^|,)(?:"((?:[^"]|"")*)"|([^",]*))'> <xsl:matching-substring> <col>{replace(regex-group(1), '""', '"')||regex-group(2)}</col> </xsl:matching-substring> </xsl:analyze-string> </row> </xsl:for-each>
Note that because this regular expression matches a zero-length string, it is not permitted in XSLT 2.0.
xsl:source-document instructionThe xsl:source-document instruction was specifically designed to handle streaming;
         it is described here because it is useful whether or not the source document
         is processed using streaming.
<!-- Category: instruction -->
<xsl:source-document
  href = { uri }
  streamable? = boolean〔'no'〕
  use-accumulators? = tokens〔''〕
  validation? = "strict" | "lax" | "preserve" | "strip"
  type? = eqname >
  <!-- Content: sequence-constructor -->
</xsl:source-document>
The xsl:source-document instruction reads a source document whose URI is
               supplied, and processes the content of the document  by evaluating the
               contained . 
               The streamable attribute (default "no")
            allows streamed processing to be requested.
The document to be read is determined by the effective valueXT 
               of the href attribute (which is defined as
               an attribute value templateXT).
                  This must be a valid URI reference.
                  If it is an absolute URI reference, it is used as is; if it is a relative URI
                  reference, it is made absolute by resolving it against the base URI of the
                     xsl:source-document element. The process of obtaining a
               document node given a URI is the same as for the doc function.
               However, unlike the doc function, the
                  xsl:source-document instruction offers no guarantee that the resulting
               document will be stable (that is, that multiple calls specifying the same URI will
               return the same document).
Specifically, if an xsl:source-document instruction is evaluated several
               times (or if different xsl:source-document instructions are evaluated) with
               the same URI (after making it absolute) as the
               value of the href attribute, it is implementation-dependent whether the
               same nodes or different nodes are returned on each occasion; it is also possible that
               the actual document content will be different. 
Note:
A different node will necessarily be returned if there
               are differences in attributes such as validation, type,
               streamable, or use-accumulators, or if the calls are in different
               packages with variations in the rules for whitespace
               stripping or stripping of type annotations.
The result of the xsl:source-document instruction is the same as the result
               of the following (non-streaming) process:
The source document is read from the supplied URI and parsed to form a tree of nodes in the XDM data model.
The contained sequence constructor is evaluated with the root node of this tree
                     as the context item, and with the context
                     position and context size set to one; and the resulting sequence is returned as
                     the result of the xsl:source-document instruction.
The use-accumulators attribute defines the
               set of accumulators that are applicable to the document, as explained in
                  19.2 Applicability of Accumulators.
The validation and type attributes of
                     xsl:source-document may be used to control schema validation of the
                  input document. They have the same effect as the
                  corresponding attributes of the xsl:copy-of instruction when
                  applied to a document node, except that 
                  when streamable="yes" is specified, 
                  the copy that is produced is itself a
                  streamed document. The process is described in more detail in 
                  section 25.4.2 Validating Document Nodes.
These two attributes are both optional, and if one is specified then the other must be omitted ([see ERR XTSE1505]).
The presence of a validation or type attribute on an
                     xsl:source-document instruction causes any
                     input-type-annotations attribute to have no effect on any document
                  read using that instruction.
Note:
In effect, setting validation to strict or
                        lax, or supplying the type attribute, requests
                     document-level validation of the input as it is read. Setting
                        validation="preserve" indicates that if the incoming document
                     contains type annotations (for example, produced by validating the output of a
                     previous step in a streaming pipeline) then they should be retained, while the
                     value strip indicates that any such type annotations should be
                     dropped.
It is a consequence of the way validation is defined in XSD that the type
                     annotation of an element node can be determined during the processing of its
                     start tag, although the actual validity of the element is not known until the
                     end tag is encountered. When validation is requested, a streamed document
                     should not present data to the stylesheet except to the extent that such data
                     could form the leading part of a valid document. If the document proves to be
                     invalid, the processor should not pass invalid data to the stylesheet to be
                     processed, but should immediately raise the appropriate error. For the
                     purposes of xsl:try and xsl:catch, this error
                     can only be caught at the level of the xsl:source-document instruction
                     that initiated validation, not at a finer level. If validation errors are
                     caught in this way, any output that has been computed up to the point of the
                     error is not added to the final result tree; the mechanisms to achieve this may
                     use memory, which may reduce the efficacy of streaming.
Determines, as far as possible, whether a document is available for streamed processing using xsl:source-document.
| fn:stream-available( | ||
| $uri | as xs:string? | |
| )  as xs:boolean | ||
This function is nondeterministicFO, context-dependentFO, and focus-independentFO. It depends on available documents.
The intent of the stream-available function is to allow a stylesheet author to determine,
            before calling xsl:source-document with streamable="yes" and 
            with a particular URI as the value of its href
         attribute, whether a document is available at that location for streamed processing.
If the $uri argument is an empty sequence then the function returns false.
If the function returns true then the caller can conclude that the following conditions are true:
The supplied URI is valid;
A resource can be retrieved at that URI;
An XML representation of the resource can be delivered, which is well-formed at least to the extent that some initial sequence of octets can be decoded into characters and matched against the production:
                  prolog (EmptyElemTag | STag )
               
as defined in the XML 1.0 or XML 1.1 Recommendation.
Note:
That is, the XML is well-formed at least as far as the end of the first element start tag; to establish this, a parser will typically retrieve any external entities referenced in the Doctype declaration or DTD.If the function returns false, the caller can conclude that either one of the above conditions is not satisfied, or
         the processor detected some other condition that would prevent a call on xsl:source-document with
            streamable="yes" executing successfully.
Like xsl:source-document itself, the function is not deterministic, which means that multiple calls during the execution
         of a stylesheet will not necessarily return the same result. The caller cannot make any inferences about the point in time at which
         the input conditions for stream-available are present, and in particular there is no guarantee that because
         stream-available returns true, xsl:source-document will necessarily succeed.
The value of the $uri argument must be a URI in the form of a string. If it is a relative URI,
            it is resolved relative to the static base URI of the function call.
If the URI is invalid, such that a call on doc-available would raise an error, then 
            stream-available raises the same error: [ERR FODC0005] FO40.
Accumulators were introduced in XSLT 3.0 to enable data that is read during streamed processing of a document to be accumulated, processed or retained for later use. However, they may equally be used with non-streamed processing.
[Definition: An
                     accumulator defines a series of
                     values associated with the nodes of the tree. If an accumulator is
                  applicable to a particular tree, then for each node in the tree, other than
                  attribute and namespace nodes, there will be two values available, called the
                  pre-descent and post-descent values. These two values are available via a pair of
                  functions, accumulator-before and
                     accumulator-after.]
There are two ways the values of an accumulator can be
               established for a given tree: they can be computed by evaluating the rules appearing
               in the xsl:accumulator declaration, or they can be copied from the
               corresponding nodes in a different tree. The second approach (copying the values) is
               available via the snapshot and copy-of
               functions, or by use of the xsl:copy-of instruction specifying
                  copy-accumulators="yes". Accumulator values are also copied during
               the implicit invocation of the snapshot function performed by the
                  xsl:merge instruction.
Note:
Accumulators can apply to trees rooted at any kind of node. But because they are most often applied to trees rooted at a document node, this section sometimes refers to the “document” to which an accumulator applies; use of this term should be taken to include all trees whether or not they are rooted at a document node.
Accumulators can apply to trees rooted at nodes (such as text nodes) that cannot have children, though this serves no useful purpose. In the case of a tree rooted at an attribute or namespace node, there is no way to obtain the value of the accumulator.
The following sections give first, the syntax rules for defining an accumulator; then an informal description of the semantics; then a more formal definition; and finally, examples. But to illustrate the concept intuitively, the following simple example shows how an accumulator can be used for numbering of nodes:
This example assumes document input in which figure elements can
                  appear within chapter elements (which we assume are not nested), and
                  the requirement is to render the figures with a caption that includes the figure
                  number within its containing chapter.
When the document is processed using streaming, the xsl:number
                  instruction is not available, so a solution using accumulators is needed.
The required accumulator can be defined and used like this:
<xsl:accumulator name="figNr" as="xs:integer" initial-value="0" streamable="yes"> <xsl:accumulator-rule match="chapter" select="0"/> <xsl:accumulator-rule match="figure" select="$value + 1"/> </xsl:accumulator> <xsl:mode streamable="yes"/> <xsl:template match="figure" expand-text="yes"> <xsl:apply-templates/> <p>Figure {accumulator-before('figNr')}</p> </xsl:template>
<!-- Category: declaration -->
<xsl:accumulator
  name = eqname
  initial-value = expression
  as? = sequence-type〔'item()*'〕
  streamable? = boolean〔'no'〕 >
  <!-- Content: xsl:accumulator-rule+ -->
</xsl:accumulator>
<xsl:accumulator-rule
  match = pattern
  phase? = "start" | "end"〔'start'〕
  select? = expression
  capture? = boolean〔'no'〕 >
  <!-- Content: sequence-constructor -->
</xsl:accumulator-rule>
An xsl:accumulator element is a declarationXT of an accumulator. The
                     name attribute defines the name of the accumulator. The value of
                  the name attribute is an EQNameXT,
                  which is expanded as described in  section 5.1.1 Qualified Names.
An xsl:accumulator declaration can only appear as a top-levelXT element in a stylesheet module.
The capture attribute is allowed only on an xsl:accumulator-rule element
               that specifies phase="end". Its effect is described in 19.9 Capturing Accumulators.
The functions accumulator-before
                     and accumulator-after return, respectively, the
                  value of the accumulator before visiting the descendants of a given node, and the
                  value after visiting the descendants of a node. Each of these functions takes a single argument, the name of the
                  accumulator, and the function applies implicitly to the context node. The
                  type of the return value (for both functions) is determined by the as
                  attribute of the xsl:accumulator element.
[Definition: The functions
                        accumulator-before and
                        accumulator-after are referred to as the
                        accumulator functions.]
The initial value of the accumulator is obtained by evaluating the expression in
                  the initial-value attribute. This
                     attribute is mandatory. The expression in the
                     initial-value attribute is evaluated with a 
                 singleton focusXT based on the root node of
                     the streamed input tree to which the accumulator is being applied.
The values of the accumulator for individual nodes in a tree are obtained by
                  applying the xsl:accumulator-rule rules contained within the
                     xsl:accumulator declaration, as described in subsequent
                  sections. The match attribute of
                        xsl:accumulator-rule is a patternXT which
                     determines which nodes trigger execution of the rule; the phase
                     attribute indicates whether the rule fires before descendants are processed
                        (phase="start", which is the default), or after descendants are
                     processed (phase="end").
The select attribute and the contained sequence constructor of the
                     xsl:accumulator-rule element are mutually exclusive: if the
                     select attribute is present then the sequence constructor must be
                  empty. The expression in the select
                  attribute of xsl:accumulator-rule
                  or the contained sequence constructor
                  is evaluated with a static context that follows the normal rules for expressions
                  in stylesheets, except that:
An additional variable is present in the context. The name of this variable
                        is value (in no namespace), and its type is the type that
                        appears in the as attribute of the
                           xsl:accumulator declaration.
The context item for evaluation of the expression or sequence constructor will always be a node
                        that matches the patternXT in the
                           match attribute.
The result of both the initial-value and select expressions (or contained sequence
                     constructor) is converted to the type declared in the as
                  attribute by applying the coercion rulesXT. A
                     type errorXT occurs if conversion is not
                  possible. The as attribute defaults to item()*.
The effect of the streamable  attribute 
                  is defined in 11 Streamable AccumulatorsSG.
The effect of the capture attribute 
                  is defined in 19.9 Capturing Accumulators.
It is not the case that every accumulator is applicable to every tree. The details depend on how the accumulator is declared, and how the tree is created. The rules are as follows:
An accumulator is applicable to a tree unless otherwise specified in these rules.
                  (For example, when a document is read using the document,
                  doc, or collection functions,
                  all accumulators are applicable. Similarly, all accumulators are applicable
                  to a temporary treeXT created using xsl:variable.)
Regardless of the rules below, an accumulator is not applicable to a streamed document
                     unless the accumulator is declared with streamable="yes". (The converse
                  does not apply: for unstreamed documents, accumulators are applicable regardless
                  of the value of the streamable attribute.)
For a document read using the
                     xsl:source-document instruction, the accumulators that are applicable 
                     are those determined by the use-accumulators
                  attribute of that instruction.
For a document read using the for-each-source attribute of an
                     xsl:merge-source child of an xsl:merge instruction,
                     the accumulators that are applicable are those determined by the use-accumulators
                     attribute of the xsl:merge-source element.
For a document containing nodes supplied in the
                     initial match selectionXT, the accumulators that are
                     applicable are those determined by the xsl:mode
                     declaration of the initial modeXT. This means that in the
                     absence of an xsl:mode declaration, no accumulators are applicable.
For a tree T created by copying a node in a tree S
                     using the copy-of or snapshot
                     functions, or the instruction xsl:copy-of with
                     copy-accumulators="yes", an accumulator is applicable to
                     T if and only if it is applicable to S.
If an accumulator is not applicable to the tree containing the context item, calls
                  to the functions accumulator-before and
                     accumulator-after, supplying the name of that accumulator,
                  will fail with a dynamic error.
Note:
The reason that accumulators are not automatically applicable to every streamed document is to avoid the cost of evaluating them, and to avoid the possibility of dynamic errors occuring if they are not designed to work with a particular document structure.
In the case of unstreamed documents, there are no compelling reasons to restrict which accumulators are applicable, because an implementation can avoid the cost of evaluating every accumulator against every document by evaluating the accumulator lazily, for example, by only evaluating the accumulator for a particular tree the first time its value is requested for a node in that tree. In the interests of orthogonality, however, restricting the applicable accumulators works in the same way for streamable and non-streamable documents.
The value of the use-accumulators attribute of
               xsl:source-document, xsl:merge-source,
                  or xsl:mode must either be a
                  whitespace-separated list of EQNamesXT, or the
                  special token #all. The list may be empty, and the default value is
                  an empty list. Every EQName in the list must be the name of an
                  accumulator, visible in the containing package, and declared with
                     streamable="yes". The value #all indicates that all
                  accumulators that are visible in the containing package are applicable (except
                  that for a streamable input document, an accumulator is not applicable unless
                  it specifies streamable="yes").
                  [ERR XTSE3300] It is a static errorXT if the list of
                        accumulator names  contains an invalid token, contains the same
                        token more than once, or contains the token #all along with any
                        other value; or if any token (other than
                              #all) is not the name of a  accumulator visible in the containing
                           package.
               
This section describes how accumulator values are
                     established by evaluating the rules in an xsl:accumulator
                     declaration. This process does not apply to trees created with accumulator
                     values copied from another document, for example by using the
                        copy-of or snapshot
                     functions.
Informally, an accumulator is evaluated by traversing a tree, as follows.
Each node is visited twice, once before processing its descendants, and once after processing its descendants. For consistency, this applies even to leaf nodes: each is visited twice. Attribute and namespace nodes, however, are not visited.
Before the traversal starts, a variable (called the accumulator variable) is
                  initialized to the value of the expression given as the initial-value
                  attribute.
On each node visit, the xsl:accumulator-rule elements are
                  examined to see if there is a matching rule. For a match to occur, the pattern in
                  the match attribute must match the node, and the phase
                  attribute must be start if this is the first visit, and
                     end if it is the second visit. If there is a matching rule, then a
                  new value is computed for the accumulator variable using the expression contained
                  in that rule’s select
                     attribute or the contained sequence constructor. If there is more than
                  one matching rule, the last in document order is used. If there is no matching
                  rule, the value of the accumulator variable does not change.
Each node is labeled with a pre-descent value for the accumulator, which is the value of the accumulator variable immediately after processing the first visit to that node, and with a post-descent value for the accumulator, which is the value of the accumulator variable immediately after processing the second visit.
The function accumulator-before delivers
                  the pre-descent value of the accumulator at the context node; the function
                     accumulator-after delivers the post-descent value of the
                  accumulator at the context node.
Although this description is expressed in procedural terms, it can be seen that the two values of the accumulator for any given node depend only on the node and its preceding and (in the case of the post-descent value) descendant nodes. Calculation of both values is therefore deterministic and free of side-effects; moreover, it is clear that the values can be computed during a streaming pass of a document, provided that the rules themselves use only information that is available without repositioning the input stream.
It is permitted for the select expression of an accumulator rule, or the contained
                     sequence constructor, to invoke an accumulator function. For a streamable accumulator, the rules ensure that
                     a rule with phase="start" cannot call the
                        accumulator-after function. When such function calls
                     exist in an accumulator rule, they impose a dependency of one accumulator on
                     another, and create the possibility of cyclic dependencies. Processors are
                     allowed to raise the error statically if they can detect it statically.
                     Failing this, processors are allowed to fail catastrophically in the event of a
                     cycle, in the same way as they might fail in the event of infinite function or
                     template recursion. Catastrophic failure might manifest itself, for example, as
                     a stack overflow, or as non-termination of the transformation.
This section describes how accumulator values are
                     established by evaluating the rules in an xsl:accumulator
                     declaration. This process does not apply to trees created with accumulator
                     values copied from another document, for example by using the
                        copy-of or snapshot
                     functions.
[Definition: A traversal of a tree is a sequence of traversal events.]
[Definition: a traversal
                        event (shortened to event in this section) is a pair
                     comprising a phase (start or end) and a node.] It is modelled as a map
                  with two entries: { "phase": p, "node": n } where p is the string
                     "start" or "end" and n is a node.
The traversal of a tree contains two
                  traversal events for each node in the tree, other than attribute and namespace
                  nodes. One of these events (the “start event”) has phase "start", the other (the
                  “end event”) has phase "end".
The order of traversal events within a traversal is such that, given any two nodes M and N with start/end events denoted by M0, M1, N0, and N1, :
For any node N, N0 precedes N1;
If M is an ancestor of N then M0 precedes N0 and N1 precedes M1;
If M is on the preceding axis of N then M1 precedes N0.
The accumulator defines a (private) delta function Δ. The delta function computes the value of the accumulator for one traversal event in terms of its value for the previous traversal event. The function is defined as follows:
The signature of Δ is function ($old-value as T,
                           $event as map(*)) as T, where T is the sequence type
                        declared in the as attribute of the accumulator
                        declaration;
The implementation of the function is equivalent to the following algorithm:
Let R be the set of xsl:accumulator-rule
                              elements among the children of the accumulator declaration whose
                                 phase attribute equals $event("phase")
                              and whose match attribute is a 
                             patternXT that matches $event("node")
If R is empty, return $old-value
Let Q be the xsl:accumulator-rule in
                                 R that is last in document order
Return the value of the expression in the select
                              attribute of Q, or the
                                 contained sequence constructor, evaluating this with a
                                 singleton focusXT set to
                                 $event("node") and with a dynamic context that binds
                              the variable whose name is $value (in no namespace) to the value
                                 $old-value.
Note:
The argument names old-value and event
                                 are used here purely for definitional purposes; these names are not
                                 available for use within the select expression or contained sequence
                                    constructor.
Note:
There is a slight variation here for an accumulator rule specifying
                              phase="end" and capture="yes". For details,
                              see 11 Streamable AccumulatorsSG.
For every node N, other than attribute and namespace nodes, the accumulator defines a pre-descent value BN and a post-descent value AN whose values are as follows:
Let T be the traversal of
                        the tree rooted at fn:root(N).
Let SB be the subsequence of T starting at the first
                        event in T and ending with the start event for node N
                        (that is, the event { "phase": "start", "node": N }).
Let SA be the subsequence of T starting at the first
                        event in T, and ending with the  end event
                        for node N (that is, the event { "phase": "end", "node": N
                           }).
Let Z be the result of evaluating the expression contained in the
                           initial-value attribute of the
                           xsl:accumulator declaration, evaluated with a singleton focusXT
                           based on root(N).
Then the pre-descent value BN is the value of
                           fn:fold-left(SB, Z, Δ), and the post-descent value
                           AN is the value of fn:fold-left(SA, Z,
                        Δ).
If a dynamic error occurs when evaluating the initial-value expression
               of xsl:accumulator, or the select expression of xsl:accumulator-rule,
                  or the sequence constructor contained in xsl:accumulator-rule, 
               then the error is raised as an error from any subsequent call on accumulator-before
                  or accumulator-after that references the accumulator. If no such call on accumulator-before
                  or accumulator-after happens, then the error goes unreported.
               
Note:
In the above rule, the phrase subsequent call is to be understood in terms of functional dependency; that is, a call to
                  accumulator-before or accumulator-after raises an error if the accumulator value at the node in question is
               functionally dependent on a computation that fails with a dynamic error.
Note:
Particularly in the case of streamed accumulators, this may mean that the implementation has to “hold back” the error
               until the next time the accumulator is referenced, to give applications the opportunity to catch the error using xsl:try
               and xsl:catch in a predictable way.
Note:
Errors that occur during the evaluation of the pattern in the match attribute of
               xsl:accumulator-rule are handled as described in  section 6.3.4 Errors in Patterns:
               specifically, the pattern does not match the relevant node, and no error is raised.
Returns the pre-descent value of the selected accumulator at the context node.
| fn:accumulator-before( | ||
| $name | as (xs:string | xs:QName) | |
| )  as item()* | ||
This function is deterministicFO, context-dependentFO, and focus-dependentFO.
The $name argument specifies the name of the accumulator. 
            The value of the argument must be 
            either an xs:QName, or
            a string containing an EQName. If it is a 
            lexical QName, then it is expanded as described in
               5.1.1 Qualified Names (no prefix means no namespace).
The function returns the pre-descent value B(N)of the selected accumulator where N is the context node, as defined in 19.4 Formal Model for Accumulators.
If the context item is a node in a streamed document, then the accumulator 
            must be declared with streamable="yes".
Note:
The converse is not true: an accumulator declared to be streamable is available on both streamed and unstreamed nodes.
            [ERR XTDE3340] It is a dynamic error if the value of the first
                     argument to the accumulator-before or
                        accumulator-after function is 
                  a string that is not a valid
                     EQName, or if there is no namespace declaration in scope
                  for the prefix of the QName, or if the name obtained by expanding the QName is not
                  the same as the expanded name of any xsl:accumulator declaration
                  appearing in the package in which the function
                  call appears. If the processor is able to detect the error statically (for
                  example, when the argument is supplied as a string literal), then the processor
                     may optionally raise this as a static error.
         
            [ERR XTDE3350] It is a dynamic error to call the
                     accumulator-before or
                     accumulator-after function when there is no context item.
         
            [ERR XTTE3360] It is a type error to call the
                     accumulator-before or
                     accumulator-after function when the context item is 
                  not a node, or when it is an attribute or namespace node.
         
            [ERR XTDE3362] It is a dynamic error to call the
                     accumulator-before or
                     accumulator-after function when the context
                  item is a node in a tree to which the selected accumulator is not
                  applicable (including the case where it is not applicable
                     because the document is streamed and the accumulator is not 
                  declared with streamable="yes"). Implementations
                  may raise this error but are not required to do so,
                  if they are capable of streaming documents without imposing this restriction.
         
[ERR XTDE3400] It is an error if there is a cyclic set of dependencies among accumulators such that the (pre- or post-descent) value of an accumulator depends directly or indirectly on itself. A processor may report this as a static error if it can be detected statically. Alternatively a processor may report this as a dynamic error. As a further option, a processor may fail catastrophically when this error occurs.
The accumulator-before function can be applied to a node whether or not the accumulator
            has a phase="start" rule for that node. In effect, there is a phase="start" rule
            for every node, where the default rule is to leave the accumulator value unchanged; the 
            accumulator-before function delivers the value of the accumulator after processing
            the explicit or implicit phase="start" rule.
In XSLT 4.0, the argument can be supplied as a QName literal, for example
         accumulator-before( #accum ).
| Given the accumulator: | |
| <xsl:accumulator name="a" initial-value="0"> <xsl:accumulator-rule match="section" select="$value + 1"/> </xsl:accumulator> | |
| and the template rule: | |
| <xsl:template match="section"> <xsl:value-of select="accumulator-before('a')"/> <xsl:apply-templates/> </xsl:template> | |
| The stylesheet will precede the output from processing each section with a section number that runs sequentially 1, 2, 3... irrespective of the nesting of sections. | 
Returns the post-descent value of the selected accumulator at the context node.
| fn:accumulator-after( | ||
| $name | as (xs:string | xs:QName) | |
| )  as item()* | ||
This function is deterministicFO, context-dependentFO, and focus-dependentFO.
The $name argument specifies the name of the accumulator. 
            The value of the argument must be 
            either an xs:QName, or
            a string containing an EQName. If it is a
               lexical QName, then it is expanded as
            described in 5.1.1 Qualified Names (no prefix means no namespace).
The function returns the post-descent value A(N) of the selected accumulator where N is the context node, as defined in 19.4 Formal Model for Accumulators.
If the context item is a node in a streamed document, then the accumulator 
            must be declared with streamable="yes".
Note:
The converse is not true: an accumulator declared to be streamable is available on both streamed and unstreamed nodes.
The following errors apply: [see ERR XTDE3340], [see ERR XTDE3350], [see ERR XTTE3360], [see ERR XTDE3362], [see ERR XTDE3400].
For constraints on the use of accumulator-after when streaming, see
         12.8.1 Streamability of the accumulator-after FunctionSG.
The accumulator-after function can be applied to a node whether or not the accumulator
            has a phase="end" rule for that node. In effect, there is a phase="end" rule
            for every node, where the default rule is to leave the accumulator value unchanged; the 
            accumulator-after function delivers the value of the accumulator after processing
            the explicit or implicit phase="end" rule.
In XSLT 4.0, the argument can be supplied as a QName literal, for example
         accumulator-before( #accum ).
| Given the accumulator: | |
| <xsl:accumulator name="w" initial-value="0" streamable="true" as="xs:integer"> <xsl:accumulator-rule match="text()" select="$value + count(tokenize(.))"/> </xsl:accumulator> | |
| and the template rule: | |
| <xsl:template match="section"> <xsl:apply-templates/> (words: <xsl:value-of select="accumulator-after('w') - accumulator-before('w')"/>) </xsl:template> | |
| The stylesheet will output at the end of each section a (crude) count of the number of words in that section. | 
If a package contains more than one
                     xsl:accumulator declaration with a particular name, then the
                  one with the highest  is used.
[ERR XTSE3350] It is a static errorXT for a package to contain two or more accumulators with the same expanded QName and the same import precedence, unless there is another accumulator with the same expanded QName, and a higher import precedence.
Accumulators cannot be referenced from, or overridden in, a different package from the one in which they are declared.
                     Capturing accumulators have been added; when streaming with a capturing accumulator,
                     the accumulator-after has full access to a snapshot of the matched
                     element node.
                    [Issue 211 PR 717 29 September 2023]
The capture attribute is intended primarily for use with streamable accumulators, but
                  in the interests of consistency, it has the same effect both for streamable and non-streamable
                  accumulators. If an accumulator rule with phase="end" and capture="yes"
                  matches an element node,
                  then the rule is evaluated not with the matched element node as the context item, but rather with a snapshot
                  copy of the matched node. The snapshot copy is made following the rules of the snapshot
                  function, with one exception: no accumulator values are copied into the snapshot tree (which would otherwise
                  happen: see 19.10 Copying Accumulator Values).
If a rule with capture="yes" matches a node other than an element, the attribute
               has no effect.
Note:
The principal effect of specifying capture="yes" is to relax
                  the rules for streamability. With this option, the phase="end" accumulator rule
                  has access to the full subtree rooted at the node being visited. In a typical implementation,
                  a streaming processor encountering an element that matches a capturing accumulator rule
                  will make an on-the-fly in-memory copy of that element, allowing the phase="end"
                  accumulator rule full access to the subtree, and also to attributes of ancestors.
This means that an accumulator that needs access to the typed value or string value of an element can get this directly with a rule that matches the element, avoiding the need to write rules that match the element’s text node children.
For example, to capture a copy of the most recent h2 element in a document,
                  the following accumulator might be declared:
<xsl:accumulator name="most-recent-h2" streamable="yes"> <xsl:accumulator-rule match="h2" phase="end" capture="yes" select="."/> </xsl:accumulator>
and subsequent processing wishing to copy the most recent h2 element into the result
                  tree can simply use <xsl:copy-of select="accumulator-before('most-recent-h2')"/>.
Without the capture="yes" attribute, this accumulator would be rejected
                  as non-streamable, because the select expression on the accumulator rule
                  is consuming.
Suppose a document contains definitions of technical terms with markup such as:
<define term="oxidation">In <topic>chemistry</topic>, <term>oxidation</term> is a chemical process in which atoms lose electrons.</define>
and the requirement is to generate a glossary that lists all the defined terms in the document, as an appendix.
This can be achieved by capturing all the defined terms in a map:
<xsl:accumulator name="glossary-terms" as="{ xs:string, element(define) }" initial-value="{}" streamable="yes"> <xsl:accumulator-rule match="define[@term]" phase="end" capture="yes" select="map:put($value, @term, .)"/> </xsl:accumulator>
Suppose that the input XML document contains an element <glossary/> marking
                     the point where the glossary is to be inserted. The glossary can then be generated
                     using a template rule such as:
<xsl:template match="glossary"> <h2>Glossary</h2> <dl> <xsl:for-each select="map:pairs(accumulator-before('glossary-terms'))"> <xsl:sort select="?key"/> <dt>{?key}</dt> <dd><xsl:apply-templates select="?value"/></dd> </xsl:for-each> </dl> </xsl:template>
                  [ERR XTSE3355] It is a static errorXT for a 
                        an xsl:accumulator-rule element to specify
                     capture="yes" unless it also specifies phase="end".
               
Note:
Since capture="yes" causes the subtree of the relevant element node
                  to be built in memory, using this option on an element that has a large subtree is best
                  avoided, because it can defeat the purpose of streaming.
When nodes (including streamed nodes) are copied using the
                     snapshot or copy-of functions, or
                  using the xsl:copy-of instruction with the attribute
                     copy-accumulators="yes", then the pre-descent and post-descent
                  values of accumulators for that tree are not determined by traversing the tree as
                  described in 19.3 Informal Model for Accumulators and 19.4 Formal Model for Accumulators. Instead the values are the same as the values
                  on the corresponding nodes of the source tree. 
This applies also to the implicit invocation of the snapshot
                  function that happens during the evaluation of xsl:merge.
If an accumulator is not applicable to a tree S, then it is also not applicable to any tree formed by copying nodes from S using the above methods.
Note:
During streamed processing, accumulator values will typically be computed “on
                     the fly”; when the copy-of or
                        snapshot functions are applied to a streamed node, the
                     computed accumulator values for the streamed document will typically be
                     materialized and saved as part of the copy.
Accumulator values for a non-streamed document will often be computed lazily,
                     that is, they will not be computed unless and until they are needed. A call on
                        copy-of or snapshot on a
                     non-streamed document whose accumulator values have not yet been computed can
                     then be handled in a variety of ways. The implementation might interpret the
                     call on copy-of or snapshot as a
                     trigger causing the accumulator values to be computed; or it might retain a
                     link between the nodes of the copied tree and the nodes of the original tree,
                     so that a request for accumulator values on the copied tree can trigger
                     computation of accumulator values for the original tree. 
Consider an XHTML document in which the title of the document is represented by
                     the content of a title element appearing as a child of the
                        head element, which in turn appears as a child of the
                        html element. Suppose that we want to process the document in
                     streaming mode, and that we want to avoid outputting the content of the
                        h1 element if it is the same as the document title.
This can be achieved by remembering the value of the title in an accumulator variable.
<xsl:accumulator name="firstTitle" as="xs:string?" initial-value="()" streamable="yes"> <xsl:accumulator-rule match="/html/head/title/text()" select="string(.)"/> </xsl:accumulator>
Subsequently, while processing an h1 element appearing later in
                     the document, the value can be referenced:
<xsl:template match="h1"> <xsl:variable name="firstTitle" select="accumulator-before('firstTitle')"/> <xsl:variable name="thisTitle" select="string(.)"/> <xsl:if test="$thisTitle ne $firstTitle"> <div class="heading-1"><xsl:value-of select="$thisTitle"/></div> </xsl:if> </xsl:template>
Suppose that there is a requirement to output, at the end of the HTML rendition of a document, a paragraph giving the total number of words in the document.
An accumulator can be used to maintain a (crude) word count as follows:
<xsl:accumulator name="word-count" as="xs:integer" initial-value="0"> <xsl:accumulator-rule match="text()" select="$value + count(tokenize(.))"/> </xsl:accumulator>
The final value can be output at the end of the document:
<xsl:template match="/"> <xsl:apply-templates/> <p>Word count: <xsl:value-of select="accumulator-after('word-count')"/></p> </xsl:template>
Consider a document in which section elements are nested within
                        section elements to arbitrary depth, and there is a requirement
                     to render the document with hierarchic section numbers of the form
                        3.5.1.4.
The current section number can be maintained in an accumulator in the form of a sequence of integers, managed as a stack. The number of integers represents the current level of nesting, and the value of each integer represents the number of preceding sibling sections encountered at that level. For convenience the first item in the sequence represents the top of the stack.
<xsl:accumulator name="section-nr" as="xs:integer*" initial-value="0"> <xsl:accumulator-rule match="section" phase="start" select="0, head($value)+1, tail($value)"/> <xsl:accumulator-rule match="section" phase="end" select="tail($value) (:pop:)"/> </xsl:accumulator>
To illustrate this, consider the values after processing a series of start and end tags:
| events | accumulator value | required section number | 
|---|---|---|
| <section> | 0, 1 | 1 | 
| <section> | 0, 1, 1 | 1.1 | 
| </section> | 1, 1 | |
| <section> | 0, 2, 1 | 1.2 | 
| </section> | 2, 1 | |
| <section> | 0, 3, 1 | 1.3 | 
| <section> | 0, 1, 3, 1 | 1.3.1 | 
| </section> | 1, 3, 1 | |
| <section> | 0, 2, 3, 1 | 1.3.2 | 
| </section> | 2, 3, 1 | |
| </section> | 3, 1 | |
| </section> | 1 | 
The section number for a section can thus be generated as:
<xsl:template match="section"> <p> <xsl:value-of select="reverse(tail(accumulator-before('section-nr')))" separator="."/> </p> <xsl:apply-templates/> </xsl:template>
<xsl:accumulator name="histogram" as="map(xs:string, xs:integer)" initial-value="{}"> <xsl:accumulator-rule match="book"> <xsl:choose> <xsl:when test="map:contains($value, @publisher)"> <xsl:sequence select="map:put($value, string(@publisher), $value(@publisher)+1)"/> </xsl:when> <xsl:otherwise> <xsl:sequence select="map:put($value, string(@publisher), 1)"/> </xsl:otherwise> </xsl:choose> </xsl:accumulator-rule> </xsl:accumulator>
The contained sequence constructor is
                     evaluated with the variable $value set to the current value, and
                     with the context node as the node being visited.
Note:
In the two calls on map:put(), it is necessary to explicitly
                        convert @publisher to an xs:string value, because
                        this is the declared type of the keys in the result map. Relying on
                        atomization would produce keys of type xs:untypedAtomic, which
                        would not satisfy the declared type of the map.
The accumulated histogram might be displayed as follows:
<xsl:source-document streamable="yes" href="booklist.xml" expand-text="yes"> ..... <h1>Number of books, by publisher</h1> <table> <thead> <th>Publisher</th> <th>Number of books</th> </thead> <tbody> <xsl:variable name="histogram" select="accumulator-after('histogram')"/> <xsl:for-each select="map:keys($histogram)"> <tr> <td>{.}</td> <td>{$histogram(.)}</td> </tr> </xsl:for-each> </tbody> </table> </xsl:source-document>
               Functions that accept a lexical QName as an argument, such as key,
               function-available, element-available,
               type-available, system-property,
               accumulator-before, and accumulator-after,
               now have the option of supplying an xs:QName value instead.
               [This change was in the editor's draft accepted by the WG as its baseline when
               it started work.]
              [  1 January 2022]
This section describes XSLT-specific additions to the XPath function library. Some of these additional functions also make use of information specified by declarations in the stylesheet; this section also describes these declarations.
Provides access to XML documents identified by a URI.
| fn:document( | ||
| $uri-sequence | as item()*, | |
| $base-node | as node()? | := () | 
| )  as node()* | ||
The one-argument form of this function is deterministicFO, focus-independentFO, and context-dependentFO. It depends on static base URI.
The two-argument form of this function is deterministicFO, focus-independentFO, and context-independentFO.
The document function allows access to XML documents identified by
            a URI.
The first argument contains a sequence of URI references. The second argument, if present, is a node whose base URI is used to resolve any relative URI references contained in the first argument.
A sequence of absolute URI references is obtained as follows.
For an item in $uri-sequence that is an instance of
                     xs:string, xs:anyURI, or
                     xs:untypedAtomic, the value is cast to xs:anyURI. If
                  the resulting URI reference is an absolute URI reference then it is used as
                     is. If it is a relative URI reference, then it is resolved as follows:
If $base-node is supplied 
                        (that is, if the argument is present and non-empty), 
                        then it is resolved against the base URI of $base-node.
Otherwise it is resolved against the static base URI from the static context of the
                  expression containing the call to the document function. In cases where the source
                  code of the stylesheet is available at execution time, this will typically be the location of the
                  relevant stylesheet module.
For an item in $uri-sequence that is a node, the node is atomized. The result must be
                  a sequence whose items are all instances of xs:string,
                     xs:anyURI, or xs:untypedAtomic. Each of these values
                  is cast to xs:anyURI, and if the resulting URI reference is an
                  absolute URI reference then it is used as is. If it is a relative URI
                  reference, then it is resolved against the base URI of $base-node if
                  supplied, or against the base URI of the node that contained it otherwise.
A relative URI is resolved against a base URI using the rules of the resolve-uri
                  function. A dynamic error occurs (see below) if no base URI is available.
 If $uri-sequence (after atomizing any nodes) contains an 
                  item other than an atomic item of type xs:string, xs:anyURI, or
                     xs:untypedAtomic then a type error is raised [ERR XPTY0004] XP40. 
Each of these absolute URI references is then processed as follows. Any fragment
            identifier that is present in the URI reference is removed, and the resulting absolute
            URI is cast to a string and then passed to the doc function
            defined in [Functions and Operators 4.0]. This returns a document node. If an error
            occurs during evaluation of the doc function, the processor
               may either raise this error in the normal way, or
               may recover by ignoring the failure, in which case the failing URI
            will not contribute any nodes to the result of the document
            function.
If the URI reference contained no fragment identifier, then this document node is
            included in the sequence of nodes returned by the document
            function.
If the URI reference contained a fragment identifier, then the fragment identifier is interpreted according to the rules for the media type of the resource representation identified by the URI, and is used to select zero or more nodes that are descendant-or-self nodes of the returned document node. As described in 2.3 Initiating a Transformation, the media type is available as part of the evaluation context for a transformation.
The sequence of nodes returned by the function is in document order, with no duplicates.
            This order has no necessary relationship to the order in which URIs were supplied in the
               $uri-sequence argument.
[ERR XTDE1160] When a URI reference contains a fragment identifier, it is a dynamic error if the media type is not one that is recognized by the processor, or if the fragment identifier does not conform to the rules for fragment identifiers for that media type, or if the fragment identifier selects something other than a sequence of nodes (for example, if it selects a range of characters within a text node).
A processor may provide an option which, if selected, causes the processor instead of raising this error, to ignore the fragment identifier and return the document node.
The set of media types recognized by a processor is implementation-defined.
[ERR XTDE1162] When a URI reference is a relative reference, it is a dynamic error if no base URI is available to resolve the relative reference. This can arise for example when the URI is contained in a node that has no base URI (for example a parentless text node), or when the second argument to the function is a node that has no base URI, or when the base URI from the static context is undefined.
One effect of these rules is that in an interpreted environment 
            where the source code of the stylesheet is available and its base URI is known, then unless
            XML entities or xml:base are used, the expression document("") refers 
            to the document node of the containing stylesheet module (the definitive rules are in [RFC3986]). 
            The XML resource containing the stylesheet module is then processed exactly as if it were any 
            other XML document, for example there is no special recognition of xsl:text elements, 
            and no special treatment of comments and processing instructions.
The XPath rules for function calling ensure that it is a type error if the supplied value of the second argument is anything other than a single node. If XPath 1.0 compatibility mode is enabled, then a sequence of nodes may be supplied, and the first node in the sequence will be used.
Keys provide a way to work with documents that contain an implicit cross-reference structure. They make it easier to locate the nodes within a document that have a given value for a given attribute or child element, and they provide a hint to the implementation that certain access paths in the document need to be efficient.
xsl:key Declaration<!-- Category: declaration -->
<xsl:key
  name = eqname
  match = pattern
  use? = expression
  composite? = boolean〔'no'〕
  collation? = uri >
  <!-- Content: sequence-constructor -->
</xsl:key>
The xsl:key
                  declaration is used to declare keys. 
                  The name attribute specifies the name
                  of the key. The value of the name attribute is 
                  an EQName, which is expanded as
                  described in 5.1.1 Qualified Names. The match attribute 
                  is a Pattern; an xsl:key element applies to
                  all nodes that match the pattern specified in the match
                  attribute.
                  [Definition: A key is defined as a set of
                        xsl:key declarations in the same
                           package that share the same
                     name.]
               
The key name is scoped to the containing package, 
                  and is available for use in calls to the
                     key function within that package.
The value of the key may be specified either using the use attribute
                  or by means of the contained sequence
                     constructor.
                  [ERR XTSE1205] It is a static error if an
                           xsl:key declaration has a use attribute and
                        has non-empty content, or if it has empty content and no use
                        attribute.
               
If the use attribute is present, its value is an 
                  expression specifying the values of the key. The
                  expression will be evaluated with a singleton focus 
                  based on the node that matches the pattern. The result of evaluating the expression is
                     atomized. 
Similarly, if a sequence constructor is present, it is used to determine the values of the key. The sequence constructor will be evaluated with the node that matches the pattern as the context node. The result of evaluating the sequence constructor is atomized.
                  [Definition: The expression in the
                        use attribute and the sequence constructor 
                     within an xsl:key
                     declaration are referred to collectively as the key specifier. The
                     key specifier determines the values that may be used to find a node using this
                        key.]
               
When evaluation of the key
                     specifier results in a sequence (after atomization) containing more
                  than one atomic item, the effect depends on the value of the
                     composite attribute:
When the attribute is absent or has the value no, each atomic
                        item in the sequence acts as an individual key. For example, if
                           match="book" use="author" composite="no" is specified, then
                        a book element may be located using the value of any
                           author element.
When the attribute is present and has the value yes, the
                        sequence of atomic items is treated as a composite key that must be matched
                        in its entirety. For example, if match="book" use="author"
                           composite="yes" is specified, then a book element may
                        be located using the value of all its author elements, supplied
                        in the correct order.
If there are several xsl:key declarations in
                  the same package with the same key name, then
                  they must all have the same effective value for their composite
                  attribute. The effective value is the actual value of the attribute if present, or
                  "no" if the attribute is absent.
Note:
There is no requirement that all the values of a key should have the same type.
The presence of an xsl:key declaration makes it easy to find a
                  node that matches the match pattern if  the values of the key
                     specifier (when applied to that node) are known. It also provides a
                  hint to the implementation that access to the nodes by means of these values needs
                  to be efficient (many implementations are likely to construct an index or hash
                  table to achieve this). 
Note:
An xsl:key declaration is not bound to a specific source
                     document. The source document to which it applies is determined only when the
                        key function is used to locate nodes using the key.
                     Keys can be used to locate nodes within any source document (including
                     temporary trees), but each use of the key function
                     searches one document only.
Keys can only be used to search within a tree that is rooted at a document node.
The optional collation attribute is used only when deciding whether
                  two strings are equal for the purposes of key matching. Specifically, two key
                  values $a and $b are considered equal if the result of
                  the function call deep-equal($a, $b,
                        $collation) returns true. The effective collation for an
                     xsl:key declaration is the collation specified in its
                     collation attribute if present, resolved against the base URI of
                  the xsl:key element, or the 
                  default collation that is in scope for the xsl:key
                  declaration otherwise; the effective collation must be the same for all the
                     xsl:key declarations making up a key.
                  [ERR XTSE1210] It is a static error if the
                           xsl:key declaration has a collation
                        attribute whose value (after resolving against the base URI) is not a URI
                        recognized by the implementation as referring to a collation.
               
                  [ERR XTSE1220] It is a static error if there are
                        several xsl:key declarations in the same package with the
                        same key name and different effective collations. Two collations are the
                        same if their URIs are equal under the rules for comparing
                           xs:anyURI values, or if the implementation can determine
                        that they are different URIs referring to the same collation.
               
                  [ERR XTSE1222] It is a static error if there are
                        several xsl:key declarations in a package 
                        with the same key name and
                        different effective values 
                        for the composite attribute.
               
It is possible to have:
multiple xsl:key declarations with the same name;
a node that matches the match patterns of several different
                           xsl:key declarations, whether these have the same key
                        name or different key names;
a node that returns more than one value from its key specifier (which can be treated either as separate individual key values, or as a single composite key value);
a key value that identifies more than one node (the key values for different nodes do not need to be unique).
An xsl:key declaration with higher 
                  import precedence does not override
                  another of lower import precedence; all the xsl:key declarations
                  in the stylesheet are effective regardless of their import precedence.
Returns the nodes within a document or subtree that match a supplied key value.
| fn:key( | ||
| $key-name | as (xs:string | xs:QName), | |
| $key-value | as xs:anyAtomicType*, | |
| $top | as node() | := / | 
| )  as node()* | ||
The two-argument form of this function is deterministicFO, focus-dependentFO, and context-dependentFO.
The three-argument form of this function is deterministicFO, focus-independentFO, and context-dependentFO.
The key function returns the nodes within a document or subtree that
            have a specified key value.
The $key-name argument specifies the name of the key. 
            The value of the argument must be either an xs:QName, or 
            a string containing an EQName. If it is
            a lexical QName, then it is expanded as
            described in 5.1.1 Qualified Names (no prefix means no namespace).
The $key-value argument to the key function is
            considered as a sequence. The effect depends on the value of
               the composite attribute of the corresponding xsl:key
               declaration.
If composite is no or
                     absent, the set of requested key values is formed by atomizing the
                  supplied value of the argument, using the standard coercion rules. Each of
                  the resulting atomic items is considered as a requested key value. The result of
                  the function is a sequence of nodes, in document order and with duplicates
                  removed, comprising those nodes in the selected subtree (see below) that are
                  matched by an xsl:key declaration whose name is the same as the
                  supplied key name, where the result of evaluating the 
                  key specifier contains a value that is equal
                  to one of these requested key values: the rules for comparing two items
                  are given below. No error is reported if two values are encountered that
                  are not comparable; they are regarded for the purposes of this function as being
                  not equal. 
If the second argument is an empty sequence, the result of the function will be an empty sequence.
If composite is yes, the requested key
                  value is the sequence formed by atomizing the supplied value of the argument,
                  using the standard coercion rules. 
                  The result of the function is a sequence of nodes, in document
                  order and with duplicates removed, comprising those nodes in the selected subtree
                  (see below) that are matched by an xsl:key declaration whose name
                  is the same as the supplied key name, where the result of evaluating the key specifier is deep-equal to the requested
                  key value, under the rules appropriate to the deep-equal
                  function applied to the two values in question: the detailed comparison rules are 
                  defined below.
If the second argument is an empty sequence, the result of the function will be the set of nodes having an empty sequence as the value of the key specifier.
Two atomic items K1 and K2 are deemed equal if they satisfy one of the following rules:
If both K1 and K2 are of type 
               xs:string, xs:untypedAtomic,
            or xs:anyURI, then they are deemed equal if 
               compare(K1, K2, $collation)
            returns zero, where $collation is the collation of the key definition.
Otherwise, they are deemed equal if atomic-equal(K1, K2)
            returns true.
When composite="yes", then two sequences of atomic
            items S1 and S2 are deemed equal if deep-equal(S1,
            S2, { 'items-equal': $F })) returns true, where $F is the function
            just described for comparing atomic items.
Note:
The rules for comparing items have changed in this version of the specification, in the interests of bringing keys into line with maps. The main differences are:
Numeric equality is transitive. In particular, when comparing an xs:double
               value to an xs:decimal, they must now be exactly numerically equal; the xs:decimal
               was previously converted to the nearest xs:double.
The implicit timezone is no longer used when comparing date/time values with a timezone to values without one. To be equal, the values must either both have a timezone, or both be without one.
The third argument is used to identify the selected subtree. If the argument is present,
            the selected subtree is the set of nodes that have $top as an
            ancestor-or-self node. If the argument is omitted, the selected subtree is the document
            containing the context node. This means that the third argument effectively defaults to
               /.
The result of the key function can be described more specifically
            as follows. The result is a sequence containing every node $N that satisfies
            the following conditions:
                  $N/ancestor-or-self::node() intersect $top is non-empty. (If the
                  third argument is omitted, $top defaults to /)
                  $N matches the pattern specified in the match attribute of
                  an xsl:key declaration whose name attribute matches
                  the name specified in the $key-name argument.
When composite="no",  and the
                     key specifier of that
                     xsl:key declaration is evaluated with a singleton focus based on $N, the
                     atomized value of the resulting
                  sequence includes a value that compares equal to at least one item in the atomized
                  value of the sequence supplied as $key-value, using the equality
                  comparison defined above.
When composite="yes",  and the
                     key specifier of that
                     xsl:key declaration is evaluated with a singleton focus based on $N, the
                     atomized value of the resulting
                  sequence compares equal to the atomized value of the sequence supplied as
                     $key-value, under the rules of the
                     deep-equal function as described above.
The sequence returned by the key function will be in document
            order, with duplicates (that is, nodes having the same identity) removed. 
Different rules apply when XSLT 1.0 compatible behavior is enabled.
A key (that is, a set of xsl:key
            declarations sharing the same key name) is processed in backwards compatible mode if (a)
            at least one of the xsl:key elements in the definition of the key enables backwards
            compatible behavior, and (b) the effective value of the composite attribute
            is no.
When a key is processed in backwards compatible mode, then:
The result of evaluating the key specifier in any xsl:key
               declaration having this key name is converted after atomization to a sequence of
               strings, by applying a cast to each item in the sequence.
When the first argument to the key function specifies this key
               name, then the value of the second argument is converted after atomization to a
               sequence of strings, by applying a cast to each item in the sequence. The values are
               then compared as strings.
            [ERR XTDE1260] It is a  dynamic error if the value
                     of $key-name is not a valid QName, or if there is no namespace
                  declaration in scope for the prefix of the QName, or if the name obtained by
                  expanding the QName is not the same as the expanded name of any
                     xsl:key declaration in the containing package. If the
                  processor is able to detect the error statically (for example, when the argument
                  is supplied as a string literal), then the processor may
                  optionally raise this as a static
                  error.
         
            [ERR XTDE1270] It is a dynamic
                        error to call the key function with
                  two arguments if there is no context
                  node, or if the root of the tree containing the context node is not a
                  document node; or to call the function with three arguments if the root of the
                  tree containing the node supplied in the third argument is not a document
                  node.
         
Untyped atomic items are converted to strings, not to the type of the other operand.
            This means, for example, that if the expression in the use attribute
            returns a date, supplying an untyped atomic item in the call to the
               key function will return an empty sequence.
| Given a declaration <xsl:key name="idkey" match="div" use="@id"/> an expression  <!ATTLIST div id ID #IMPLIED> and that the  | |
| Suppose a document describing a function library uses a  <prototype name="sqrt" return-type="xs:double"> <arg type="xs:double"/> </prototype> and a  <function>sqrt</function> Then the stylesheet could generate hyperlinks between the references and definitions as follows: <xsl:key name="func" match="prototype" use="@name"/> <xsl:template match="function"> <b> <a href="#{generate-id(key('func',.))}"> <xsl:apply-templates/> </a> </b> </xsl:template> <xsl:template match="prototype"> <p> <a name="{generate-id()}"> <b>Function: </b> ... </a> </p> </xsl:template> | |
| When called with two arguments, the  | |
| For example, suppose a document contains bibliographic references in the form
                      <entry name="XSLT">...</entry> Then the stylesheet could use the following to transform the  <xsl:key name="bib" match="entry" use="@name"/> <xsl:template match="bibref"> <xsl:variable name="name" select="."/> <xsl:apply-templates select="document('bib.xml')/key('bib', $name)"/> </xsl:template> Note: This relies on the ability in XPath 2.0 to have a function call on the
                     right-hand side of the  The following code would also work: <xsl:key name="bib" match="entry" use="@name"/> <xsl:template match="bibref"> <xsl:apply-templates select="key('bib', ., document('bib.xml'))"/> </xsl:template> | |
| This example uses a composite key consisting of first name and last name to locate employees in an employee file. The key can be defined like this: <xsl:key name="emp-name-key" match="employee" use="name/first, name/last" composite="yes"/> A particular employee can then be located using the function call: key('emp-name-key', ('Tim', 'Berners-Lee'), doc('employees.xml')) | 
Delivers the content of a key, for a specific document or subtree, as a map.
| fn:map-for-key( | ||
| $key-name | as (xs:string | xs:QName), | |
| $top | as (document-node() | element()) | := / | 
| )  as map(xs:anyAtomicType, node()*) | ||
This function is deterministicFO, and focus-independentFO.
The effect of the function is to return a map $M such that
         map:get($M, $key) returns the same result as key($key-name, $key, $top).
The function is defined only for maps that satisfy the following constraints:
The key's collation must be the Unicode Codepoint Collation.
The key must not specify composite=yes.
The $key-name argument specifies the name of the key. 
            The value of the argument must be either an xs:QName, or 
            a string containing an EQName. If it is
            a lexical QName, then it is expanded as
            described in 5.1.1 Qualified Names (no prefix means no namespace).
The $top argument is used to identify the selected subtree. If the argument is present,
            the selected subtree is the set of nodes that have $top as an
            ancestor-or-self node. If the argument is omitted, the selected subtree is the document
            containing the context node. This means that the third argument effectively defaults to
               /.
The returned map contains one entry (K, V) for every atomic item K
         where the result of key($key-name, K, $top) is not empty, with V
         set to the result of key($key-name, K, $top).
It is a  dynamic error if the value
                      is not a valid QName, or if there is no namespace
                  declaration in scope for the prefix of the QName, or if the name obtained by
                  expanding the QName is not the same as the expanded name of any
                     xsl:key declaration in the containing package. If the
                  processor is able to detect the error statically (for example, when the argument
                  is supplied as a string literal), then the processor may
                  optionally raise this as a static
                  error [see ERR XTDE1260].          
         
            [ERR XTDE1262] It is a dynamic
                        error if the key identified in a call to the function map-for-key
               is unsuitable because it uses a collation other than the Unicode Codepoint Collation, or because
               it is defined with composite=yes.
         
            It is a dynamic
                        error to call the key function with
                  two arguments if there is no context
                  node, or if the root of the tree containing the context node is not a
                  document node; or to call the function with three arguments if the root of the
                  tree containing the node supplied in the third argument is not a document
                  node [see ERR XTDE1270]. 
         
The function has two main uses:
It enables the key values present in a key to be enumerated.
It enables the keys for multiple documents to be combined into a single map, for example
            by using map:merge.
| This example uses a key identifying employees in an employee file by their social security number. The key might be defined like this: <xsl:key name="emp-name-key" match="employee" use="SSN"/> Given two documents  map-for-key('emp-name-key', $doc1)
   => map:remove(map-for-key('emp-name-key', $doc2) => map:keys()) | 
Returns a deep copy of the sequence supplied as the $input argument, or of the
            context item if the argument is absent.
| fn:copy-of( | ||
| $input | as item()* | := . | 
| )  as item()* | ||
The zero-argument form of this function is nondeterministicFO, focus-dependentFO, and context-independentFO.
The one-argument form of this function is nondeterministicFO, focus-independentFO, and context-independentFO.
The zero-argument form of this function is defined so that copy-of()
         returns the value of internal:copy-item(.), where internal:copy-item (which
            exists only for the purpose of this exposition) is defined below. Informally, copy-of()
         copies the context item.
The single argument form of this function is defined in terms of the
         internal:copy-item as follows: copy-of($input) is equivalent
            to $input ! internal:copy-item(.). Informally, copy-of($input) copies each item in the
         input sequence in turn.
The internal:copy-item function is defined as follows:
<xsl:function name="internal:copy-item" as="item()" new-each-time="maybe"> <xsl:param name="input" as="item()"/> <xsl:copy-of select="$input" copy-namespaces="yes" copy-accumulators="yes" validation="preserve"/> </xsl:function>
The streamability analysis, however, is different: see 12.8 Classifying Calls to Built-In FunctionsSG.
The use of new-each-time="maybe" in the above definition means that 
            if the internal:copy-item function is called more than once with the same node as argument 
            (whether or not these calls are part of the same call on copy-of), then it is implementation-dependent whether each
            call returns the same node, or whether multiple calls return different nodes.
           Returning the original node, however, is not allowed, except as an optimization when the processor
         can determine that this is equivalent.
Note:
One case where such optimization might be possible is when the copy is immediately atomized.
The copy-of function is available for use (and is primarily
            intended for use) when a source document is processed using streaming. It can also be
            used when not streaming. The effect, 
            when applied to element and document nodes,
            is to take a copy of the subtree rooted at the
            current node, and to make this available as a normal tree: one that can be processed without
            any of the restrictions that apply while streaming, for example only being able to
            process children once. The copy, of course, does not include siblings or ancestors of
            the context node, so any attempt to navigate to siblings or ancestors will result in an
            empty sequence being returned.
All nodes in the result sequence will be parentless.
If atomic items or functions (including maps and arrays) are present in the input sequence, they will be included unchanged at the corresponding position of the result sequence.
Accumulator values are taken from the copied document as described in 19.10 Copying Accumulator Values.
| Using  | |
| This example copies from the source document all employees who work in marketing and
               are based in Dubai. Because there are two accesses using the child axis, it is not
               possible to do this without buffering each employee in memory, which can be achieved
               using the  | |
| <xsl:source-document streamable="yes" href="employees.xml"> <xsl:sequence select="copy-of(employees/employee) [department='Marketing' and location='Dubai']"/> </xsl:source-document> | 
Returns a copy of a sequence, retaining copies of the ancestors and descendants of any node in the input sequence, together with their attributes and namespaces.
| fn:snapshot( | ||
| $input | as item()* | := . | 
| )  as item()* | ||
The zero-argument form of this function is nondeterministicFO, focus-dependentFO, and context-independentFO.
The one-argument form of this function is nondeterministicFO, focus-independentFO, and context-independentFO.
The zero-argument form of this function is defined so that snapshot()
            returns the value of internal:snaphot-item(.), where internal:snapshot-item (which
            exists only for the purpose of this exposition) is defined below. Informally, snapshot()
            takes a snapshot of the context item.
The single argument form of this function is defined in terms of the
            internal:snapshot-item as follows: snapshot($input) is equivalent
            to $input ! internal:snapshot-item(.). Informally, snapshot($input) takes a snapshot of each item in the
            input sequence in turn.
The internal:snapshot-item function behaves as follows:
If the supplied item is an atomic item or a function item (including maps and arrays), then it returns that item unchanged.
If the supplied item is a node, then it returns a snapshot of that node, as defined below.
            [Definition: A snapshot of a node N
               is a deep copy of N, as produced by the xsl:copy-of
               instruction with copy-namespaces set to yes,
               copy-accumulators set to yes, and
                  validation set to preserve, with the additional property
               that for every ancestor of N, the copy also has a corresponding ancestor
               whose name, node-kind, and base URI are the same as the corresponding ancestor of
               N, and that has copies of the attributes, namespaces and accumulator values of the
               corresponding ancestor of N. But the ancestor has a type annotation of
                  xs:anyType, has the properties nilled,
                  is-id, and is-idref set to false, and has no children
               other than the child that is a copy of N or one of its
               ancestors.]
         
If the function is called more than once with the same argument, it is implementation-dependent whether each
            call returns the same node, or whether multiple calls return different nodes. That is,
            the result of the expression snapshot($X) is snapshot($X) is implementation-dependent.
Except for the effect on accumulators, the internal:snapshot-item function can be expressed
            as follows:
<xsl:function name="internal:snapshot-item" as="item()"> <xsl:param name="input" as="item()"/> <xsl:apply-templates select="$input" mode="internal:snapshot"/> </xsl:function> <!-- for atomic items and function items, return the item unchanged --> <xsl:template match="." mode="internal:snapshot" priority="1"> <xsl:sequence select="."/> </xsl:template> <!-- for a document node, or any other root node, return a deep copy --> <xsl:template match="root()" mode="internal:snapshot" priority="5"> <xsl:copy-of select="."/> </xsl:template> <!-- for an element, comment, text node, or processing instruction: --> <xsl:template match="node()" mode="internal:snapshot" as="node()" priority="3"> <xsl:sequence select="internal:graft-to-parent( ., .., function($n){$n/node()})"/> </xsl:template> <!-- for an attribute: --> <xsl:template match="@*" mode="internal:snapshot" as="attribute()" priority="3"> <xsl:variable name="name" select="node-name(.)"/> <xsl:sequence select="internal:graft-to-parent(., .., function($n){$n/@*[node-name(.) = $name]})"/> </xsl:template> <!-- for a namespace node: --> <xsl:template match="namespace-node()" mode="internal:snapshot" as="namespace-node()" priority="3"> <xsl:variable name="name" select="local-name(.)"/> <xsl:sequence select="internal:graft-to-parent(., .., function($n){$n/namespace-node()[local-name(.) = $name]})"/> </xsl:template> <!-- make a copy C of a supplied node N, grafting it to a shallow copy of C's original parent, and returning the copy C --> <xsl:function name="internal:graft-to-parent" as="node()"> <xsl:param name="n" as="node()"/> <xsl:param name="original-parent" as="node()?"/> <xsl:param name="down-function" as="function(node()) as node()"/> <xsl:choose> <xsl:when test="exists($original-parent)"> <xsl:variable name="p" as="node()"> <xsl:copy select="$original-parent"> <xsl:copy-of select="@*"/> <xsl:copy-of select="$n"/> </xsl:copy> </xsl:variable> <xsl:variable name="copied-parent" select="internal:graft-to-parent( $p, $original-parent/.., function($n){$n/node()}))"/> <xsl:sequence select="$down-function($copied-parent)"/> </xsl:when> <xsl:otherwise> <xsl:sequence select="$n"/> </xsl:otherwise> </xsl:choose> </xsl:function>
The snapshot function is available for use (and is primarily
            intended for use) when a source document is processed using streaming. It can also be
            used when not streaming. The effect is to take a copy of the subtree rooted at the
            current node, along with copies of the ancestors and their attributes, and to make this
            available as a normal tree, that can be processed without any of the restrictions that
            apply while streaming, for example only being able to process children once. The copy,
            of course, does not include siblings of the context node or of its ancestors, so any
            attempt to navigate to these siblings will result in an empty sequence being
            returned.
For parentless nodes, the effect of snapshot($x) is identical to the effect
         of copy-of($x).
| Using  | |
| This example copies from the source document all employees who work in marketing and
               are based in Dubai. It assumes that employees are grouped by location. Because there
               are two accesses using the child axis (referencing  | |
| <xsl:source-document streamable="yes" href="employees.xml"> <xsl:for-each select="snapshot(locations/location[@name='Dubai'] /employee)[department='Marketing']"> <employee> <location code="{../@code}"/> <salary value="{salary}"/> </employee> </xsl:for-each> </xsl:source-document> | 
Returns the item that is the context item for the evaluation of the containing XPath expression
| fn:current() as item() | 
This function is deterministicFO, context-dependentFO, and focus-dependentFO.
The current function, used within an XPath expression, returns the item that was the context item at the point where the expression was
            invoked from the XSLT stylesheet. This is
            referred to as the current item. For an outermost expression (an expression not
            occurring within another expression), the current item is always the same as the context
            item. Thus,
<xsl:value-of select="current()"/>
means the same as
<xsl:value-of select="."/>
However, within square brackets, or on the right-hand side of the /
            operator, the current item is generally different from the context item.
If the current function is used within a pattern, its value is the item that is
            being matched against the pattern.
            [ERR XTDE1360] If the current function is evaluated within an expression
                  that is evaluated when the context item is absent, a 
                     dynamic error occurs.
         
When the current is called by means of a
            dynamic function call (for example, current#0()), it is evaluated as if the
            context item is absent ([see ERR XTDE1360]).
| The instruction: | |
| <xsl:apply-templates select="//glossary/entry[@name=current()/@ref]"/> | |
| will process all  | |
| <xsl:apply-templates select="//glossary/entry[@name=./@ref]"/> | |
| which means the same as | |
| <xsl:apply-templates select="//glossary/entry[@name=@ref]"/> | |
| and so would process all  | 
Returns the URI (system identifier) of an unparsed entity
| fn:unparsed-entity-uri( | ||
| $entity-name | as xs:string, | |
| $doc | as node() | := . | 
| )  as xs:anyURI | ||
This function is deterministicFO, focus-dependentFO, and context-dependentFO.
Calling the single-argument form of this function has the same effect as calling the two-argument form with the context item as the second argument.
The two-argument unparsed-entity-uri 
            function returns the URI of the unparsed
            entity whose name is given by the value of the $entity-name argument, in
            the document containing the node supplied as the 
               value of the $doc argument. It
            returns the zero-length xs:anyURI if there is no such entity. This function
            maps to the dm:unparsed-entity-system-id accessor defined in [XDM 4.0].
            [ERR XTDE1370] It is a dynamic error if $node,
                  or the context item if the second argument is omitted,
                  is a node in a tree whose root is not a document node.
         
The following errors may be raised when $node is omitted:
If the context item is absent, dynamic error [ERR XPDY0002] XP40.
If the context item is not a node, type error [ERR XPTY0004] XP40.
The XDM accessor dm:unparsed-entity-system-id is defined to return an absolute URI,
            obtained by resolving the system identifier as written against the base URI of the document. If no
            base URI is available for the document, the unparsed-entity-uri function
            should return the system identifier as written, without any attempt to make
            it absolute.
XML permits more than one unparsed entity declaration with the same name to appear, and says that the first declaration is the one that should be used. This rule should be respected during construction of the data model; the data model instance should not contain more than one unparsed entity with the same name.
Returns the public identifier of an unparsed entity
| fn:unparsed-entity-public-id( | ||
| $entity-name | as xs:string, | |
| $doc | as node() | := . | 
| )  as xs:string | ||
This function is deterministicFO, focus-dependentFO, and context-dependentFO.
Calling the single-argument form of this function has the same effect as calling the two-argument form with the context item as the second argument.
The two-argument unparsed-entity-public-id 
            function returns the public
            identifier of the unparsed entity whose name is given by the value of the
            $entity-name argument, in the document containing the node supplied as the 
               value of the $doc argument. It returns the zero-length string if
            there is no such entity, or if the entity has no public identifier. This function maps
            to the dm:unparsed-entity-public-id accessor defined in [XDM 4.0].
            [ERR XTDE1380] It is a dynamic error if $node,
                  or the context item if the second argument is omitted,
                  is a node in a tree whose root is not a document node.
         
The following errors may be raised when $node is omitted:
If the context item is absent, dynamic error [ERR XPDY0002] XP40.
If the context item is not a node, type error [ERR XPTY0004] XP40.
XML permits more than one unparsed entity declaration with the same name to appear, and says that the first declaration is the one that should be used. This rule should be respected during construction of the data model; the data model instance should not contain more than one unparsed entity with the same name.
Returns the value of a system property
| fn:system-property( | ||
| $name | as (xs:string | xs:QName) | |
| )  as xs:string | ||
This function is deterministicFO, focus-independentFO, and context-dependentFO. It depends on namespaces.
The value of the $name argument 
            must be either an xs:QName, or 
            a string containing an EQName. If it is a 
            lexical QName
            with a prefix, then it is expanded into an expanded
               QName using the namespace declarations in the static context of the
            expression. If there is no prefix, the name is
            taken as being in no namespace.
The system-property function returns a string representing the
            value of the system property identified by the name. If there is no such system
            property, the zero-length string is returned.
Implementations must provide the following system properties, which are all in the XSLT namespace:
                  xsl:version, a number giving the version of XSLT implemented by the
                     processor; for implementations conforming
                  to the version of XSLT specified by this document, this is the string "4.0". 
                  The value will always be a
                  string in the lexical space of the decimal datatype defined in XML Schema (see
                     [XML Schema Part 2]). This allows the value to be converted to a number
                  for the purpose of magnitude comparisons.
                  xsl:vendor, a string identifying the implementer of the processor
               
                  xsl:vendor-url, a string containing a URL identifying the implementer
                  of the processor; typically this is the host
                  page (home page) of the implementer’s Web site.
                  xsl:product-name, a string containing the name of the implementation,
                  as defined by the implementer. This should normally remain
                  constant from one release of the product to the next. It should
                  also be constant across platforms in cases where the same source code is used to
                  produce compatible products for multiple execution platforms.
                  xsl:product-version, a string identifying the version of the
                  implementation, as defined by the implementer. This should
                  normally vary from one release of the product to the next, and at the discretion
                  of the implementer it may also vary across different execution
                  platforms.
                  xsl:is-schema-aware, returns the string "yes" in the
                  case of a processor that claims conformance as a schema-aware XSLT processor, or
                     "no" in the case of a basic
                     XSLT processor.
                  xsl:supports-serialization, returns the string "yes" in
                  the case of a processor that offers the serialization feature, or "no" otherwise.
                  xsl:supports-backwards-compatibility, returns the string
                     "yes" in the case of a processor that offers the XSLT 1.0 compatibility feature, or
                     "no" otherwise.
                  xsl:supports-namespace-axis, returns the string "yes" in
                  the case of a processor that offers the XPath namespace axis even when not in
                  backwards compatible mode, or "no" otherwise. Note that a processor
                  that supports backwards compatible mode must support the namespace axis when in
                  that mode, so this property is not relevant to that case.
                  xsl:supports-streaming, returns the string "yes" in the
                  case of a processor that offers the streaming feature (see 27.5 Streaming Feature), or "no" otherwise.
                  xsl:supports-dynamic-evaluation, returns the string
                     "yes" in the case of a processor that offers the dynamic
                  evaluation feature (see 27.6 Dynamic Evaluation Feature), or
                     "no" otherwise.
                  xsl:supports-higher-order-functions, always returns the string
                  "yes".
Note:
In XSLT 4.0, support for higher-order functions is no longer an optional feature.
                  xsl:xpath-version, a number giving the version of XPath implemented by the
                  processor; for implementations conforming
                  to the version of XSLT specified by this document, this is the string "4.0". 
                  The value will always be a
                  string in the lexical space of the decimal datatype defined in XML Schema (see
                  [XML Schema Part 2]). This allows the value to be converted to a number
                  for the purpose of magnitude comparisons.
               
                  xsl:xsd-version, a number giving the version of XSD (XML Schema) implemented by the
                  processor. The value will always be a
                  string in the lexical space of the decimal datatype defined in XML Schema (see
                  [XML Schema Part 2]). This allows the value to be converted to a number
                  for the purpose of magnitude comparisons. Typical values are "1.0" or "1.1".
                  This property is relevant even when the processor is not schema-aware, since the built-in datatypes
                  for XSD 1.1 differ from those in XSD 1.0.
               
Some of these properties relate to the conformance levels and features offered by the processor: these options are described in 27 Conformance.
Except where otherwise specified, the actual values returned for the above properties are implementation-defined.
The set of system properties that are supported, in addition to those listed above, is also implementation-defined. Implementations must not define additional system properties in the XSLT namespace.
            [ERR XTDE1390] It is a  dynamic error if the value supplied as
                  the $property-name argument  is not a valid
                  QName, or if there is no namespace declaration in scope for the prefix of the
                  QName. If the processor is able to detect the error statically (for example, when
                  the argument is supplied as a string literal), then the processor
                     may optionally raise this as a static error. 
         
An implementation must not return the value 
               3.0
             as the value of the xsl:version system property unless it is
            conformant to XSLT 3.0.
It is recognized that vendors who are enhancing XSLT 1.0 or
               2.0 processors may wish to release interim implementations before all the
            mandatory features of this specification are implemented. Since such products are not
            conformant to XSLT 3.0, this specification cannot define their behavior. However,
            implementers of such products are encouraged to return a value for the
               xsl:version system property that is intermediate between 1.0 and 3.0,
            and to provide the element-available and
               function-available functions to allow users to test which
            features have been fully implemented.
In XSLT 4.0, the argument can be supplied as a QName literal, for example
         system-property( #xsl:version ).
TODO: add change metadata (PR 1243)
Returns a list of system property names that are suitable for passing to
            the system-property function, as a sequence of QNames.
| fn:available-system-properties() as xs:QName* | 
This function is deterministicFO, context-independentFO, and focus-independentFO.
The function returns a sequence of QNames, being the names of the system properties recognized by the processor, in some implementation-dependent order.
The prefix part of a returned QName is implementation-dependent.
The function is deterministicFO: that is, the set of available system properties does not vary during the course of a transformation.
The function returns a list of QNames, containing no duplicates.
The QNames in this list are suitable for passing to the
            system-property function.
Maps are defined in the XDM Data Model: see [XDM 4.0] section 8.2 Map Items.
                  The xsl:map instruction allows a select attribute
                  as an alternative to the contained sequence constructor.
                 [Issue 1632 ]
                  The xsl:map-entry instruction, in common with other instructions,
                  now raises error XTSE3185 (rather than XTSE3280) if both a select
                  attribute and a sequence constructor are present.
                 [Issue 1632 ]
Ordered maps are introduced. [Issue 1651 PR 1703 14 January 2025]
Three instructions are added to XSLT to facilitate the construction of maps.
<!-- Category: instruction -->
<xsl:map
  select? = expression
  duplicates? = expression〔fn($a, $b) { error(xs:QName(err:XTDE3365)) }〕 >
  <!-- Content: sequence-constructor -->
</xsl:map>
The instruction xsl:map constructs and returns a new map.
The select attribute and the contained sequence constructor are mutually
               exclusive: if a select attribute is present, then the content
                  must be empty except optionally for
                  xsl:fallback instructions. [see ERR XTSE3185]
The result of evaluating the select expression or the contained
            sequence constructor is referred to as the input sequence.
The input sequence must be a sequence of
               maps: call this $maps.
In the absence of duplicate keys, the result of the instruction is then given by the XPath 3.1 expression:
map:merge($maps)
Note:
Informally: in the absence of duplicate keys the resulting map contains the union of the map entries from the supplied sequence of maps.
Note:
The order of entries in the returned map will reflect the order of items in the sequence that results from evaluation of the input sequence.
The handling of duplicate keys is described in 21.1.2 Handling of duplicate keys below.
There is no requirement that the supplied input maps should have the same or
               compatible types.
               The type of a map (for example map(xs:integer,
                  xs:string)) is descriptive of the entries it currently contains, but is not
               a constraint on how the map may be combined with other maps.
Note:
A common coding pattern is to supply the input as a set of single-entry maps, that is,
               maps containing a single key-value pair. Moreover, it is often convenient to construct these
               using the xsl:map-entry instruction. However, it is not required that
               the input maps should be single-entry maps, nor is it required that they should be constructed
               using this instruction.
[ERR XTTE3375] A type error occurs if the result of the input sequence
                         is
                     not an instance of the required type map(*)*.
Note:
In practice, the effect of this rule is that the result of the 
                  select expression or sequence
                  constructor contained in the xsl:map instruction is severely
                  constrained: it doesn’t make sense, for example, for it to contain
                  instructions such as xsl:element that create new nodes. As with
                  other type errors, processors are free to raise the error statically if they are
                  able to determine that the sequence constructor would always fail when
                  evaluated.
Note:
It is legitimate to construct a map using an instruction such as
               <xsl:map select="{'a':1, 'b':2}"/>. In this situation
               xsl:map has exactly the same effect as xsl:sequence,
               but users may feel that it improves readability.
<!-- Category: instruction -->
<xsl:map-entry
  key = expression
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:map-entry>
The instruction xsl:map-entry constructs and returns a singleton
               map: that is, a map which  contains one
               key and one value. Such a map is primarily used as a building block when constructing
               maps using the xsl:map instruction.
The select attribute and the contained sequence constructor are mutually
               exclusive: if a select attribute is present, then the content
                  must be empty except optionally for
                  xsl:fallback instructions. [see ERR XTSE3185]
The key of the entry in the new map is the value obtained by evaluating the
               expression in the key attribute, converted to the required type
                  xs:anyAtomicType by applying the coercion rules. If the supplied key (after conversion) is of
               type xs:untypedAtomic, it is cast to xs:string.
The associated value is the value obtained by evaluating the expression in the
                  select attribute, or the contained sequence constructor, with no
               conversion. If there is no select attribute and the sequence constructor
               is empty, the associated value is the empty sequence.
The following example binds a variable to a map whose content is statically known:
<xsl:variable name="week" as="map(xs:string, xs:string)"> <xsl:map> <xsl:map-entry key="'Mo'" select="'Monday'"/> <xsl:map-entry key="'Tu'" select="'Tuesday'"/> <xsl:map-entry key="'We'" select="'Wednesday'"/> <xsl:map-entry key="'Th'" select="'Thursday'"/> <xsl:map-entry key="'Fr'" select="'Friday'"/> <xsl:map-entry key="'Sa'" select="'Saturday'"/> <xsl:map-entry key="'Su'" select="'Sunday'"/> </xsl:map> </xsl:variable>
In simple cases like this the same effect can be achieved using the
                xsl:record instruction:
<xsl:variable name="week" as="map(xs:string, xs:string)"> <xsl:record Mo="'Monday'" Tu="'Tuesday'" We="'Wednesday'" Th="'Thursday'" Fr="'Friday'" Sa="'Saturday'" Su="'Sunday'"/> </xsl:variable>
A third option is to construct the map in XPath:
<xsl:variable name="week" as="map(xs:string, xs:string)"> <xsl:select> {'Mo':'Monday', 'Tu':'Tuesday', 'We':'Wednesday', 'Th':'Thursday', 'Fr': 'Friday', 'Sa':'Saturday', 'Su':'Sunday'} </xsl:select> </xsl:variable>
The following example binds a variable to a map acting as an index into a source document:
<xsl:variable name="index" as="map(xs:string, element(employee))"> <xsl:map> <xsl:for-each select="//employee"> <xsl:map-entry key="@empNr" select="."/> </xsl:for-each> </xsl:map> </xsl:variable>
Again, an alternative is to use an XPath expression:
<xsl:variable name="index" as="map(xs:string, element(employee))"> <xsl:select> map:build(//employee, fn{@empNr}) </xsl:select> </xsl:variable>
The following example modifies a supplied map $input by changing
                     all the keys to upper case. A dynamic error occurs if this results in duplicate
                     keys:
<xsl:map> <xsl:for-each select="map:pairs($map)"> <xsl:map-entry key="upper-case(?key)" select="?value"/> </xsl:for-each> </xsl:map>
The following example modifies a supplied map $input by wrapping
                     each of the values in an array:
<xsl:map> <xsl:for-each select="map:pairs($map)"> <xsl:map-entry key="?key"> <xsl:array select="?value"/> </xsl:map-entry> </xsl:for-each> </xsl:map>
This could also be written:
<xsl:map select=" map:pairs($map) ! { ?key : array{ ?value } }"/>
 The xsl:record instruction is introduced
                     to make construction of record maps simpler.   [Issue 322 PR 1858]
<!-- Category: instruction -->
<xsl:record
  xsl:as? = item-type〔'map(*)'〕
  xsl:duplicates? = expression〔fn($a, $b) { error(xs:QName(err:XTDE3365)) }〕
  * = expression >
  <!-- Content: sequence-constructor -->
</xsl:record>
(The notation * = expression indicates that this instruction accepts
             any number of additional attributes in no namespace.)
| Editorial note | |
| There needs to be a construct available within element-catalog.xmlto declare 'any permitted attribute of a given name type/pattern', in this casexs:NCName | |
The instruction xsl:record constructs and returns a new
                 populated map, permitting entries to be declared as attributes on the
                 instruction. It is intended to make writing maps where the entry keys are
                 NCNames simpler and more concise, avoiding larger XSLT constructs using
                 xsl:map and xsl:map-entry or
                 xsl:sequence containing map-constructing XPath
                 expressions.
Note:
Unlike all other XSLT elements, the names of the attributes xsl:as and
                         xsl:duplicates as well as the standard
                             attributes (such as use-when or xpath-default-namespace) attached to the xsl:record instruction must be in the XSLT namespace, 
                         as opposed to being in no namespace. This has been chosen to
                         avoid reserving the names of such attributes (e.g. as, duplicates, use-when etc.) as potential
                         entry keys, leaving any valid NCName as a candidate.
The xsl:record generates a new map: call this
                 $record. For each of the attributes of the instruction whose name
                 is an xs:NCName an entry is added to $record whose
                 key is the name of the attribute (as xs:string) and whose value is
                 the result of evaluating the value of that attribute as an expression in the
                 current context.
Note:
As the values of the attributes whose names are xs:NCName are considered to be XPath expressions,
                     two consequences follow for such attributes:
                     
xs:NCName. These restrictions do not apply to attributes of xsl:record whose names are in namespaces.
Note:
The order of attribute-generated entries in $record will reflect
                         the order of attributes returned along the attribute:: axis, which is implementation-dependent but stable.
After processing the applicable attributes of the instruction, any contained
                 sequence constructor is evaluated and the result must be a
                 (possibly empty) sequence of maps. The entries in these maps are merged into
                 $record. By this means entries can be added whose keys are not
                 NCNames, or conditionally generated entries can be included.
 Each of the map entries in
                 $record is modified by applying the coercion rules
                 to convert the singleton map to the type declared in the xsl:as
                 attribute of the xsl:record instruction, if present. 
                 This may contain a map type declaration or 
                 a reference to one of the in-scope named item typesXP, which may include record types. 
                 Unless any type restriction is violated $record is returned as the instruction result.
| Editorial note | |
| This implies that xsl:mapand possiblyxsl:map-entryshould support anasattribute, restricting type. | |
The treatment of duplicate keys between entries defined in the attributes of
                 xsl:record and any generated by a contained sequence
                 constructor is described in 21.1.2 Handling of duplicate keys below. Note that in
                 the absence of a sequence constructor, no duplicate keys can appear, as all
                 attributes of xsl:record must have a unique name within the
                 element tag.
The effect of this instruction, in the absence of errors, is equivalent to execution of the XSLT xsl:map instruction generated by the 
                     the following source transformation of the xsl:record subtree
<xsl:namespace-alias stylesheet-prefix="t" result-prefix="xsl"/> ... <xsl:mode name="record" on-no-match="shallow-copy"> <xsl:template match="xsl:record"> <xsl:variable name="xsl-attributes" select="@xsl:*"/> <xsl:variable name="ncname-attributes" select="@*[empty(prefix-from-QName(node-name()))]"/> <xsl:variable name="other-attributes" select="@* except ($xsl-attributes, $ncname-attributes)"/> <t:map> <xsl:sequence select="$other-attributes"/> <xsl:apply-templates select="$xsl-attributes, $ncname-attributes, node()"/> </t:map> </xsl:template> <xsl:template match="xsl:record/@*"> <t:map-entry key="'{name()}'" select="{.}"/> </xsl:template> <xsl:template match="xsl:record/@xsl:*" priority="1"> <xsl:attribute name="{local-name()}" select="."/> </xsl:template> </xsl:mode>
which for the instruction:
<xsl:record xsl:as="eg:book" author="string(AUTHOR)" title="string(TITLE)" price="xs:decimal(PRICE)" publisher="string(../@name)"> <xsl:if test="@private"> <xsl:map-entry name="'private entry'" select="true()"/> </xsl:if> </xsl:record>
would produce
<xsl:map as="eg:book"> <xsl:map-entry key="'author'" select="string(AUTHOR)"/> <xsl:map-entry key="'title'" select="string(TITLE)"/> <xsl:map-entry key="'price'" select="xs:decimal(PRICE)"/> <xsl:map-entry key="'publisher'" select="string(../@name)"/> <xsl:if test="@private"> <xsl:map-entry name="'private entry'" select="true()"/> </xsl:if> </xsl:map>
The following example constructs a map using xsl:record
<xsl:template match="book" as="map(*)"> <xsl:record author="string(AUTHOR)" title="string(TITLE)" price="xs:decimal(PRICE)" publisher="string(../@name)"> <xsl:if test="@private"> <xsl:map-entry name="'private entry'" select="true()"/> </xsl:if> </xsl:record> </xsl:template>
with the following input
<catalog name="QT4 Community"> <book private="true"> <AUTHOR>MHK</AUTHOR> <TITLE>XSLT 4.0</TITLE> <PRICE>123.45</PRICE> </book> </catalog>
will produce a resulting map:
map{'author':'MHK', 'title': 'XSLT 4.0', 'price':123.45, 
                     'publisher':'QT4 Community', 'private entry': true()}
                     
                     A new attribute xsl:map/@duplicates is available,
                  allowing control over how duplicate keys are handled by the xsl:map
                  instruction.
                    [Issue 169  28 November 2023]
                       Attribute xsl:record/@xsl:duplicates is added to control duplicate keys handling in the xsl:record
                       instruction.
                     [Issue 322 PR 1858 14 March 2025]
This section describes what happens when two or more maps in the input sequence of
               an xsl:map or xsl:record instruction contain duplicate keys: that is, when one of these
               maps contains an entry with key K, and another contains an entry with key L,
                  and fn:atomic-equal(K, L) returns true.
[ERR XTDE3365] In the absence of the [xsl:]duplicates attribute, 
                     a dynamic error occurs if the set of
                     keys in the maps making up the input sequence
                      
                     contains duplicates.
The result of evaluating the [xsl:]duplicates attribute, if present, must
               be either one of the strings "use-first", "use-last",
                  "use-any", "combine", or "reject",
                  or a function with arity 2. These values correspond to the permitted
                  values of the duplicates option of the 
                  map:merge function.
The result of the xsl:map or xsl:record instruction is defined by reference to 
               the function map:merge. Specifically, if $maps
               is the input sequence to xsl:map or xsl:record, and $duplicates
               is the effective value of the [xsl:]duplicates
               attribute, then the result of the instruction is the result of the function
               call map:merge($maps, { "duplicates": $duplicates }).
The following table shows some possible values 
                  of the duplicates attribute, and explains their effect:
| Attribute | Effect | 
|---|---|
| duplicates="'use-first'" | The first of the duplicate values is used. | 
| duplicates="'use-last'" | The last of the duplicate values is used. | 
| duplicates="'combine'" | The sequence concatenationXP 
                              of the duplicate values is used. This could
                              also be expressed as duplicates="op(',')". | 
| duplicates="fn($a, $b) { max(($a, $b)) }" | The highest of the duplicate values is used. | 
| duplicates="fn($a, $b) { min(($a, $b)) }" | The lowest of the duplicate values is used. | 
| duplicates="concat(?, ', ', ?) }" | The comma-separated string concatenation of the duplicate values is used. | 
| duplicates="op('+')" | The sum of the duplicate values is used. | 
| duplicates="fn($a, $b) { subsequence(($a, $b), 1, 4) }" | The first four of the duplicates are retained; any further duplicates are discarded. | 
| duplicates="fn($a, $b) { distinct-values(($a, $b)) }" | When multiple entries have the same key, the corresponding values are retained only if they are distinct from other values having the same key. | 
This example takes as input an XML document such as:
<data> <event id="A23" value="12"/> <event id="A24" value="5"/> <event id="A25" value="9"/> <event id="A23" value="2"/> </data>
and constructs a map whose JSON representation is:
{ "A23": [ 12, 2 ], "A24": [ 5 ], "A23": [ 9 ] }
                     The logic is:
<xsl:template match="data"> <xsl:map duplicates="fn($a, $b) { array:join(($a, $b)) }"> <xsl:for-each select="event"> <xsl:map-entry key="@id" select="[xs:integer(@value)]"/> </xsl:for-each> </xsl:map> </xsl:template>
Note:
Specifying the effect by reference to map:merge has
                  the following consequences when duplicates are combined
                  into a merged entry:
The position of the merged entry in the result corresponds to the position of the first of the duplicate keys in the input.
The key used for the merged entry in the result corresponds
                     to one of the duplicate keys in the input: it is 
                        implementation-dependent which one is chosen.
                        This is relevant when
                     the duplicate keys differ in some way, for example when they have
                     different type annotations, or when they are xs:dateTime
                     values in different timezones.
This section gives some examples of where maps can be useful.
This example uses maps in conjunction with the xsl:iterate
                  instruction to find the highest-earning employee in each department, in a single
                  streaming pass of an input document containing employee records.
<xsl:source-document streamable="yes" href="employees.xml"> <xsl:iterate select="*/employee"> <xsl:param name="highest-earners" as="map(xs:string, element(employee))" select="{}"/> <xsl:on-completion> <xsl:for-each select="map:keys($highest-earners)"> <department name="{.}"> <xsl:copy-of select="$highest-earners(.)"/> </department> </xsl:for-each> </xsl:on-completion> <xsl:variable name="this" select="copy-of(.)" as="element(employee)"/> <xsl:next-iteration> <xsl:with-param name="highest-earners" select="let $existing := $highest-earners($this/department) return if ($existing/salary gt $this/salary) then $highest-earners else map:put($highest-earners, $this/department, $this)"/> </xsl:next-iteration> </xsl:iterate> </xsl:source-document>
A complex number might be represented as a map with two entries, the keys being
                  the xs:boolean value true for the real part, and the
                     xs:boolean value false for the imaginary part. A
                  library for manipulation of complex numbers might include functions such as the
                  following:
<xsl:variable name="REAL" static="yes" as="xs:int" select="0"/> <xsl:variable name="IMAG" static="yes" as="xs:int" select="1"/> <xsl:function name="i:complex" as="map(xs:int, xs:double)"> <xsl:param name="real" as="xs:double"/> <xsl:param name="imaginary" as="xs:double"/> <xsl:sequence select="{ $REAL: $real, $IMAG: $imaginary }"/> </xsl:function> <xsl:function name="i:real" as="xs:double"> <xsl:param name="complex" as="map(xs:int, xs:double)"/> <xsl:sequence select="$complex($REAL)"/> </xsl:function> <xsl:function name="i:imaginary" as="xs:double"> <xsl:param name="complex" as="map(xs:int, xs:double)"/> <xsl:sequence select="$complex($IMAG)"/> </xsl:function> <xsl:function name="i:add" as="map(xs:int, xs:double)"> <xsl:param name="arg1" as="map(xs:int, xs:double)"/> <xsl:param name="arg2" as="map(xs:int, xs:double)"/> <xsl:sequence select="i:complex(i:real($arg1)+i:real($arg2), i:imaginary($arg1)+i:imaginary($arg2)"/> </xsl:function> <xsl:function name="i:multiply" as="map(xs:boolean, xs:double)"> <xsl:param name="arg1" as="map(xs:boolean, xs:double)"/> <xsl:param name="arg2" as="map(xs:boolean, xs:double)"/> <xsl:sequence select="i:complex( i:real($arg1)*i:real($arg2) - i:imaginary($arg1)*i:imaginary($arg2), i:real($arg1)*i:imaginary($arg2) + i:imaginary($arg1)*i:real($arg2))"/> </xsl:function>
Given a set of book elements, it is possible to construct an index in
                  the form of a map allowing the books to be retrieved by ISBN number.
Assume the book elements have the form:
<book> <isbn>0470192747</isbn> <author>Michael H. Kay</author> <publisher>Wiley</publisher> <title>XSLT 2.0 and XPath 2.0 Programmer's Reference</title> </book>
An index may be constructed as follows:
<xsl:variable name="isbn-index" as="map(xs:string, element(book))" select="map:merge(for $b in //book return { $b/isbn: $b })"/>
This index may then be used to retrieve the book for a given ISBN using either of
                  the expressions map:get($isbn-index, "0470192747") or
                     $isbn-index("0470192747").
In this simple form, this replicates the functionality available using
                     xsl:key and the key function. However, it
                  also provides capabilities not directly available using the
                     key function: for example, the index can include
                     book elements in multiple source documents. It also allows
                  processing of all the books using a construct such as <xsl:for-each
                     select="map:keys($isbn-index)">
As in JavaScript, a map whose keys are strings and whose associated values are function items can be used in a similar way to a class in object-oriented programming languages.
Suppose an application needs to handle customer order information that may arrive in three different formats, with different hierarchic arrangements:
Flat structure:
<customer id="c123">...</customer> <product id="p789">...</product> <order customer="c123" product="p789">...</order>
Orders within customer elements:
<customer id="c123"> <order product="p789">...</order> </customer> <product id="p789">...</product>
Orders within product elements:
<customer id="c123">...</customer> <product id="p789"> <order customer="c123">...</order> </product>
An application can isolate itself from these differences by defining a set of
                  functions to navigate the relationships between customers, orders, and products:
                     orders-for-customer, orders-for-product,
                     customer-for-order, product-for-order. These
                  functions can be implemented in different ways for the three different input
                  formats. For example, with the first format the implementation might be:
<xsl:variable name="flat-input-functions" as="map(xs:string, fn(*))*" select="{ 'orders-for-customer' : fn($c as element(customer)) as element(order)* { $c/../order[@customer = $c/@id] }, 'orders-for-product' : fn($p as element(product)) as element(order)* { $p/../order[@product = $p/@id] }, 'customer-for-order' : fn($o as element(order)) as element(customer) { $o/../customer[@id = $o/@customer] }, 'product-for-order' : fn($o as element(order)) as element(product) { $o/../product[@id = $o/@product] } } "/>
Having established which input format is in use, the application can bind the
                  appropriate implementation of these functions to a variable such as
                     $input-navigator, and can then process the input using XPath
                  expressions such as the following, which selects all products for which there is
                  no order: //product[empty($input-navigator("orders-for-product")(.))]
               
Arrays are defined in the XDM Data Model: see [XDM 4.0] section 8.3 Array Items.
The instruction xsl:array constructs and returns a new array.
<!-- Category: instruction -->
<xsl:array
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:array>
<!-- Category: instruction -->
<xsl:array-member
  select? = expression >
  <!-- Content: sequence-constructor -->
</xsl:array-member>
If the xsl:array instruction has a select attribute then
            the sequence constructor must be empty, except for any xsl:fallback instructions
            (which an XSLT 4.0 processor ignores) [see ERR XTSE3185].
If the xsl:array-member instruction has a select attribute then
            the sequence constructor must be empty, except for any xsl:fallback instructions
            (which an XSLT 4.0 processor ignores) [see ERR XTSE3185].
The content of the array is constructed by the following steps:
The expression in the select attribute of the xsl:array 
                  instruction, or its contained 
               sequence constructor, is evaluated. Call the result $seq.
The value of $seq must be one of the following:
An empty sequence. In this case the result of the xsl:array
                     instruction is an empty array.
A sequence of one or more atomic items, that is, an instance of
                  xs:anyAtomicType+. In this case the result of the instruction is the value of the
                  expression array{$seq}: namely, an array whose members
                  are all single atomic items.
A sequence of one or more nodes, that is, an instance of
                  node()+. In this case the result is the value of the
                  expression array{$seq}: namely, an array whose members
                  are all single nodes.
A sequence of one or more value records, or more specifically, an instance of
                  record(value as item()*, *)+. In this case the result is the value of the
                  expression array:build($seq, fn { ?value }). Value records
                  can be conveniently constructed using the xsl:array-member
                  instruction, or using the function array:members applied
                  to an existing array.
                     [ERR XTTE4045] A type error is raised if the
                           result of evaluating the select expression or contained
                           sequence constructor of an xsl:array
                           instruction is not an instance of one of the following sequence types:
                           empty-sequence(), xs:anyAtomicType+, node()+,
                           or record(value as item()*, *)+. As
                           with other type errors, the error may be raised
                           statically if it can be detected statically. 
                  
The xsl:array-member instruction evaluates the expression in its 
               select attribute, or its contained sequence constructor, to
            produce a value $val, and then returns the result of the expression {"value": $val}.
            That is, it returns a value record that wraps the value $val, thereby constructing an item that is
            suitable for input to the xsl:array instruction.
Note:
Although xsl:array-member is designed primarily for use in conjunction
            with xsl:array, it is not an error to use it outside this context. In principle
            it could be used for purposes that have nothing to do with array construction.
The following example constructs the array [1, 2, 3, 4, 5]:
<xsl:array select="1 to 5"/>
The following example constructs an array of text nodes:
<xsl:array select=".//text()"/>
The following example constructs an array by tokenizing a string:
<xsl:array select="tokenize('The cat sat on the mat')"/>
The result is the array [ "The", "cat", "sat", "on", "the", "mat" ].
The following example constructs an array containing items computed using nested instructions:
<xsl:array> <xsl:for-each-group select="0 to 19" group-adjacent=". idiv 4"> <xsl:sequence select="string-join(current-group(), '-')"/> </xsl:for-each-group> </xsl:array>
The result is the array [ "0-1-2-3", "4-5-6-7", "8-9-10-11", "12-13-14-15", "16-17-18-19" ].
The following example constructs an array whose members are sequences:
<xsl:array> <xsl:for-each-group select="0 to 19" group-adjacent=". idiv 4"> <xsl:array-member select="current-group()"/> </xsl:for-each-group> </xsl:array>
The result is the array [ (0, 1, 2, 3), (4, 5, 6, 7), (8, 9, 10, 11), (12, 13, 14, 15), (16, 17, 18, 19) ].
The way this works is that each member sequence is captured in a value record by the
                  xsl:array-member instruction.
The xsl:array instruction can be nested. For example:
<xsl:array> <xsl:for-each select="1 to 4"> <xsl:array-member> <xsl:array select="(.*10 to .*10 + 2)"/> </xsl:array-member> </xsl:for-each> </xsl:array>
The result is [ [ 10, 11, 12], [ 20, 21, 22 ], [ 30, 31, 32 ], [ 40, 41, 42 ] ].
The same effect can be achieved by combining XSLT and XPath array construction:
<xsl:array> <xsl:for-each select="1 to 4"> <xsl:array-member select="array{.*10 to .*10 + 2}"/> </xsl:for-each> </xsl:array>
The xsl:array-member instruction does not need to be lexically
               contained within the xsl:array instruction. For example, given
               a book containing chapters which in turn contain sections, the following code
               produces a nested array representing the (crude) word counts of the sections
               within each chapter:
<xsl:mode name="word-counts" on-no-match="shallow-skip"> <xsl:template match="book"> <xsl:array> <xsl:apply-templates/> </xsl:array> </xsl:template> <xsl:template match="chapter"> <xsl:array-member> <xsl:array> <xsl:apply-templates/> </xsl:array> </xsl:array-member> </xsl:template> <xsl:template match="section"> <xsl:array-member select="tokenize(.) => count()"/> </xsl:template> </xsl:mode>
The result might be an array of the form [[842, 316], [450, 217], ...]
               indicating that the first section of the second chapter has a word count of 450.
The xsl:array instruction can be used in conjunction with
               the array:members function to construct an array from the members
               of an existing array. For example, the following code combines two arrays $A1
                  and $A2, and sorts the result:
<xsl:array> <xsl:perform-sort select="array:members($A1), array:members($A2)"> <xsl:sort select="count(?value)"/> </xsl:perform-sort> </xsl:array>
The following code inverts a regular nested array (such as [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ] ])
               so the result is organized by columns rather than rows ([ [ 1, 4, 7 ], [ 2, 5, 8 ], [ 3, 6, 9 ] ]):
<xsl:array> <xsl:for-each select="1 to array:size($input?1)"> <xsl:array-member> <xsl:array select="$input?*?(.)"/> </xsl:array-member> </xsl:for-each> </xsl:array>
Explanation: the outer xsl:array instruction uses xsl:array-member
               to construct one inner array for each item in the first child array of the input. This inner array
               is constructed using an xsl:array instruction that selects the Nth item 
               of each child array ($input?*) in the input, where the index N is 
               represented by the context item established by the xsl:for-each iteration.
The following code raises an type error because the result of the select 
               expression is not one of the permitted types:
<xsl:array select="1, 2, 3, [], 4"/>
Simple cases like this can be readily handled using XPath array constructors:
<xsl:select> [1, 2, 3, [], 4] </xsl:select>
The xsl:array instruction comes into its own primarily when array
               members are constructed using nested XSLT instructions.
The following code, while a little verbose, has the benefit of clarity:
<xsl:array> <xsl:array-member select="1"/> <xsl:array-member select="2"/> <xsl:array-member select="3"/> <xsl:array-member select="[]"/> <xsl:array-member select="4"/> </xsl:array>
Note:
Although the xsl:array instruction is highly versatile, following
               some simple conventions will to keep code easy to read and understand:
When creating a simple array of atomic items or nodes, use
                  xsl:array with a select attribute.
When creating anything more complex (for example, a nested array
                  structure, or an array whose contents are heterogeous), use 
                     xsl:array with a contained sequence constructor,
                  and use xsl:array-member to construct each individual member
                  of the array.
As with maps (see 12.1 Maps and StreamingSG) arrays cannot contain references to streamed nodes, because all expressions, instructions, and functions that construct arrays are defined to have operand usage .
Unlike maps, array constructors have no special rules allowing the members of the array to be constructed using multiple consuming subexpressions.
<!-- Category: instruction -->
<xsl:message
  select? = expression
  terminate? = { boolean }〔'no'〕
  error-code? = { eqname }〔'Q{http://www.w3.org/2005/xqt-errors}XTMM9000'〕 >
  <!-- Content: sequence-constructor -->
</xsl:message>
The xsl:message instruction sends a message in an implementation-defined way. The
                  xsl:message instruction causes the creation of a new document,
               which is typically serialized and output to an implementation-defined destination. The
               result of the xsl:message instruction is an empty sequence.
The content of the message may be specified by using either or both of the optional
                  select attribute and the sequence constructor that forms the content of the
                  xsl:message instruction.
If the xsl:message instruction contains a sequence constructor, then the sequence
               obtained by evaluating this sequence constructor is used to construct the content of
               the new document node, as described in 5.7.1 Constructing Complex Content.
If the xsl:message instruction has a select attribute,
               then the value of the attribute must be an XPath expression. The
               effect of the xsl:message instruction is then the same as if a
               single xsl:copy-of instruction with this select
               attribute were added to the start of the sequence constructor.
If the xsl:message instruction has no content and no
                  select attribute, then an empty message is produced.
The tree produced by the xsl:message instruction is not technically
               a final result tree. The tree has no
               URI and processors are not required to make the tree accessible to
               applications.
Note:
In many cases, the XML document produced using xsl:message will
                  consist of a document node owning a single text node. However, it may contain a
                  more complex structure.
Note:
An implementation might implement xsl:message by popping up an
                  alert box or by writing to a log file. Because the order of execution of
                  instructions is implementation-defined, the order in which such messages appear is
                  not predictable.
The terminate attribute is interpreted as an attribute value template.
If the effective value of the
                  terminate attribute is yes, then the processor
               must
               raise a  dynamic error after
               sending the message. This error may be caught in the same
                  way as any other dynamic error using xsl:catch. The
               default value is no. Note that because the order of evaluation of
               instructions is implementation-dependent, this gives no guarantee that any particular
               instruction will or will not be evaluated before processing terminates.
The optional error-code attribute 
               (also interpreted as an attribute value template)
               may be used to indicate the error code
               associated with the message. This may be used irrespective of the value of
                  terminate. The 
               effective value of the 
               error code attribute is expected to be an EQName. If no error code is specified, or if
               the effective value is not a valid EQName, the error code will have local part
                  XTMM9000 and namespace URI
                  http://www.w3.org/2005/xqt-errors. User-defined error codes
                  should be in a namespace other than
                  http://www.w3.org/2005/xqt-errors. When the value of
                  terminate is yes, the error code may be matched in an
                  xsl:catch element to catch the error and cause processing to
               continue normally.
Note:
XPath 4.0 allows an EQName to include
            both a prefix and a URI, for example error-code="{http://example.com/ns}my:error-code".
               [ERR XTMM9000] When a transformation is terminated by use of <xsl:message
                        terminate="yes"/>, the effect is the same as when a 
                        dynamic error occurs during the transformation. The default error code is XTMM9000; this may be
                        overridden using the error-code attribute of the
                           xsl:message instruction.
            
One convenient way to do localization is to put the localized information (message
                  text, etc.) in an XML document, which becomes an additional input file to the
                     stylesheet. For example, suppose
                  messages for a language 
                     L
                   are stored in an XML file resources/L.xml in the
                  form:
<messages> <message name="problem">A problem was detected.</message> <message name="error">An error was detected.</message> </messages>
Then a stylesheet could use the following approach to localize messages:
<xsl:param name="lang" select="'en'"/> <xsl:variable name="messages" select="document(concat('resources/', $lang, '.xml'))/messages"/> <xsl:template name="localized-message"> <xsl:param name="name"/> <xsl:message select="string($messages/message[@name=$name])"/> </xsl:template> <xsl:template name="problem"> <xsl:call-template name="localized-message"> <xsl:with-param name="name">problem</xsl:with-param> </xsl:call-template> </xsl:template>
Any dynamic error that occurs while
               evaluating the select expression or the contained sequence constructor, and any serialization error that occurs while
               processing the result, does not cause the transformation to
                  fail; at worst, it means that no message is output, or that the only message that
                  is output is one that relates to the error that occurred.
Note:
An example of such an error is the serialization error that occurs when processing
                  the instruction <xsl:message select="@code"/> (on the grounds
                  that free-standing attributes cannot be serialized). Making such errors
                  recoverable means that it is implementation-defined whether or not they are
                  raised to the user and whether they cause termination of the transformation. If
                  the processor chooses to recover from the error, the content of any resulting
                  message is implementation-dependent.
One possible recovery action is to include a description of the error in the generated message text.
The xsl:assert instruction is used to assert that the value of a
               particular expression is true; if the value of the expression is false, and
               assertions are enabled, then a dynamic error occurs.
<!-- Category: instruction -->
<xsl:assert
  test = expression
  select? = expression
  error-code? = { eqname }〔'Q{http://www.w3.org/2005/xqt-errors}XTMM9001'〕 >
  <!-- Content: sequence-constructor -->
</xsl:assert>
By default, assertions are disabled.
An implementation must provide an external mechanism to enable or disable assertion checking. This may work either statically or dynamically, and may be at the level of the stylesheet as a whole, or at the level of an individual package, or otherwise. The detail of such mechanisms is implementation-defined.
If assertion checking is enabled, the instruction is evaluated as follows:
The expression in the test attribute is evaluated. If the
                     effective boolean value of the result is true, the assertion
                     succeeds, and no further action is taken. If the effective boolean value is
                     false, or if a dynamic error occurs during evaluation of the expression, then
                     the assertion fails.
If the assertion fails, then the effect of the instruction is governed by the
                     rules for evaluation of an xsl:message instruction with the
                     same select attribute, error-code attribute, and
                     contained sequence constructor, and with the value
                        terminate="yes". However, the default error code if the
                        error-code attribute is omitted is XTMM9001 rather
                     than XTMM9000.
Note:
To the extent that the behavior of xsl:message is implementation-defined, this rule does not prevent an
                        implementation treating xsl:assert and
                           xsl:message differently.
Note:
If evaluation of the test expression
                        fails with a dynamic error, the effect is exactly the same as if the
                        evaluation returns false, including the fact that the
                        instruction fails with error code XTMM9001.
If an assertion fails, then the following sibling
                     instructions of the xsl:assert instruction are not
                     evaluated.
Note:
This means that xsl:assert can
                        be used (rather like xsl:if and
                        xsl:choose) to prevent subsequent instructions from
                        executing if a particular precondition is not true, which might be useful if
                        the subsequent instructions have side-effects (for example, by calling
                        extension functions) or if they can fail in uncatchable ways (for example,
                        non-terminating recursion). It is worth noting that there are limits to this
                        guarantee. It does not ensure, for example, that when an assertion within a
                        template fails, the following siblings of the
                           xsl:call-template instruction that invokes that template
                        will not be evaluated; nor does it ensure that if an assertion fails while
                        processing the first item of a sequence using xsl:for-each,
                        then subsequent items in the sequence will not be processed. 
               [ERR XTMM9001] When a transformation is terminated by use of xsl:assert, the
                     effect is the same as when a  dynamic error occurs during the
                     transformation. The default error code is XTMM9001; this may be
                     overridden using the error-code attribute of the
                        xsl:assert instruction.
            
As with any other dynamic error, an error caused by an assertion failing may be
               trapped using xsl:try: see 8.4 Try/Catch.
The result of the xsl:assert instruction is an empty sequence.
The following example shows a stylesheet function that checks that the value of
                  its supplied argument is in range. The check is performed only if the static parameter
                  $DEBUG is set to true.
<xsl:param name="DEBUG" as="xs:boolean" select="false()" static="yes" required="no"/> <xsl:function name="f:days-elapsed" as="xs:integer"> <xsl:param name="date" as="xs:date"/> <xsl:assert use-when="$DEBUG" test="$date lt current-date()"/> <xsl:sequence select="(current-date() - $since) div xs:dayTimeDuration('PT1D')"/> </xsl:function>
Note:
Implementations should avoid optimizing xsl:assert instructions
                  away. As a guideline, if the result of a sequence constructor is required by the
                  transformation, the implementation should ensure that all
                     xsl:assert instructions in that sequence constructor are
                  evaluated. Conversely, if the result of a sequence constructor is not required by
                  the transformation, its xsl:assert instructions should not be
                  evaluated.
This guidance is not intended to prevent optimizations such as lazy evaluation, where evaluation of a sequence constructor may finish early, as soon as enough information is available to evaluate the containing instruction.
An implementation may provide a user option allowing a processor to treat assertions as being true without explicit checking. This option must not be enabled by default. If such an option is in force, the effect of any assertion not being true is implementation-dependent.
Note:
For example, given the assertion <xsl:assert
                     test="count(//title)=1"/>, a processor might generate code for the
                  expression <xsl:value-of select="//title"/> that stops searching
                  for title elements after finding the first one. In the event that the
                  source document contains more than one title, execution of the
                  stylesheet may fail in arbitrary ways, or it may produce incorrect output.
               Functions that accept a lexical QName as an argument, such as key,
               function-available, element-available,
               type-available, system-property,
               accumulator-before, and accumulator-after,
               now have the option of supplying an xs:QName value instead.
               [This change was in the editor's draft accepted by the WG as its baseline when
               it started work.]
              [  1 January 2022]
XSLT allows two kinds of extension, extension instructions and extension functions.
[Definition: An extension instruction is an element within a sequence constructor that is in a namespace (not the XSLT namespace) designated as an extension namespace.]
[Definition: An extension function is a named function introduced to the static or dynamic context by mechanisms outside the scope of this specification.]
This specification does not define any mechanism for creating or binding implementations of extension instructions or extension functions, and it is not required that implementations support any such mechanism. Such mechanisms, if they exist, are implementation-defined. Therefore, an XSLT stylesheet that must be portable between XSLT implementations cannot rely on particular extensions being available. XSLT provides mechanisms that allow an XSLT stylesheet to determine whether the implementation makes particular extensions available, and to specify what happens if those extensions are not available. If an XSLT stylesheet is careful to make use of these mechanisms, it is possible for it to take advantage of extensions and still retain portability.
            [ERR XTSE0085] It is a static error to use a reserved namespace
                  in the name of any extension function or extension instruction,
                  other than a function or instruction defined in this specification or in a normatively 
                  referenced specification. It is a static error to use a prefix bound 
                  to a reserved namespace in the [xsl:]extension-element-prefixes attribute.
               
         
The set of functions that can be called from a FunctionCallXP within an XPath expression may include one or more extension functions. The expanded QName of an extension function always has a non-null namespace URI, which must not be the URI of a reserved namespace.
Note:
The definition of the term extension function is written to exclude
            user-written stylesheet functions,
            constructor functions for built-in and user-defined types, functions in the fn, math,
               map, and array namespaces,
            anonymous XPath inline functions, maps and arrays,
            and partial function applications (including partial applications of extension functions). It also excludes
            functions obtained by invoking XPath-defined functions such as
               load-xquery-module.
            The definition allows extension functions to be discovered at evaluation time (typically using
            function-lookup) rather than necessarily being known statically.
            
Technically, the definition of extension functions excludes anonymous functions obtained by calling or partially applying other extension functions. Since such functions are by their nature implementation-defined, they may however share some of the characteristics of extension functions.
Determines whether a particular function is or is not available for use. The function is
            particularly useful for calling within an [xsl:]use-when attribute (see
               3.13.3 Conditional Element Inclusion) to test whether a particular extension function is available.
| fn:function-available( | ||
| $name | as (xs:string | xs:QName), | |
| $arity | as xs:integer? | := () | 
| )  as xs:boolean | ||
This function is deterministicFO, context-dependentFO, and focus-independentFO. It depends on namespaces, and known function signatures.
A function is said to be available within an XPath expression if it is present in the statically known function definitionsXP for that expression (see 5.3.1 Initializing the Static Context). Function definitions in the static context are uniquely identified by the name of the function (a QName) in combination with its arity range.
The value of $name must be 
            either an xs:QName, or a
            string containing an EQName. A lexical QName is
            expanded into an expanded QName using the
            namespace declarations in scope for the expression. 
            If the value is an unprefixed lexical QName, then the standard function namespace is used in
            the expanded QName.
When the $arity argument is present and non-empty,
            the function-available function returns
            true if and only if there is an available function whose name matches the value of the
               $function-name argument and whose arity range 
            includes the value of the $arity argument. 
When the $arity argument is omitted or empty,
            the function-available function
            returns true if and only if there is at least one available function (with some arity)
            whose name matches the value of the $name argument. 
When the containing expression is evaluated with XPath 1.0 compatibility mode set to
               true, the function-available function returns false in
            respect of a function name and arity for which no implementation is available (other
            than the fallback error function that raises a dynamic error whenever it is called).
            This means that it is possible (as in XSLT 1.0) to use logic such as the following to
            test whether a function is available before calling it:
<summary xsl:version="1.0"> <xsl:choose> <xsl:when test="function-available('my:summary')"> <xsl:value-of select="my:summary()"/> </xsl:when> <xsl:otherwise> <xsl:text>Summary not available</xsl:text> </xsl:otherwise> </xsl:choose> </summary>
            [ERR XTDE1400] It is a  dynamic error if the 
                  $name argument
                      evaluates to a string that is not a valid
                  EQName, or if the value is a
                  lexical QName with a prefix for which no
                  namespace declaration is present in the static context. If the processor is able
                  to detect the error statically (for example, when the argument is supplied as a
                  string literal), then the processor may optionally raise this
                  as a static error.
         
The fact that a function with a given name is available gives no guarantee that any particular call on the function will be successful. For example, it is not possible to determine the types of the arguments expected.
The introduction of the function-lookup
            function in XPath 3.0 reduces the need for function-available,
            since function-lookup not only tests whether a function is
            available, but also returns a function item that enables it to be dynamically
            called.
If a function is present in the static context but with no useful
            functionality (for example, if the system has been configured for security reasons so
            that available-environment-variables returns no information),
            then function-available when applied to that function should return
            false.
It is not necessary that there be a direct equivalence between the
            results of function-available and
               function-lookup in all cases. For example, there may be
               extension functions whose side-effects
            are such that for security reasons, dynamic calls to the function are disallowed;
               function-lookup might then not provide access to the function.
            The main use-case for function-available, by contrast, is for use
            in [xsl:]use-when conditions to test whether static calls on the function
            are possible.
In XSLT 4.0, the argument can be supplied as a QName literal, for example
         function-available( #fn:matches ). Note that in this case the default function
         namespace is not used for unprefixed names.
| A stylesheet that is designed to use XSLT 2.0 facilities when running under an XSLT 2.0 or XSLT 3.0 processor, but to fall back to XSLT 1.0 capabilities when not, might be written using the code: <out xsl:version="2.0"> <xsl:choose> <xsl:when test="function-available('matches')"> <xsl:value-of select="matches(/doc/title, '[a-z]*')"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="string-length( translate(/doc/title, 'abcdefghijklmnopqrstuvwxyz', '')) = 0"/> </xsl:otherwise> </xsl:choose> </out> Here an XSLT 2.0 or XSLT 3.0 processor will
                  always take the  | |
| A stylesheet that is designed to use facilities in some future XSLT version when
                  they are available, but to fall back to XSLT 2.0 or XSLT
                     3.0 capabilities when not, might be written using code such as the
                  following. This hypothesizes the availability in some future version of a function
                      <xsl:value-of select="pad(/doc/title, 10)" use-when="function-available('pad', 2)"/> <xsl:value-of select="concat(/doc/title, string-join( for $i in 1 to 10 - string-length(/doc/title) return ' ', ''))" use-when="not(function-available('pad', 2))"/> In this case the two-argument version of  | 
If the function name used in a FunctionCallXP within an XPath expression identifies an extension function, then to evaluate the FunctionCallXP, the processor will first evaluate each of the arguments in the FunctionCallXP. If the processor has information about the datatypes expected by the extension function, then it may perform any necessary type conversions between the XPath datatypes and those defined by the implementation language. If multiple extension functions are available with the same name, the processor may decide which one to invoke based on the number of arguments, the types of the arguments, or any other criteria. The result returned by the implementation is returned as the result of the function call, again after any necessary conversions between the datatypes of the implementation language and those of XPath. The details of such type conversions are outside the scope of this specification.
[ERR XTDE1420] It is a dynamic error if the arguments supplied to a call on an extension function do not satisfy the rules defined for that particular extension function, or if the extension function raises an error, or if the result of the extension function cannot be converted to an XPath value.
Note:
Implementations may also provide mechanisms allowing extension functions to raise recoverable dynamic errors, or to execute within an environment that treats some or all of the errors listed above as recoverable.
[ERR XTDE1425] When the containing element is processed with XSLT 1.0 behavior, it is a dynamic error to evaluate an extension function call if no implementation of the extension function is available.
Note:
When XSLT 1.0 behavior is not enabled, this is a static error [ERR XPST0017] XP40.
Note:
There is no prohibition on calling extension functions that have side-effects (for example, an extension function that writes data to a file). However, the order of execution of XSLT instructions is not defined in this specification, so the effects of such functions are unpredictable.
Implementations are not required to perform full validation of values returned by extension functions. It is an error for an extension function to return a string containing characters that are not permitted in XML, but the consequences of this error are implementation-defined. The implementation may raise an error, may convert the string to a string containing valid characters only, or may treat the invalid characters as if they were permitted characters.
Note:
The ability to execute extension functions represents a potential security weakness, since untrusted stylesheets may invoke code that has privileged access to resources on the machine where the processor executes. Implementations may therefore provide mechanisms that restrict the use of extension functions by untrusted stylesheets.
All observations in this section regarding the errors that can occur when invoking extension functions apply equally when invoking extension instructions.
An implementation may allow an extension function to return an
                  object that does not have any natural representation in the XDM data model,
                  whether as an atomic item, a node, or a function
                     item. For example, an extension function sql:connect
                  might return an object that represents a connection to a relational database; the
                  resulting connection object might be passed as an argument to calls on other
                  extension functions such as sql:insert and
                  sql:select.
The way in which such objects are represented in the type system is implementation-defined. They might be
                  represented by a completely new datatype, or they might be mapped to existing
                  datatypes such as integer, string, or
                     anyURI.
Used to control how a stylesheet behaves if a particular schema type is or is not available in the static context.
| fn:type-available( | ||
| $name | as (xs:string | xs:QName) | |
| )  as xs:boolean | ||
This function is deterministicFO, context-dependentFO, and focus-independentFO. It depends on namespaces, and schema definitions.
A schema type (that is, a simple type or a complex type) is said to be available within
            an XPath expression if it is a type definition that is present in the 
            in-scope schema typesXP for that expression
            (see 5.3.1 Initializing the Static Context). This includes built-in types, types imported
            using xsl:import-schema, and extension types defined by the
            implementation.
The value of the $name argument must be 
            either an xs:QName, or a string
            containing an EQName. The EQName is expanded into 
            an expanded QName using the namespace declarations in
            scope for the expression. If the value is an
            unprefixed lexical QName, then the default namespace is used in the expanded QName.
The function returns true if and only if there is an available type whose name matches
            the value of the $name argument. 
[ERR XTDE1428] It is a dynamic error if the argument evaluates to a string that is not a valid EQName, or if the value is a lexical QName with a prefix for which no namespace declaration is present in the static context. If the processor is able to detect the error statically (for example, when the argument is supplied as a string literal), then the processor may optionally raise this as a static error.
The type-available function is of limited use within an
               [xsl:]use-when expression, because the static context for the expression
            does not include any user-defined types.
In XSLT 4.0, the argument can be supplied as a QName literal, for example
         type-available( #xs:dateTimeStamp ).
It is possible to invoke a named template using an extension instruction, specifically, an element whose name matches the name of the named template. [Issue 168 30 September 2022]
[Definition: The extension instruction mechanism allows namespaces to be designated as extension namespaces. When a namespace is designated as an extension namespace and an element with a name from that namespace occurs in a sequence constructor, then the element is treated as an instruction rather than as a literal result element.] The namespace determines the semantics of the instruction.
Note:
Since an element that is a child of an xsl:stylesheet element is
                  not occurring in a sequence
                        constructor
                  , user-defined data elements (see
                     3.7.4 User-defined Data Elements) are not extension elements as defined
                  here, and nothing in this section applies to them.
In XSLT 4.0 it is possible to use extension instructions to invoke named templates: see 10.1.3 Invoking Named Templates using Extension Instructions.
A namespace is designated as an extension namespace by using an
                     [xsl:]extension-element-prefixes attribute on an element in the
                  stylesheet (see 3.4 Standard Attributes). The attribute
                     must be in the XSLT namespace only if its parent element is
                     not in the XSLT namespace. The value of the attribute is a
                  whitespace-separated list of namespace prefixes. The namespace bound to each of
                  the prefixes is designated as an extension namespace.
The default namespace (as declared by xmlns) may be designated as an
                  extension namespace by including #default in the list of namespace
                  prefixes.
A reserved namespace cannot be designated as an extension namespace: see [see ERR XTSE0085].
                  [ERR XTSE1430] It is a static error if there is no
                        namespace bound to the prefix on the element bearing the
                           [xsl:]extension-element-prefixes attribute or, when
                           #default is specified, if there is no default namespace.
               
Note:
The prefix must be declared in a native namespace binding, not in a fixed namespace binding.
The designation of a namespace as an extension namespace is effective for the
                  element bearing the [xsl:]extension-element-prefixes attribute and
                  for all descendants of that element within the same stylesheet module.
Determines whether a particular instruction is or is not available for use. The function
            is particularly useful for calling within an [xsl:]use-when attribute (see
               3.13.3 Conditional Element Inclusion) to test whether a particular
            extension instruction is available.
| fn:element-available( | ||
| $name | as (xs:string | xs:QName) | |
| )  as xs:boolean | ||
This function is deterministicFO, context-dependentFO, and focus-independentFO. It depends on namespaces.
The value of the $name argument
               must be either an xs:QName,
               or a string containing an EQName. 
            If it is a lexical QName
            with a prefix, then it is expanded into an expanded
               QName using the namespace declarations in the static context of the
               expression. If there is a default namespace in
            scope, then it is used to expand an unprefixed lexical
               QName.
 If the resulting expanded
               QName is in the XSLT namespace, the function returns
            true if and only if the local name matches the name of an XSLT element that is defined
            in this specification and implemented by the XSLT processor.
If the expanded QName has a null namespace
            URI, the element-available function will return false. 
If the expanded QName is not in the XSLT namespace, the function returns true if and
            only if the processor has an external implementation 
            available of an extension instruction with the given
            expanded QName. This applies whether or not the namespace has been designated as an
               extension namespace.
The term external implementation excludes the use of a 
            named template as the instruction’s implementation. The function does not return
         true simply because the name matches the name of a named template.
If the processor does not have an implementation of a particular extension instruction available, and such an extension instruction is evaluated, then the processor must perform fallback for the element as specified in 24.2.3 Fallback. An implementation must not raise an error merely because the stylesheet contains an extension instruction for which no implementation is available.
[ERR XTDE1440] It is a dynamic error if the argument evaluates to a string that is not a valid EQName, or if the value is a lexical QName with a prefix for which no namespace declaration is present in the static context. If the processor is able to detect the error statically (for example, when the argument is supplied as a string literal), then the processor may optionally raise this as a static error.
For element names in the XSLT namespace:
This function can be useful to distinguish processors that implement XSLT 3.0 from processors that implement other (older or newer) versions of the specification, and to distinguish full implementations from incomplete implementations. (Incomplete implementations, of course, cannot be assumed to behave as described in this specification.)
In earlier versions of this specification,
                     element-available was defined to return true only for
                  elements classified as instructions. The distinction between instructions and
                  other elements, however, is sometimes rather technical, and in XSLT 3.0 the effect
                  of the function has therefore been aligned to do what its name might suggest.
If an instruction is recognized but offers no useful
                  functionality (for example, if the system has been configured for security reasons
                  so that xsl:evaluate always raises an error), then
                     element-available when applied to that instruction
                     should return false.
For element names in other namespaces:
The result of the element-available does not depend on
                  whether or not the namespace of the supplied instruction name has been designated
                  as an extension element namespace; it tests whether the instruction would be
                  available if the namespace were designated as such.
In XSLT 4.0, the argument can be supplied as a QName literal, for example
         element-available( #xsl:switch ). Note that in this case the default element
         namespace is not used for unprefixed names.
<!-- Category: instruction -->
<xsl:fallback>
  <!-- Content: sequence-constructor -->
</xsl:fallback>
The content of an xsl:fallback element is a sequence constructor, and when
                  performing fallback, the value returned by the xsl:fallback
                  element is the result of evaluating this sequence constructor.
When not performing fallback, evaluating an xsl:fallback element
                  returns an empty sequence: the content of the xsl:fallback
                  element is not evaluated.
There are two situations where a processor performs fallback: when an extension instruction that is not available is evaluated, and when an instruction in the XSLT namespace, that is not defined in XSLT 3.0, is evaluated within a region of the stylesheet for which forwards compatible behavior is enabled.
Note:
Fallback processing is not invoked in other situations, for example it is not
                     invoked when an XPath expression uses unrecognized syntax or contains a call to
                     an unknown function. To handle such situations dynamically, the stylesheet
                     should call functions such as system-property and
                        function-available to decide what capabilities are
                     available.
                  [ERR XTDE1450] When a processor performs fallback for
                        an extension instruction
                        that is not recognized, if the instruction element has one or more
                           xsl:fallback children, then the content of each of the
                           xsl:fallback children must be
                        evaluated; it is a  dynamic error if it has no
                           xsl:fallback children.
               
Note:
This is different from the situation with unrecognized XSLT elements. As explained in 3.10 Forwards Compatible Processing, an unrecognized XSLT element appearing within a sequence constructor is a static
                     error unless (a) forwards compatible behavior is enabled,
                     and (b) the instruction has an xsl:fallback child.
The output of a transformation includes a principal result and zero or more secondary results.
The way in which these results are delivered to an application is implementation-defined.
Serialization of results is described further in 26 Serialization
                  A new serialization parameter escape-solidus is provided to control
                  whether the character / is escaped as \/ by the
                  JSON serialization method.
                 [Issue 530 PR 534 9 June 2023]
                  The input to the serializer can be defined using the select attribute
                  of xsl:result-document as an alternative to using a sequence constructor.
                 [Issue 1534 ]
<!-- Category: instruction -->
<xsl:result-document
  format? = { eqname }
  href? = { uri }
  select? = expression
  validation? = "strict" | "lax" | "preserve" | "strip"
  type? = eqname
  method? = { "xml" | "html" | "xhtml" | "text" | "json" | "adaptive" | eqname }
  allow-duplicate-names? = { boolean }
  build-tree? = { boolean }
  byte-order-mark? = { boolean }
  cdata-section-elements? = { eqnames }
  doctype-public? = { string }
  doctype-system? = { string }
  encoding? = { string }
  escape-solidus? = { boolean }
  escape-uri-attributes? = { boolean }
  html-version? = { decimal }
  include-content-type? = { boolean }
  indent? = { boolean }
  item-separator? = { string }
  json-lines? = { boolean }
  json-node-output-method? = { "xml" | "html" | "xhtml" | "text" | eqname }
  media-type? = { string }
  normalization-form? = { "NFC" | "NFD" | "NFKC" | "NFKD" | "fully-normalized" | "none" | nmtoken }
  omit-xml-declaration? = { boolean }
  parameter-document? = { uri }
  standalone? = { boolean | "omit" }
  suppress-indentation? = { eqnames }
  undeclare-prefixes? = { boolean }
  use-character-maps? = eqnames
  output-version? = { nmtoken } >
  <!-- Content: sequence-constructor -->
</xsl:result-document>
The xsl:result-document instruction is
               used to create a secondary result.
The select attribute and the contained sequence constructor are
               mutually exclusive; if the select attribute is present then the
               sequence constructor must be empty, and if the sequence constructor is non-empty
               then the select attribute must be absent [see ERR XTSE3185]. 
               The value of the select attribute or the immediate result
               of the contained sequence constructor
               is referred to as the raw result.
As with the principal result of the transformation, a secondary result may be delivered to the calling application in three ways (see 2.3.6 Post-processing the Raw Result):
The raw result may be delivered as is.
The raw result may be used to construct a final result tree by invoking the process of sequence normalizationSE.
The raw result may be serialized to a sequence of octets (which may then, optionally, be saved to a persistent storage location).
The decision whether or not to serialize the raw result depends on the processor and on the way it is invoked. This is implementation-defined, and it is not controlled by anything in the stylesheet.
If the result is not serialized, then the decision whether to
               return the raw result or to construct a tree depends on the effective
               value of the build-tree attribute. If the effective value of
               the build-tree attribute is yes, then 
                  a final result tree is created
               by invoking the process of sequence normalizationSE. 
               Conversely, if the result is serialized, then 
                  the decision whether or not to construct a tree depends on the choice of 
                  serialization method, and the build-tree attribute is then ignored. 
                  For example, with method="xml" a tree is always constructed, whereas 
                  with method="json" a tree is never constructed.
               
The xsl:result-document instruction
               defines a URI that may be used to identify the secondary result.
               The instruction may optionally specify the output format to be used for serializing the result.
Technically, the result of evaluating the xsl:result-document
               instruction is an empty sequence. This means it does not contribute anything to the
               result of the sequence constructor it is part of.
The effective value of the
                  format attribute, if specified, must be an EQName. The value is
               expanded using the namespace declarations in scope for the
                  xsl:result-document element. The resulting expanded QName
               must match the expanded QName of a named output definition in the stylesheet. This identifies the
                  xsl:output declaration that will control the serialization of the
                  final result tree (see 26 Serialization), if the result tree is serialized. If the
                  format attribute is omitted, the unnamed output definition is used to control
               serialization of the result tree.
               [ERR XTDE1460] It is a  dynamic error if the effective value of the
                        format attribute  is not a valid
                        EQName, or if it does not match the
                        expanded QName of an output definition in the containing package. If the processor is able to detect
                     the error statically (for example, when the format attribute
                     contains no curly brackets), then the processor may
                     optionally raise this as a static
                        error.
            
Note:
The only way to select the unnamed output
                     definition is to omit the format attribute.
The parameter-document attribute allows serialization
               parameters to be supplied in an external document. The external document must contain
               an output:serialization-parameters element with the format described in
                  [Serialization 4.0] section 3.1 Setting Serialization Parameters by Means of a Parameter Document, and the parameters are
               interpreted as described in that specification.
If present, the effective value of the URI supplied in the
                  parameter-document attribute is dereferenced, after resolution
               against the base URI of the xsl:result-document element if it is a
               relative reference. 
               The parameter document should be read during run-time evaluation of the stylesheet. 
               If the location of the stylesheet at development time is
               different from the deployed location, any relative reference should be resolved
               against the deployed location. A serialization error occurs if the result of
               dereferencing the URI is ill-formed or invalid; but if no document can be found at
               the specified location, the attribute should be ignored.
A serialization parameter specified in the
                  parameter-document takes precedence over a value supplied directly as
               an attribute of xsl:result-document, which in turn takes precedence
               over a value supplied in the selected output definition, except that the values of
               the cdata-section-elements and suppress-indentation
               attributes are merged in the same way as when multiple xsl:output
               declarations are merged.
The attributes method, allow-duplicate-names, build-tree, byte-order-mark
               cdata-section-elements, doctype-public,
                  doctype-system, encoding,
               escape-solidus
                  escape-uri-attributes, html-version, indent, item-separator,
               json-lines,
               json-node-output-method,
                  media-type, normalization-form,
                  omit-xml-declaration, standalone, suppress-indentation,
               
               undeclare-prefixes, use-character-maps, and
                  output-version may be used to override attributes defined in the
               selected output definition.
With the exception of use-character-maps, these attributes are all
               defined as attribute value
                  templates, so their values may be set dynamically. For any of these
               attributes that is present on the xsl:result-document instruction,
               the effective value of the attribute
               overrides or supplements the corresponding value from the output definition. This
               works in the same way as when one xsl:output declaration overrides
               another. Some of the attributes have more specific
                  rules:
In the case of cdata-section-elements
                     and suppress-indentation, the
                     value of the serialization parameter is the union of the expanded names of the
                     elements named in this instruction and the elements named in the selected
                     output definition.
In the case of use-character-maps, the character maps referenced
                     in this instruction supplement and take precedence over those defined in the
                     selected output definition.
In the case of doctype-public and doctype-system,
                     setting the effective value of the attribute to a zero-length string has the
                     effect of overriding any value for these attributes obtained from the output
                     definition. The corresponding serialization parameter is not set (is
                     “absent”).
In the case of item-separator, setting the effective value of the
                     attribute to the special value "#absent" has the effect of
                     overriding any value for this attribute obtained from the output definition.
                     The corresponding serialization parameter is not set (is “absent”). It is not
                     possible to set the value of the serialization parameter to the literal
                     7-character string "#absent". 
In all other cases, the effective value of an attribute actually present on this instruction takes precedence over the value defined in the selected output definition.
In the case of the attributes method, json-node-output-method
                     cdata-section-elements, suppress-indentation, and
                     use-character-maps, the effective value of the attribute
                  contains an EQName or a space-separated list of
                     EQNames. Where lexical QNames are used in these attributes (whether prefixed
               or unprefixed), the namespace context is established in the same way as for the corresponding
               attributes of xsl:output: see 26.2 Serialization parameters.
The output-version attribute on the xsl:result-document
               instruction overrides the version attribute on
                  xsl:output (it has been renamed because version is
               available with a different meaning as a standard attribute: see 3.4 Standard Attributes). In all other cases, attributes correspond if they
               have the same name.
There are some serialization parameters that apply to some output methods but not to
               others. For example, the indent attribute has no effect on the
                  text output method. If a value is supplied for an attribute that is
               inapplicable to the output method, its value is not passed to the serializer. The
               processor may validate the value of such an attribute, but is not
                  required to do so.
The item-separator serialization parameter
               is used when the raw result is used to construct a result tree
               by applying sequence normalization, and it is also used when the result tree is
               serialized. For example, if the sequence constructor delivers a sequence of
               integers, and the text serialization method is used, then the result of serialization
               will be a string obtained by converting each integer to a string, and separating the
               strings using the defined item-separator.
The href attribute is optional. The default value is the zero-length
               string. The effective value of the
               attribute must be a URI
                  Reference, which may be absolute or relative. If it is relative, then it is resolved against the base output URI. There may be implementation-defined restrictions on
               the form of absolute URI that may be used, but the implementation is not
                  required to enforce any restrictions. Any valid relative URI
                  reference
               must be accepted. Note that the zero-length string is a valid
               relative URI reference.
If the implementation provides an API to access secondary results, then it
                  must allow a secondary result to be identified by means of the
               absolutized value of the href attribute. In addition, if a final result tree is constructed
               (that is, if the effective value of
                  build-tree is yes), then this value is used as the base
               URI of the document node at the root of the final
                  result tree. 
Note:
The base URI of the final result tree is not necessarily the same thing as the URI of its serialized representation on disk, if any. For example, a server (or browser client) might store final result trees only in memory, or in an internal disk cache. As long as the processor satisfies requests for those URIs, it is irrelevant where they are actually written on disk, if at all.
Note:
It will often be the case that one final result tree contains links to another final result tree produced during the same transformation, in the form of a relative URI reference. The mechanism of associating a URI with a final result tree has been chosen to allow the integrity of such links to be preserved when the trees are serialized.
As well as being potentially significant in any API that provides access to final result trees, the base URI of the new document node is relevant if the final result tree, rather than being serialized, is supplied as input to a further transformation.
The optional attributes type and validation may be used on
               the xsl:result-document instruction to validate the contents of
                  a final result tree, and to determine the type
                  annotation that elements and attributes within the final result tree will carry. The permitted
               values and their semantics are described in 25.4.2 Validating Document Nodes. Any such validation is applied to the
               document node produced as the result of sequence normalizationSE.
               If sequence normalization does not take place (typically because the raw result
               is delivered to the application directly, or because the selected serialization method
               does not involve sequence normalization) then the validation and
               type attributes are ignored.
Note:
Validation applies after inserting item separators as determined by the
            item-separator serialization parameter, and an inappropriate choice
            of item-separator may cause the result to become invalid.
A processor
               may allow a final result
                  tree to be serialized. Serialization is described in 26 Serialization. However, an implementation (for example, a processor running in an environment with no access to
               writable filestore) is not required to support the serialization
               of final result trees. An
               implementation that does not support the serialization of final result trees
                  may ignore the format attribute and the
               serialization attributes. Such an implementation must provide the
               application with some means of access to the (un-serialized) result tree, using its
               URI to identify it.
Implementations may provide additional mechanisms, outside the scope of this
               specification, for defining the way in which final result trees are processed. Such mechanisms
                  may make use of the XSLT-defined attributes on the
                  xsl:result-document and/or xsl:output elements,
               or they may use additional elements or attributes in an implementation-defined namespace.
 The following example takes an XHTML document as input, and breaks it up so that
                  the text following each <h1> element is included in a separate document. A
                  new document toc.html is constructed to act as an index:
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xhtml="http://www.w3.org/1999/xhtml"> <xsl:output name="toc-format" method="xhtml" indent="yes" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"/> <xsl:output name="section-format" method="xhtml" indent="no" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/> <xsl:template match="/"> <xsl:result-document href="toc.html" format="toc-format" validation="strict"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><title>Table of Contents</title></head> <body> <h1>Table of Contents</h1> <xsl:for-each select="/*/xhtml:body/(*[1] | xhtml:h1)"> <p> <a href="section{position()}.html"> <xsl:value-of select="."/> </a> </p> </xsl:for-each> </body> </html> </xsl:result-document> <xsl:for-each-group select="/*/xhtml:body/*" group-starting-with="xhtml:h1"> <xsl:result-document href="section{position()}.html" format="section-format" validation="strip"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><title><xsl:value-of select="."/></title></head> <body> <xsl:copy-of select="current-group()"/> </body> </html> </xsl:result-document> </xsl:for-each-group> </xsl:template> </xsl:stylesheet>
xsl:result-documentThere are restrictions on the use of the xsl:result-document
               instruction, designed to ensure that the results are fully interoperable even when
               processors optimize the sequence in which instructions are evaluated. Informally, the
               restriction is that the xsl:result-document instruction can only be
               used while writing a final result tree, not while writing to a temporary tree or a
               sequence. This restriction is defined formally as follows.
[Definition: Each instruction in the stylesheet is evaluated in one of two possible output states: final output state or temporary output state.]
[Definition: The first of the two output states is called final output state. This state applies when instructions are writing to a final result tree.]
[Definition: The second of the two output states is called temporary output state. This state applies when instructions are writing to a temporary tree or any other non-final destination.]
The instructions in the initial named template are evaluated in
                  final output state. An instruction
               is evaluated in the same output state as its
               calling instruction, except that xsl:variable,
                  xsl:param, xsl:with-param, 
               xsl:function, xsl:key, xsl:sort,
                  xsl:accumulator-rule, and
                     xsl:merge-key
                always evaluate the instructions in their
               contained sequence constructor in
                  temporary output state.
               [ERR XTDE1480] It is a  dynamic error to evaluate the
                        xsl:result-document instruction in temporary output state.
            
[ERR XTDE1490] It is a dynamic error for a transformation to generate two or more final result trees with the same URI.
Note:
Note, this means that it is an error to evaluate more than one
                     xsl:result-document instruction that omits the
                     href attribute, or to evaluate any
                     xsl:result-document instruction that omits the
                     href attribute if an initial final result tree is created implicitly.
In addition, an implementation may raise this error if it is able to detect that two or more final result trees are generated with different URIs that refer to the same physical resource.
[ERR XTDE1500] It is a dynamic error for a stylesheet to write to an external resource and read from the same resource during a single transformation, if the same absolute URI is used to access the resource in both cases.
In addition, an implementation may raise this error if it is able to detect that a transformation writes to a resource and reads from the same resource using different URIs that refer to the same physical resource. Note that if the error is not detected, it is implementation-dependent whether the document that is read from the resource reflects its state before or after the result tree is written.
[Definition: The current output URI is the URI associated with the principal result or secondary result that is currently being written.]
Returns the value of the current output URI.
| fn:current-output-uri() as xs:anyURI? | 
This function is deterministicFO, focus-independentFO, and context-dependentFO.
On initial invocation of a stylesheet component, the current output uri is set to the base output URI.
During execution of an xsl:result-document instruction with an href
         attribute, the current output URI changes to the absolute URI obtained by resolving the effective value
         of the href attribute against the base output URI.
The current output URI is cleared (set to absent) while evaluating stylesheet functions, dynamic function calls, evaluation of global variables, stylesheet parameters, and patterns. If the function is called when the current output URI is absent, the function returns the empty sequence.
The current output URI may also be absent in the event that a stylesheet is invoked without supplying a base output URI.
The current output URI is not cleared when evaluating a local variable, even though xsl:result-document
            cannot be used while evaluating a local variable. 
            The reason for this is to allow the value of current-output-uri to be set as the value of a 
            tunnel parameter, so that the original
            base output URI is accessible even when writing nested result documents.
The rules concerning the compatibility of schemas imported by different packages have been clarified. It is now explicitly stated that instructions that trigger validation must use the imported schema of the package in which validation is invoked. This differs from the current practice of some XSLT 3.0 processors, which may use (for example) a schema formed from the union of the imported schemas in all packages. [Issue 451 PR 635 24 October 2023]
                  The rules concerning the interpretation of xsi:schemaLocation
                  and xsi:noNamespaceSchemaLocation attributes have been tightened up.
                 [Issue 729 PR 1254 8 June 2024]
                  The rules concerning the interpretation of xsi:schemaLocation
                  and xsi:noNamespaceSchemaLocation attributes have been tightened up.
                 [Issue 729 PR 1254 8 June 2024]
In order to reduce duplication between the XSLT and XQuery specifications, description of the validation process has been moved to the Functions and Operators specification. [Issue 2029 PR 2030 28 May 2025]
It is possible to control the type annotation applied to
               individual element and attribute nodes as they are constructed. This is done using
               the type and validation attributes of the
                  xsl:element, xsl:attribute,
                  xsl:copy, xsl:copy-of,
                  xsl:document, and xsl:result-document
               instructions, or the xsl:type and xsl:validation attributes
               of a literal result element.
                  The same attributes are used on
                     xsl:source-document and xsl:merge-source to control
                  validation of input documents.
The [xsl:]type attribute is used to request validation of an element or
               attribute against a specific simple or complex type defined in a schema. The
                  [xsl:]validation attribute is used to request validation against the
               global element or attribute declaration whose name matches the name of the element or
               attribute being validated.
The [xsl:]type and [xsl:]validation attributes are mutually
               exclusive. Both are optional, but if one is present then the other
                  must be omitted. If both attributes are omitted, the effect is
               the same as specifying the validation attribute with the value specified
               in the [xsl:]default-validation attribute of
                  the innermost containing element having such an attribute; if this is not
               specified, the effect is the same as specifying validation="strip".
The [xsl:]default-validation attribute defines the
               default value of the validation attribute of all
                  xsl:element, xsl:attribute,
                  xsl:copy, xsl:copy-of,
                  xsl:document, and xsl:result-document
               instructions, and of the xsl:validation attribute of all
               literal result elements,
               appearing as descendants of the element 
                  on which the attribute appears, unless there is an inner element that defines 
                  a different default.  This default  does not extend to included or imported stylesheet
               modules or used packages. If the attribute is omitted, the default is
                  strip. The permitted values are preserve and
                  strip.
               The default-validation attribute on the outermost element of the principal
               stylesheet module of the top-level package also determines the validation 
               applied to the implicit final result tree created in the absence of an 
               xsl:result-document instruction. 
            
The [xsl:]default-validation attribute has no
               effect on the xsl:source-document and xsl:merge-source
               elements, which perform no validation unless explicitly requested.
               [ERR XTSE1505] It is a static error if both the
                        [xsl:]type and [xsl:]validation attributes are
                     present on the xsl:element, xsl:attribute,
                        xsl:copy, xsl:copy-of,
                        xsl:document, xsl:result-document, xsl:source-document, or
                           xsl:merge-source elements, or on a literal result element.
            
Validation always uses the in-scope schema definitionsXP
               from the static context of the instruction that invokes validation.
               The relevant schema may be selected using the [xsl:]schema-role attribute of the instruction itself,
               or of a containing element. See also 3.15.1 Multiple Schemas.
Note:
A stylesheet might take as its primary input a document conforming to schema X,
                  and produce as its primary output a document conforming to schema Y.
                  To be sure that the output is indeed valid against schema Y, the safest
                  course of action is to evaluate an xsl:result-document instruction using
                  an [xsl:]schema-role attribute that selects schema Y and nothing else. 
                  Otherwise, if the validation occurs within a module that imports both X
                  and Y, the outcome of validation might differ because of the
                  differences between the two schemas.
The detailed rules for validation vary depending on the kind of node being validated. The rules for element and attribute nodes are given in 25.4.1 Validating Constructed Elements and Attributes, while those for document nodes are given in 25.4.2 Validating Document Nodes.
[xsl:]validation AttributeThe [xsl:]validation attribute defines the validation action to be
                     taken. It determines not only the type
                        annotation of the node that is constructed by the relevant
                     instruction itself, but also the type annotations of all element and attribute
                     nodes that have the constructed node as an ancestor. Conceptually, the
                     validation requested for a child element or attribute node is applied before
                     the validation requested for its parent element. For example, if the
                     instruction that constructs a child element specifies
                        validation="strict", this will cause the child element to be
                     checked against an element declaration, but if the instruction that constructs
                     its parent element specifies validation="strip", then the final
                     effect will be that the child node is annotated as xs:untyped.
In the paragraphs below, the term contained nodes means the elements and attributes that have the newly constructed node as an ancestor.
The value strip indicates that the new node and each of the
                           contained nodes will have the type
                              annotation
                           xs:untyped if it is an element, or
                              xs:untypedAtomic if it is an attribute. Any previous type
                           annotation present on a contained element or attribute node (for example,
                           a type annotation that is present on an element copied from a source
                           document) is also replaced by xs:untyped or
                              xs:untypedAtomic as appropriate. The typed value of the
                           node is changed to be the same as its string value, as an instance of
                              xs:untypedAtomic. In the case of elements the
                              nilled property is set to false. The values
                           of the is-id and is-idrefs properties are
                           unchanged. Schema validation is not invoked.
The value preserve indicates that nodes that are copied will
                           retain their type
                           annotations, but nodes whose content is newly constructed will
                           be annotated as xs:anyType in the case of elements, or
                              xs:untypedAtomic in the case of attributes. Schema
                           validation is not invoked. The detailed effect depends on the
                           instruction:
In the case of xsl:element and literal result
                                 elements, the new element has a type annotation of xs:anyType, and the
                                 type annotations of contained nodes are retained unchanged.
The nilled,
                                    is-id and is-idrefs properties on the
                                 new element are set to false.
In the case of xsl:attribute, the effect is
                                 exactly the same as specifying validation="strip":
                                 that is, the new attribute will have the type annotation
                                    xs:untypedAtomic.
The is-id and
                                    is-idrefs properties on the new attribute are set
                                 to false.
In the case of xsl:copy-of, all the nodes that are
                                 copied will retain their type annotations unchanged. The values of their
                                       nilled, is-id and
                                       is-idrefs properties are also
                                 unchanged.
In the case of xsl:copy, the effect depends on the
                                 kind of node being copied.
Where the node being copied is an attribute, the copied
                                       attribute will retain its type annotation
                                       and the values of its
                                             is-id and is-idrefs
                                          properties.
Where the node being copied is an element, the copied element
                                       will have a type
                                          annotation of xs:anyType (because
                                       this instruction does not copy the content of the element, it
                                       would be wrong to assume that the type is unchanged); but any
                                       contained nodes will have their type annotations retained in
                                       the same way as with xsl:element. The values of the
                                             nilled, is-id, and
                                             is-idrefs properties are handled in the
                                          same way as xsl:element.
                                    
The value strict indicates that 
                           schema validation is carried out according to the process described
                           in [Functions and Operators 4.0] section 17.2.4 XSD validation. The operand node
                           is the node being constructed, and the effective schema is
                           the in-scope schema definitions in the static context of the containing
                           instruction. The effect of constructing a node with
                           [xsl:]validation="strict" is equivalent to constructing
                           an untyped node N, and then validating it using the
                           expression;
fn:xsd-validator({'validation-mode':'strict'})(N) ->
    if (?is-valid) then ?typed-node else error()More details on the error conditions appear below.
The value lax indicates that 
                           lax validation is carried out according to the process described
                           in [Functions and Operators 4.0] section 17.2.4 XSD validation. The operand node
                           is the node being constructed, and the effective schema is
                           the in-scope schema definitions in the static context of the containing
                           instruction. The effect of constructing a node with
                           [xsl:]validation="lax" is equivalent to constructing
                           an untyped node N, and then validating it using the
                           expression;
fn:xsd-validator({'validation-mode':'lax'})(N) ->
    if (?is-valid) then ?typed-node else error()More details on the error conditions appear below.
Note:
The effect of these rules is that when validation succeeds, the validate
         expression returns a copy of the operand node, augmented with type annotations and expanded
         default values. When validation fails (more accurately, when the outcome of validity assessment
         is that the operand node is found to be invalid), the expression raises a dynamic error.
Note:
If an element that is being validated has an xsi:type
                        attribute, then the value of the xsi:type attribute will
                        be taken into account when performing the validation. However, the
                        presence of an xsi:type attribute will not of itself
                        cause an element to be validated: if validation against a named type
                        is required, as distinct from validation against a top-level element
                        declaration, then it must be requested using the XSLT
                           [xsl:]type attribute on the instruction that invokes
                        the validation, as described in section 25.4.1.2 Validation using the [xsl:]type Attribute
                     
For reasons of backwards compatibility, the error conditions raised by XSLT validation have their own error codes:
                        [ERR XTTE1510] If the validation attribute of an
                                 xsl:element, xsl:attribute,
                                 xsl:copy, xsl:copy-of, or
                                 xsl:result-document instruction, or the
                                 xsl:validation attribute of a literal result element, has
                              the effective value strict, and schema validity assessment
                              concludes that the validity of the element or attribute is invalid or
                              unknown, a type error occurs. As
                              with other type errors, the error may be raised
                              statically if it can be detected statically. 
                     
                        [ERR XTTE1512] If the validation attribute of an
                                 xsl:element, xsl:attribute,
                                 xsl:copy, xsl:copy-of, or
                                 xsl:result-document instruction, or the
                                 xsl:validation attribute of a literal result element, has
                              the effective value strict, and there is no matching
                              top-level declaration in the schema, then a type error occurs. As with other type errors, the error
                                 may be raised statically if it can be detected
                              statically. 
                     
                        [ERR XTTE1515] If the validation attribute of an
                                 xsl:element, xsl:attribute,
                                 xsl:copy, xsl:copy-of, or
                                 xsl:result-document instruction, or the
                                 xsl:validation attribute of a literal result element, has
                              the effective value lax, and schema validity assessment
                              concludes that the element or attribute is invalid, a type error occurs. As with other type
                              errors, the error may be raised statically if it can
                              be detected statically. 
                     
                     [ERR XTTE1545] A type error occurs if a
                              type or validation attribute is defined
                           (explicitly or implicitly) for an instruction that constructs a new
                           attribute node, if the effect of this is to cause the attribute value to
                           be validated against a type that is derived from, or constructed by list
                           or union from, the primitive types xs:QName or
                              xs:NOTATION.
                  
[xsl:]type AttributeThe [xsl:]type attribute takes as its value an 
                     EQNameXP.
                     If it is a lexical QName with no prefix, it is
                     expanded using the default namespace for types.
                     This must be the name of a type definition included in the
                        in-scope schema
                        components for the stylesheet. 
If the [xsl:]type attribute is present, then the newly constructed
                     element or attribute is validated against the type definition identified by
                     this attribute. Schema validation is carried out according to the process described
                           in [Functions and Operators 4.0] section 17.2.4 XSD validation. The operand node
                           is the node being constructed, and the effective schema is
                           the in-scope schema definitions in the static context of the containing
                           instruction. The effect is equivalent to constructing
                           an untyped node N, and then validating it using the
                           expression, where T is the QName obtained by expanding the
                  value of the [xsl:]type attribute:
fn:xsd-validator(N, {'type':T})(N) ->
    if (?is-valid) then ?typed-node else error()For reasons of backwards compatibility, the error conditions raised by XSLT validation have their own error codes:
If the element or attribute is not considered valid, as defined above, the transformation fails [see ERR XTTE1540].
If an element node is validated against the type
                        xs:untyped, the effect is the same as specifying
                        validation="strip": that is, the elements and attributes in the
                     subtree rooted at the target element are copied with a type annotation of
                        xs:untyped or xs:untypedAtomic respectively.
If an element or attribute node is validated against the type
                        xs:untypedAtomic, the effect is the same as specifying
                        [xsl:]type="xs:string" except that when validation succeeds,
                     the returned element or attribute has a type annotation of
                        xs:untypedAtomic. Validation fails in the case of an element
                     with element children.
                     [ERR XTSE1520] It is a static error if the
                           value of the type attribute of an
                              xsl:element, xsl:attribute,
                              xsl:copy, xsl:copy-of,
                              xsl:document, xsl:result-document,
                           xsl:source-document, or 
                              xsl:merge-source
                           instruction, or the xsl:type attribute of a literal result
                           element, is not a valid QName, or if it uses a prefix that
                           is not defined in the applicable static namespaces
                           of the containing instruction, or if the QName is
                           not the name of a type definition included in the in-scope schema
                              components for the package.
                        
                  
                     [ERR XTSE1530] It is a static error if the
                           value of the type attribute of an
                              xsl:attribute instruction refers to a complex type
                           definition.
                     
                     [ERR XTTE1535] It is a type error if the value of
                           the type attribute of an xsl:copy or
                              xsl:copy-of instruction refers to a complex type
                           definition and one or more of the items being copied is an attribute
                           node.
                     [ERR XTTE1540] It is a type error if an
                              [xsl:]type attribute is defined for a constructed element
                           or attribute, and the outcome of schema validity assessment against that
                           type is that the validity property of that element or
                           attribute information item is other than valid.
                  
Note:
Like other type errors, this error may be raised statically if it can be
                        detected statically. For example, the instruction <xsl:attribute
                           name="dob" type="xs:date">1999-02-29</xsl:attribute> may
                        result in a static error being raised. If the error is not raised
                        statically, it will be raised when the instruction is evaluated.
xsi:schemaLocation and xsi:noNamespaceSchemaLocation attributesIt is implementation-defined whether the validity assessment
                  process takes account of any xsi:schemaLocation or xsi:noNamespaceSchemaLocation
                  attributes in the tree being validated. If it does so, then it should
                  adhere to the following rules:
Any schema loaded using these attributes must be compatibleDM with the schema in the static context from which validation is invoked.
Any schema loaded using these attributes must not override or redefine any schema components in the static context.
Any schema components loaded using this mechanism must be used for this validity assessment only, and must not affect the outcome of any subsequent validity assessments of other documents.
Note:
A processor may choose to cache such schema components but the existence of such a cache should only affect performance, not the validation outcome.
A consequence of validating a document using schema components that are not in the static context is that nodes may be annotated with types that are not in the static context. But the rules for schema compatibilityDM mean that this is not a problem.
It is possible to apply validation to a document node. This happens when a new
                  document node is constructed by one of the XSLT elements xsl:source-document, xsl:merge-source, xsl:document,
                     xsl:result-document, xsl:copy, or
                     xsl:copy-of, and this element has a type
                  attribute, or a validation attribute with the value
                     strict or lax.
Document-level validation is not applied to the document node that is created
                  implicitly when a variable-binding element has no select attribute
                  and no as attribute (see 9.4 Creating Implicit Document Nodes). This is
                  equivalent to using validation="preserve" on
                     xsl:document: nodes within such trees retain their type annotation. Similarly, validation is
                  not applied to document nodes created using xsl:message
                  or xsl:assert. 
The values validation="preserve" and validation="strip"
                  do not request validation. In the first case, all element and attribute nodes
                  within the tree rooted at the new document node retain their type annotations. In the second case,
                  elements within the tree have their type annotation set to
                  xs:untyped, while attributes have their type annotation set to
                     xs:untypedAtomic.
When validation is requested for a document node (that is, when
                     validation is set to strict or lax, or
                  when a type attribute is present), the following processing takes
                  place:
[ERR XTTE1550] A type error occurs unless the children of the document node comprise exactly one element node, no text nodes, and zero or more comment and processing instruction nodes, in any order.
The single element node child is validated, using the supplied values of the
                           validation and type attributes, as described in
                           25.4.1 Validating Constructed Elements and Attributes.
Note:
The type attribute on xsl:source-document,
                              xsl:document and
                           xsl:result-document, and on xsl:copy
                           and xsl:copy-of when copying a document node, thus
                           refers to the required type of the element node that is the only element
                           child of the document node. It does not refer to the type of the document
                           node itself.
The validation rule “Validation Root Valid (ID/IDREF)” is applied to the single element node child of the document node. This means that validation will fail if there are non-unique ID values or dangling IDREF values in the document tree.
Identity constraints, as defined in section 3.11 of [XML Schema Part 1], are checked. (This refers to constraints defined
                        using xs:unique, xs:key, and
                           xs:keyref.)
There is no check that the tree contains unparsed entities whose names match
                        the values of nodes of type xs:ENTITY or
                           xs:ENTITIES. This is because there is no facility in XSLT
                           3.0 to create unparsed entities in a
                           result tree. It is possible to
                        add unparsed entity declarations to the result document by referencing a
                        suitable DOCTYPE during serialization.
All other children of the document node (comments and processing instructions) are copied unchanged.
[ERR XTTE1555] It is a type error if, when validating a document node, document-level constraints (such as ID/IDREF constraints) are not satisfied.
xml:id attributesThis section provides a non-normative summary of the effect of validation on
               attributes named xml:id. The normative rules can be inferred from rules
               given elsewhere in this section.
When an attribute named xml:id is encountered
                  in the course of validation:
A validation error occurs if it the attribute is not lexically valid against type xs:ID.
The typed value of the attribute is whitespace-normalized.
The attribute is labeled with type annotation xs:ID.
The attribute acquires the is-id property.
The previous rule applies whether validation is strict, lax, or by type; 
                     validation will never fail (or be skipped) on the grounds
                  that no global attribute declaration named xsl:id is available.
Checking xml:id attributes for uniqueness happens if and only if
                  validation is applied at the level of a document node.
A processor
            may output a final result
               tree as a sequence of octets, although it is not
               required to be able to do so (see 27 Conformance).
            This process is described as serialization.
            Stylesheet authors can use xsl:output declarations to specify how they
            wish result trees to be serialized. If a processor serializes a final result tree, it
               must do so as specified by these declarations.
The rules governing the output of the serializer are defined in [Serialization 4.0]. 
            The serialization is controlled using a number
            of serialization parameters. The values of these serialization parameters may be set
            within the stylesheet, using the
               xsl:output, xsl:result-document, and
               xsl:character-map declarations.
xsl:output declaration<!-- Category: declaration -->
<xsl:output
  name? = eqname
  method? = "xml" | "html" | "xhtml" | "text" | "json" | "adaptive" | eqname
  allow-duplicate-names? = boolean
  build-tree? = boolean
  byte-order-mark? = boolean
  cdata-section-elements? = eqnames
  doctype-public? = string
  doctype-system? = string
  encoding? = string
  escape-solidus? = boolean
  escape-uri-attributes? = boolean
  html-version? = decimal
  include-content-type? = boolean
  indent? = boolean
  item-separator? = string
  json-lines? = boolean
  json-node-output-method? = "xml" | "html" | "xhtml" | "text" | eqname
  media-type? = string
  normalization-form? = "NFC" | "NFD" | "NFKC" | "NFKD" | "fully-normalized" | "none" | nmtoken
  omit-xml-declaration? = boolean
  parameter-document? = uri
  standalone? = boolean | "omit"
  suppress-indentation? = eqnames
  undeclare-prefixes? = boolean
  use-character-maps? = eqnames
  version? = nmtoken />
The xsl:output declaration is optional; if used, it
               must always appear as a top-level element within a stylesheet module.
A stylesheet may contain multiple
               xsl:output declarations and may include or import stylesheet modules
            that also contain xsl:output declarations. The name of an
               xsl:output declaration is the value of its name
            attribute, if any.
            [Definition: All the
                  xsl:output declarations within a
                     package that share the same name
               are grouped into a named output definition; those that have no name are
               grouped into a single unnamed output definition.]
         
An output definition is scoped to a package. If this is a library package the output definition applies only
            to xsl:result-document instructions within the same package. If it is
            the top-level package, the output
            definition applies to xsl:result-document instructions within the same
            package and also to the implicit final result
               tree.
A stylesheet always includes an unnamed output
               definition; in the absence of an unnamed xsl:output
            declaration, the unnamed output definition is equivalent to the one that would be used
            if the stylesheet contained an xsl:output declaration having no
            attributes.
A named output definition is used when its
            name matches the format attribute used in an
               xsl:result-document element. The unnamed output definition is used
            when an xsl:result-document element omits the format
            attribute. It is also used when serializing the principal result.
            .
All the xsl:output elements making up an output definition are effectively merged. For
            those attributes whose values are namespace-sensitive, the merging is done after
               lexical QNames have been converted into
               expanded QNames. For the
               cdata-section-elements
            and suppress-indentation attributes, the
            output definition uses the union of the values from all the constituent
            xsl:output declarations. For the use-character-maps
            attribute, the output definition uses the concatenation of the sequences of expanded QNames values from all the constituent
               xsl:output declarations, taking them in order of increasing import precedence, or where several have the
            same import precedence, in declaration
               order. For other attributes, the output
               definition uses the value of that attribute from the
               xsl:output declaration with the highest import precedence.
The parameter-document attribute allows serialization
            parameters to be supplied in an external document. The external document must contain an
               output:serialization-parameters element with the format described in
               [Serialization 4.0] section 3.1 Setting Serialization Parameters by Means of a Parameter Document, and the parameters are
            interpreted as described in that specification.
If present, the URI supplied in the parameter-document
            attribute is dereferenced, after resolution against the base URI of the
               xsl:output element if it is a relative reference. 
            The parameter document should be read during static analysis of the stylesheet. 
            A serialization error occurs
            if the result of dereferencing the URI is ill-formed or invalid; but if no document can
            be found at the specified location, the attribute should be ignored.
A serialization parameter specified in the
               parameter-document takes precedence over a value supplied directly in
            the output declaration, except that the values of the
               cdata-section-elements and suppress-indentation attributes
            are merged in the same way as when multiple xsl:output declarations are
            merged.
            [ERR XTSE1560] It is a static error if two
                     xsl:output declarations within an output definition specify explicit values
                  for the same attribute (other than cdata-section-elements, suppress-indentation, and
                     use-character-maps), with the values of the attributes being not
                  equal, unless there is another xsl:output declaration within the
                  same output definition that has
                  higher import precedence and that specifies an explicit value for the same
                  attribute. 
         
            If the result is not serialized, then the decision whether to return the raw result 
            or to construct a tree depends on the effective value of the build-tree attribute. 
            If the effective value of the build-tree attribute is yes, then a 
            final result tree is created by invoking the process of sequence normalization. Conversely, 
            if the result is serialized, then the decision whether or not to construct a tree depends 
            on the choice of serialization method, and the build-tree attribute is 
            then ignored. For example, with method="xml" a tree is always constructed, 
            whereas with method="json" a tree is never constructed.
         
Note:
The default for build-tree may differ for user-defined serialization
               methods or for serialization methods introduced in future versions of this
               specification.
                  The default value for the indent parameter is now defined to be
                  no for all output methods other than html and xhtml.
                 [Issue 1548  9 November 2024]
If none of the xsl:output declarations within an output definition specifies a value for a
            particular attribute, then the corresponding serialization parameter takes a default
            value. The default value depends on the chosen output method.
There are some serialization parameters that apply to some output methods but not to
            others. For example, the indent attribute has no effect on the
               text output method. If a value is supplied for an attribute that is
            inapplicable to the output method, its value is not passed to the serializer. The
            processor may validate the value of such an attribute, but is not
               required to do so.
An implementation may allow the attributes of the
               xsl:output declaration to be overridden, or the default values to be
            changed, using the API that controls the transformation.
The location to which final result trees
            are serialized (whether in filestore or elsewhere) is implementation-defined (which in practice
               may mean that it is controlled using an implementation-defined
            API). However, these locations must satisfy the constraint that when
            two final result trees are both created
            (implicitly or explicitly) using relative URI references in the href attribute of the
               xsl:result-document instruction, then these relative URI references may be used to construct references from one
            tree to the other, and such references must remain valid when both
            result trees are serialized. 
The method attribute on the xsl:output element identifies
            the overall method that is to be used for outputting the final result tree.
            [ERR XTSE1570] The value 
                  must (if present) be a valid EQName. 
                  If it is a lexical
                     QName in no namespace, then it identifies a method specified in
                     [Serialization 4.0] and must be one
                  of xml, html, xhtml, 
                  text, json, or adaptive. If it is a lexical QName with a
            prefix, then the lexical QName is expanded
            into an expanded QName as described in
               5.1.1 Qualified Names. An expanded QName
            with a non-absent namespace identifies an implementation-defined output method 
            whose the behavior is not specified by this document.
The default for the method attribute depends on the contents of the tree
            being serialized, and is chosen as follows. If the document node of the final result tree has an element child, and any
            text nodes preceding the first element child of the document node of the result tree
            contain only whitespace characters, then:
If the expanded QName of this first
                  element child has local part html (in lower case), and namespace URI
                     http://www.w3.org/1999/xhtml, then the default output method is
                  normally xhtml. However, if the
                        effective version of the outermost element of the
                        principal stylesheet
                        module in the top-level package has the value
                        1.0, and if the result tree is generated implicitly
                  (rather than by an explicit xsl:result-document instruction),
                  then the default output method in this situation is xml.
If the expanded QName of this first
                  element child has local part html (in any combination of upper and
                  lower case) and a null namespace URI, then the default output method is
                     html.
In all other cases, the default output method is xml.
The default output method is used if the selected output definition does not include a method attribute.
The other attributes on xsl:output provide parameters for the output
            method. The following attributes are allowed:
 The value of the encoding attribute provides the value of the
                     encoding parameter to the serialization method. The default value
                  is implementation-defined, but in the case of the
                     xml and xhtml methods it must be
                  either UTF-8 or UTF-16. 
The byte-order-mark attribute defines whether a byte order mark is
                  written at the start of the file. If the value yes is specified, a
                  byte order mark is written; if no is specified, no byte order mark is
                  written. The default value depends on the encoding used. If the encoding is
                     UTF-16, the default is yes; for UTF-8 it
                  is implementation-defined, and for all other encodings it is
                     no. The value of the byte order mark indicates whether high order
                  bytes are written before or after low order bytes; the actual byte order used is
                     implementation-dependent,
                  unless it is defined by the selected encoding. 
 The cdata-section-elements attribute is a whitespace-separated list
                  of QNames. The default value is an empty list. After expansion of these names
                  using the applicable static namespaces for the xsl:output
                  declaration in which they appear, this list of names provides the value of the
                     cdata-section-elements parameter to the serialization method. In
                  the case of an unprefixed name, the default namespace (that is, the namespace
                  declared using xmlns="uri") is used. 
Note:
This differs from the rule for most other QNames used in a stylesheet. The
                     reason is that these names refer to elements in the result document, and
                     therefore follow the same convention as the name of a literal result element or
                     the name attribute of xsl:element.
 The value of the doctype-system attribute provides the value of the
                     doctype-system parameter to the serialization method. If the attribute is absent or has a zero-length
                     string as its value, then the serialization parameter is not set (is
                     “absent”).
               
 The value of the doctype-public attribute provides the value of the
                     doctype-public parameter to the serialization method. If the attribute is absent or has a zero-length
                     string as its value, then the serialization parameter is not set (is
                     “absent”).
               
The value of doctype-public must conform to the rules for a PubidLiteralXML (see [XML 1.0]).
 The value of the escape-solidus attribute provides the value
                  of the escape-solidus parameter to the serialization method.
                  The default value is yes. 
 The value of the escape-uri-attributes attribute provides the value
                  of the escape-uri-attributes parameter to the serialization method.
                  The default value is yes. 
 The value of the html-version attribute provides
                  the value of the html-version parameter to the serialization method.
                  The set of permitted values, and the default value, are implementation-defined. 
                  A serialization error will be raised if
                  the requested version is not supported by the implementation. 
Note:
This serialization parameter is new in version 3.0. If it is
                     absent, the html output method uses the value of the version
                     parameter in its place. For XHTML serialization, the html-version
                     parameter indicates the version of XHTML to be used, while the
                        version parameter indicates the version of XML.
 The value of the include-content-type attribute provides the value
                  of the include-content-type parameter to the serialization method.
                  The default value is yes. 
 The value of the indent attribute provides the value of the
                     indent parameter to the serialization method. The default value is
                     yes in the case of the html and xhtml
                  output methods, no in the case of all other output methods.
               
 The value of the item-separator attribute provides the value of the
                     item-separator parameter to the serialization method. The value of
                  the serialization parameter can be any string (including a zero-length string), or
                  absent. To set the parameter to absent, the item-separator attribute
                  can either be omitted, or set to the special value
                     item-separator="#absent"; it is not possible to set the value of
                  the serialization parameter to the literal 7-character string "#absent". 
Note:
The item-separator attribute has no
                     effect if the sequence being serialized contains only one item. 
The value of the json-lines attribute determines whether the JSON
                  output method should output multiple JSON values in json-lines format (one
                  value per line). The default value is no.
               
The value of the json-node-output-method attribute determines how
                  any nodes appearing within maps or arrays are serialized by the json
                  output method. The default value is xml. The syntax and semantics of
                  the value follow the same rules as the method attribute.
               
 The value of the media-type attribute provides the value of the
                     media-type parameter to the serialization method. The default
                  value is text/xml in the case of the xml output method,
                     text/html in the case of the html and
                     xhtml output methods, and text/plain in the case of
                  the text output method. The default for 
                     the json output method is application/json; the default 
                     for the adaptive output method is implementation-defined.
                  
 The value of the normalization-form attribute provides the value of
                  the normalization-form parameter to the serialization method. A value
                  that is an NMTOKEN other than one of those enumerated for the
                     normalization-form attribute specifies an implementation-defined
                  normalization form; the behavior in this case is not specified by this document.
                  The default value is none. 
 The value of the omit-xml-declaration attribute provides the value
                  of the omit-xml-declaration parameter to the serialization method.
                  The default value is no. 
 The value of the standalone attribute provides the value of the
                     standalone parameter to the serialization method. The default
                  value is omit; this means that no standalone attribute
                  is to be included in the XML declaration. 
 The suppress-indentation attribute is a whitespace-separated list of
                  QNames. The default value is an empty list. After expansion of these names using
                  the applicable static namespaces 
                  for the xsl:output
                  declaration in which they appear, this list of names provides the value of the
                     suppress-indentation parameter to the serialization method. In the
                  case of an unprefixed name, the default namespace (that is, the namespace declared
                  using xmlns="uri") is used. 
Note:
This differs from the rule for most other QNames used in a stylesheet. The
                     reason is that these names refer to elements in the result document, and
                     therefore follow the same convention as the name of a literal result element or
                     the name attribute of xsl:element.
 The value of the undeclare-prefixes attribute provides the value of the
                  undeclare-prefixes parameter to the serialization method. The default
                  value is no.
The use-character-maps attribute provides a list of named character
                  maps that are used in conjunction with this output definition. The way this attribute is used is described in
                     26.3 Character Maps. The default value is an empty list.
 The value of the version attribute provides the value of the
                     version parameter to the serialization method. The set of
                  permitted values, and the default value, are implementation-defined. 
                  A serialization error will be raised if
                  the requested version is not supported by the implementation.
                  
               
If the processor performs serialization, then it must raise any serialization errors that occur. These have the same effect as dynamic errors: that is, the processor must raise the error and must not finish as if the transformation had been successful.
[Definition: A character map allows a specific character appearing in a text or attribute node in the final result tree to be substituted by a specified string of characters during serialization.] The effect of character maps is defined in [Serialization 4.0].
The character map that is supplied as a parameter to the serializer is determined
               from the xsl:character-map elements referenced from the
                  xsl:output declaration for the selected output definition.
The xsl:character-map element is a declaration that may appear as a
               child of the xsl:stylesheet element.
<!-- Category: declaration -->
<xsl:character-map
  name = eqname
  use-character-maps? = eqnames >
  <!-- Content: (xsl:output-character*) -->
</xsl:character-map>
The xsl:character-map declaration declares a character map with a
               name and a set of character mappings. The character mappings are specified by means
               of xsl:output-character elements contained either directly within
               the xsl:character-map element, or in further character maps
               referenced in the use-character-maps attribute.
The required
               name attribute provides a name for the character map. When a character
               map is used by an output definition or
               another character map, the character map with the highest import precedence is used.
The name of a character map is local to the package in which its declaration appears; it may be referenced only from within the same package.
[ERR XTSE1580] It is a static error if a package contains two or more character maps with the same name and the same import precedence, unless it also contains another character map with the same name and higher import precedence.
The optional use-character-maps attribute lists the names of further
               character maps that are included into this character map.
               [ERR XTSE1590] It is a static error if a name in the
                        use-character-maps attribute of the xsl:output
                     or xsl:character-map elements does not match the
                        name attribute of any xsl:character-map in the
                        containing package.
            
               [ERR XTSE1600] It is a static error if a character
                     map references itself, directly or indirectly, via a name in the
                        use-character-maps attribute.
            
It is not an error if the same character map is referenced more than once, directly or indirectly.
For every xsl:character-map declaration in a package,
            other than one that is overridden by another of higher import precedence,
            the static context of the package includes a named character map derived from the 
            xsl:character-map declaration. The name of the named character map is the
            QName formed by expanding the value of the name attribute, and the content is
            a map of type map{xs:string, xs:string} that maps characters (represented as 
            xs:string instances of length 1) to their replacement strings.
Recursive expansion of character maps using use-character-maps
               attributes may produce several mappings for the same character. In this situation,
               the last character mapping takes precedence. To establish the ordering, the following
               rules are used:
Within a single xsl:character-map element, the characters
                     defined in character maps referenced in the use-character-maps
                     attribute are considered before the characters defined in the child
                        xsl:output-character elements.
The character maps referenced in a single use-character-maps
                     attribute are considered in the order in which they are listed in that
                     attribute. The expansion is depth-first: each referenced character map is fully
                     expanded before the next one is considered.
Two xsl:output-character elements appearing as children of the
                     same xsl:character-map element are considered in document
                     order.
The xsl:output-character element is defined as follows:
<xsl:output-character
  character = char
  string = string />
The character map that is passed as a parameter to the serializer contains a mapping
               for the character specified in the character attribute to the string
               specified in the string attribute. 
Character mapping is not applied to characters for which output escaping has been disabled as described in 26.5 Disabling Output Escaping.
If a character is mapped, then it is not subjected to XML or HTML escaping.
Character maps can be useful when producing serialized output in a format that resembles, but is not strictly conformant to, HTML or XML. For example, when the output is a JSP page, there might be a need to generate the output:
<jsp:setProperty name="user" property="id" value='<%= "id" + idValue %>'/>
Although this output is not well-formed XML or HTML, it is valid in Java Server
                  Pages. This can be achieved by allocating three Unicode characters (which are not
                  needed for any other purpose) to represent the strings <%,
                     %>, and ", for example:
<xsl:character-map name="jsp"> <xsl:output-character character="«" string="<%"/> <xsl:output-character character="»" string="%>"/> <xsl:output-character character="§" string='"'/> </xsl:character-map>
When this character map is referenced in the xsl:output
                  declaration, the required output can be produced by writing the following in the
                  stylesheet:
<jsp:setProperty name="user" property="id" value='«= §id§ + idValue »'/>
This works on the assumption that when an apostrophe or quotation mark is generated as part of an attribute value by the use of character maps, the serializer will (where possible) use the other choice of delimiter around the attribute value.
The following example illustrates a composite character map constructed in a modular fashion:
<xsl:output name="htmlDoc" use-character-maps="htmlDoc"/> <xsl:character-map name="htmlDoc" use-character-maps="html-chars doc-entities windows-format"/> <xsl:character-map name="html-chars" use-character-maps="latin1 ..."/> <xsl:character-map name="latin1"> <xsl:output-character character=" " string="&nbsp;"/> <xsl:output-character character="¡" string="&iexcl;"/> ... </xsl:character-map> <xsl:character-map name="doc-entities"> <xsl:output-character character="" string="&t-and-c;"/> <xsl:output-character character="" string="&chap1;"/> <xsl:output-character character="" string="&chap2;"/> ... </xsl:character-map> <xsl:character-map name="windows-format"> <!-- newlines as CRLF --> <xsl:output-character character="
" string="
"/> <!-- tabs as three spaces --> <xsl:output-character character="	" string=" "/> <!-- images for special characters --> <xsl:output-character character="" string="<img src='special1.gif' />"/> <xsl:output-character character="" string="<img src='special2.gif' />"/> ... </xsl:character-map>
Note:
When character maps are used, there is no guarantee that the serialized output will be well-formed XML (or HTML). Furthermore, the fact that the result tree was validated against a schema gives no guarantee that the serialized output will still be valid against the same schema. Conversely, it is possible to use character maps to produce schema-valid output from a result tree that would fail validation.
Note:
The value of the string attribute must be a literal string; this
               means it must consist entirely of characters that are valid in XML 1.0 or XML 1.1,
               depending on the version of XML used for the containing stylesheet module. The string
               can however be expressed as a shadow attribute (see 3.13.4 Shadow Attributes), 
                  and this allows
               it to be defined using a static expression. For example, the 
               character U+2398 (NEXT PAGE, ⎘)  might be mapped to the control character U+000C (FORM FEED) 
               by writing <xsl:output-character char="⎘" _string="{char(0x0C)}"/>.
               This depends on the processor allowing the form-feed character to appear in strings:
               the data model allows this, but processors are not required
               to support it: see [XDM 4.0] section 4.1.5 XML and XSD Versions.
character-map function
                  The contents of a character map declared using xsl:character-map are now
                  available dynamically via a new character-map function.
                 [Issue 1500 ]
The contents of a character map declared using xsl:character-map are 
                  available dynamically via the character-map function.
Delivers the content of a character map declared using xsl:character-map.
| fn:character-map( | ||
| $name | as xs:QName | |
| )  as map(xs:string, xs:string)? | ||
This function is deterministicFO, context-dependentFO, and focus-independentFO. It depends on character maps.
The static context for a stylesheet package includes a set of named character maps. This function delivers the content of a character map if a character map with the given name is present in the static context of the containing package, or an empty sequence otherwise.
The returned character map is in a format suitable for use within the $options
         parameter of the serialize function.
| Consider the following character map declaration: | |
| <xsl:character-map name="jsp"> <xsl:output-character character="«" string="<%"/> <xsl:output-character character="»" string="%>"/> <xsl:output-character character="§" string='"'/> </xsl:character-map> | |
| Then the result of the function call  | |
| 
{
  "«": "<%",
  "»": "%>",
  "§": '"'
} | |
| This might be used in a call to the function  | |
| 
serialize($input, {
  'method': 'xml',
  'use-character-maps': character-map( #jsp )
}) | 
Normally, when using the XML, HTML, or XHTML output method, the serializer will
               escape special characters such as & and < when
               outputting text nodes. This ensures that the output is well-formed. However, it is
               sometimes convenient to be able to produce output that is almost, but not quite
               well-formed XML; for example, the output may include ill-formed sections which are
               intended to be transformed into well-formed XML by a subsequent non-XML-aware
               process. For this reason, XSLT defines a mechanism for disabling output escaping.
This feature is deprecated.
This is an optional feature: it is not required that an XSLT processor that implements the serialization option should offer the ability to disable output escaping, and there is no conformance level that requires this feature.
This feature requires the serializer (described in [Serialization 4.0]) 
               to be extended as follows. Conceptually, the final result tree provides an additional
               boolean property disable-escaping associated with every character in a
               text node. When this property is set, the normal action of the serializer to escape
               special characters such as & and < is
               suppressed.
An xsl:value-of or xsl:text element may have a
                  disable-output-escaping attribute; the allowed values are
                  yes or no. The default is no; if the value
               is yes, then every character in the text node generated by evaluating
               the xsl:value-of or xsl:text element
                  should have the disable-escaping property set.
For example,
<xsl:text disable-output-escaping="yes"><</xsl:text>
should generate the single character <.
If output escaping is disabled for an xsl:value-of or
                  xsl:text instruction evaluated when temporary output state is in effect, the
               request to disable output escaping is ignored.
Similarly, if an xsl:value-of or
                  xsl:text instruction specifies that output escaping is to be
               disabled when writing to a final result
                  tree that is not being serialized, the request to disable output
               escaping is ignored.
Note:
Furthermore, a request to disable output escaping has no effect when the newly constructed text node is used to form the value of an attribute, comment, processing instruction, or namespace node. This is because the rules for constructing such nodes (see 5.7.2 Constructing Simple Content) cause the text node to be atomized, and the process of atomizing a text node takes no account of the disable-escaping property.
If output escaping is disabled for text within an element that would normally be
               output using a CDATA section, because the element is listed in the
                  cdata-section-elements, then the relevant text will not be included
               in a CDATA section. In effect, CDATA is treated as an alternative escaping mechanism,
               which is disabled by the disable-output-escaping option.
For example, if <xsl:output cdata-section-elements="title"/> is
                  specified, then the following instructions:
<title> <xsl:text disable-output-escaping="yes">This is not <hr/> good coding practice</xsl:text> </title>
should generate the output:
<title><![CDATA[This is not ]]><hr/><![CDATA[ good coding practice]]></title>
The disable-output-escaping attribute may be used with the
                  html output method as well as with the xml output
               method. The text output method ignores the
                  disable-output-escaping attribute, since this method does not perform
               any output escaping.
A processor will only be able to disable output escaping if it controls how the final result tree is output. This might not always be the case. For example, the result tree might be used as a source tree for another XSLT transformation instead of being output. It is implementation-defined whether (and under what circumstances) disabling output escaping is supported. If disabling output escaping is not supported, any request to disable output escaping is ignored.
If output escaping is disabled for a character that is not representable in the encoding that the processor is using for output, the request to disable output escaping is ignored in respect of that character.
Since disabling output escaping might not work with all implementations and can result in XML that is not well-formed, it should be used only when there is no alternative.
Note:
When disable-output-escaping is used, there is no guarantee that the serialized output will be well-formed XML (or HTML). Furthermore, the fact that the result tree was validated against a schema gives no guarantee that the serialized output will still be valid against the same schema. Conversely, it is possible to use disable-output-escaping to produce schema-valid output from a result tree that would fail validation.
Note:
The facility to define character maps for use during serialization, as described in 26.3 Character Maps, has been produced as an alternative mechanism that can be used in many situations where disabling of output escaping was previously necessary, without the same difficulties.
Changes in 4.0 ⬆
A processor that claims conformance with this specification must satisfy the conformance requirements for a basic XSLT processor and for each of the optional features with which it claims conformance.
The following optional features are defined:
The schema-awareness feature, defined in 27.2 Schema-Awareness Conformance Feature
The serialization feature, defined in 27.3 Serialization Feature
The backwards compatibility feature, defined in 27.4 Compatibility Features
The streaming feature, defined in 27.5 Streaming Feature.
The dynamic evaluation feature, defined in 27.6 Dynamic Evaluation Feature.
A processor that does not claim conformance with an optional feature must satisfy the requirements for processors that do not implement that feature.
An XSLT processor takes as its inputs a stylesheet and zero or more XDM trees conforming to the data model defined in [XDM 4.0]. It is not required that the processor supports any particular method of constructing XDM trees, but conformance can only be tested if it provides a mechanism that enables XDM trees representing the stylesheet and primary source document to be constructed and supplied as input to the processor.
The output of the XSLT processor consists of zero or more final result trees. It is not required that the processor supports any particular method of accessing a final result tree, but if it does not support the serialization feature, conformance can only be tested if it provides some alternative mechanism that enables access to the results of the transformation.
Certain facilities in this specification are described as producing implementation-defined results. A claim that asserts conformance with this specification must be accompanied by documentation stating the effect of each implementation-defined feature. For convenience, a non-normative checklist of implementation-defined features is provided at F Checklist of Implementation-Defined Features.
A conforming processor must raise any static error occurring in the stylesheet, or in any XPath expression, except where specified otherwise either for individual error conditions or under the general provisions for forwards compatible behavior (see 3.10 Forwards Compatible Processing). After raising such an error, the processor may continue for the purpose of raising additional errors, but must terminate abnormally without performing any transformation.
When a dynamic error occurs during the course
            of a transformation, and is not caught using
                  xsl:catch,
             the processor
               must raise it and must eventually terminate
            abnormally. 
Some errors, notably type errors, may be treated as static errors or dynamic errors at the discretion of the processor.
A conforming processor may impose limits on the processing resources consumed by the processing of a stylesheet.
A requirement is mandatory unless the specification includes wording (such as the use of the words should or may) that clearly indicates that it is optional.
Some of the optional features are defined in such a way that if the feature is not provided, the data model is constrained to exclude certain kinds of item. For example:
A processor that does not provide the schema-awareness feature restricts the data model so that it does not contain atomic items of types other than the built-in types, or nodes with non-trivial type annotations.
[ERR XTDE1665] A dynamic error may be raised if the input to the processor includes an item that requires availability of an optional feature that the processor does not provide.
Note:
It is not necessarily possible to trigger this error. A processor that does not provide an optional feature might not define or recognize any representation of the items that are disallowed. The error code is provided for use in cases where a processor is able to interoperate with other software that does not have the same constraints — for example, where a package compiled with a non-schema-aware processor is able to invoke functions in a package that was compiled with a schema-aware processor. Even in that case, processors have the option of filtering or converting the input so that it meets the relevant constraints: for example, a non-schema-aware processor when presented with a schema-validated document in the form of a PSVI might simply ignore the properties it does not understand.
The dynamic error is optional: for example a processor might report no error if the offending item is not actually used.
The phrase input to the processor is deliberately wide: it includes (inter alia)
               the global context item, items present in the initial match selection, items passed as stylesheet parameters, items returned by functions such as 
                document, doc, and
               collection, items returned by extension functions and extension instructions,
            items supplied in function or template parameters or results across package boundaries, and nodes
            reachable from any of the above by axis navigation.
[Definition: A basic XSLT processor is an XSLT processor that implements all the mandatory requirements of this specification with the exception of constructs explicitly associated with an optional feature.] These constructs are listed below.
A conformant processor must either be a conformant schema-aware XSLT processor or a conformant non-schema-aware processor.
               [Definition: A
                     schema-aware XSLT processor is an XSLT processor that implements
                  the mandatory requirements of this specification connected with the
                     xsl:import-schema declaration, the
                     [xsl:]validation and [xsl:]type attributes, and the
                  ability to handle input documents whose nodes have type annotations other than
                     xs:untyped and xs:untypedAtomic. The mandatory
                  requirements of this specification are taken to include the mandatory requirements
                  of XPath 4.0, as described in [XPath 4.0]. A requirement is mandatory unless the specification includes
                  wording (such as the use of the words should or
                     may) that clearly indicates that it is optional.]
            
[Definition: A non-schema-aware processor is a processor that does not claim conformance with the schema-aware conformance feature. Such a processor must handle constructs associated with schema-aware processing as described in this section.]
               [ERR XTSE1650] A non-schema-aware
                        processor
                     must raise a static
                        error if a package includes an
                        xsl:import-schema declaration.
            
Note:
A processor that rejects an xsl:import-schema declaration will
                  also reject any reference to a user-defined type defined in a schema, or to a
                  user-defined element or attribute declaration; it will not, however, reject
                  references to the built-in types listed in 3.14 Built-in Types.
A non-schema-aware
                  processor is not able to validate input documents, and is not able to
               handle input documents containing type annotations other than xs:untyped
               or xs:untypedAtomic. Therefore, such a processor must
               treat any [xsl:]validation attribute
                  with a value of preserve or lax, or a
                     [xsl:]default-validation attribute with a value of
                     preserve as if the value were strip.
Note:
The values lax and preserve indicate that the validation
                  to be applied depends on the calling application, so it is appropriate for the
                  request to be treated differently by different kinds of processor. By contrast,
                  requesting strict validation, either through the
                     [xsl:]validation attribute or the type attribute,
                  indicates that the stylesheet is expecting to deal with typed data, and therefore
                  cannot be processed without performing the validation.
               [ERR XTSE1660] A non-schema-aware
                        processor
                     must raise a static
                        error if a package includes an
                        [xsl:]type attribute; or an [xsl:]validation or
                        [xsl:]default-validation attribute with a value other than
                        strip, preserve, or
                           lax; or an
                           xsl:mode element whose typed attribute is
                        equal to yes or strict; or an as
                              attribute whose value is a 
                              SequenceType that can only match
                        nodes with a type annotation other than xs:untyped or
                           xs:untypedAtomic (for example, as="element(*,
                           xs:integer)").
            
A non-schema-aware processor constrains the data model as follows, and raises a dynamic error ([see ERR XTDE1665]) if the constraints are not satisfied:
Atomic items must belong to one of the atomic types listed in 3.14 Built-in Types (except as noted below).
An atomic item may also belong to an implementation-defined type that has been added to the context for use with extension functions or extension instructions.
The set of constructor functions available are limited to those that construct values of the above atomic types.
The static context, which defines the full set of type names recognized by an
                     XSLT processor and also by the XPath processor, includes these atomic types,
                     plus xs:anyType, xs:anySimpleType,
                        xs:untyped, and xs:anyAtomicType.
Element nodes must be annotated with the type annotation
                     xs:untyped, and attribute nodes with the type annotation
                        xs:untypedAtomic.
               [Definition: A processor that
                  claims conformance with the serialization feature
                  must support the conversion of a final result tree to a sequence of octets
                  following the rules defined in 26 Serialization.] It
                  must respect all the attributes of the
                  xsl:output and xsl:character-map declarations,
               and must provide all four output methods, xml,
                  xhtml, html, and text. Where the
               specification uses words such as must and
                  required, then it must serialize the result
               tree in precisely the way described; in other cases it may use an
               alternative, equivalent representation.
A processor may claim conformance with the serialization feature whether or not it
               supports the setting disable-output-escaping="yes" on
                  xsl:text, or xsl:value-of. 
A processor that does not claim conformance with the serialization feature
                  must not raise an error merely because the stylesheet contains xsl:output or
                  xsl:character-map declarations, or serialization attributes on
               the xsl:result-document instruction. Such a processor
                  may check that these declarations and attributes have valid
               values, but is not required to do so. Apart from optional
               validation, these declarations should be ignored.
Note:
A processor that does not claim conformance with the serialization feature
               may offer alternative serialization capabilities, and these
               may make use of the serialization parameters defined on
               xsl:output and/or xsl:result-document.
                  Such a processor may implement 
                     selected parts of the serialization capabilities defined in this specification. 
                     For example, it may implement selected output methods, or selected serialization 
                     properties. It may implement sequence normalization using the item-separator 
                     property even if it has no other serialization capabilities. 
If the processor claims conformance with 
               the serialization feature then it must fully implement the 
               serialize function defined in [Functions and Operators 4.0],
               and must not
               raise error [ERR FODC0010] FO40 as the result of such a call.
If the processor does not claim conformance with
               the serialization feature, then it may raise 
               error [ERR FODC0010] FO40 in respect of some or
               all calls on the serialize function; it must not
               return a result from a call on this function unless the result is conformant with
               the specification, given the parameters actually supplied. 
            
A processor that claims conformance with the Serialization Feature must satisfy the mandatory requirements of [Serialization 4.0]. It must provide a mode of operation which conforms to the 3.0 version of that specification. It may also provide a mode of operation which conforms to a later version of that specification; in such cases the detail of how XSLT 3.0 interacts with new features introduced by such a version (for example, support for new serialization properties) is implementation-defined.
[Definition: A processor that claims conformance with the XSLT 1.0 compatibility feature must support the processing of stylesheet instructions and XPath expressions with XSLT 1.0 behavior, as defined in 3.9 Backwards Compatible Processing.]
Note that a processor that does not claim conformance with the XSLT 1.0 compatibility feature must raise a dynamic error if an instruction is evaluated whose effective version is 1.0. [see ERR XTDE0160].
Note:
The reason this is a dynamic error rather than a static error is to allow
                  stylesheets to contain conditional logic, following different paths depending on
                  whether the XSLT processor implements XSLT 1.0, 2.0, or
                     3.0. The selection of which path to use can be controlled by using the
                     system-property function to test the
                     xsl:version system property.
A processor that claims conformance with the XSLT 1.0 compatibility feature must permit the use of the namespace axis in XPath expressions when backwards compatible behavior is enabled. In all other circumstances, support for the namespace axis is optional.
Note:
There are no incompatibilities between 3.0 and 2.0 that would
                  justify a 2.0-compatibility mode. When a 3.0 processor encounters a stylesheet
                  that specifies version="2.0", evaluation therefore proceeds exactly
                  as if it specified version="3.0". However, a software product may
                  invoke an XSLT 2.0 processor in preference to an XSLT 3.0 processor when the
                  stylesheet specifies version="2.0", in which case any use of new 3.0
                  constructs will be rejected.
There are cases where setting [xsl:]version to a value less than
               4.0 affects the behavior of an XSLT 4.0 stylesheet: see J Incompatibilities with XSLT 3.0.
               However these are sufficiently minor that they do not warrant the introduction of a
               separate conformance option.
               [Definition: A processor that claims
                  conformance with the streaming feature
                  must use streamed processing in cases where (a) streaming is
                  requested (for example by using the attribute streamable="yes" on
                  xsl:mode, or on
                  the xsl:source-document instruction) and
                  (b) the constructs in question are 
                  according to this specification.]
            
A processor that does not claim conformance with the streaming feature is not required to use streamed processing and is not required to determine whether any construct is guaranteed streamable. Such a processor must, however, implement the semantics of all constructs in the language provided that enough memory is available to perform the processing without streaming.
A processor that conforms with the feature must
               return the value "yes" in response to the function call
                  system-property('xsl:supports-streaming'); a processor that does not
               conform with the feature must return the value
               "no".
Note:
The term streamed processing as used here means the ability to process arbitrarily large input documents without ever-increasing memory requirements.
               [Definition: A
                  processor that claims conformance with the dynamic evaluation feature
                  must evaluate the xsl:evaluate function as
                  described in this specification.]
            
A processor that does not claim conformance with the dynamic evaluation feature
                  must raise a dynamic error if an xsl:evaluate
               instruction is evaluated. It must not raise a static error merely
               because of the presence of an xsl:evaluate instruction in the
               stylesheet, unless a processor that conforms with the feature would raise the same
               static error.
A processor that conforms with the feature must return the value
                  "yes" in response to the function call
                  system-property('xsl:supports-dynamic-evaluation'); a processor that
               does not conform with the feature must return the value
                  "no".
A processor that conforms with the feature must return the value
                  true in response to the function call
                  element-available('xsl:evaluate'); a processor that does not conform
               with the feature must return the value false.
Note:
A processor may allow dynamic evaluation to be enabled and disabled by means of
                  configuration settings, perhaps for security reasons. In consequence, it may be
                  impossible to tell during static analysis of the stylesheet whether or not the
                  feature will be available during execution. A stylesheet author wanting to check
                  whether the feature is available should therefore make the test using a run-time
                  call on system-property, rather than relying on tests in an
                     [xsl:]use-when attribute.
A sequence comparator is an expression that evaluates two sequences of items and results in a true or false value.
A component of the context that has no value is said to be absent.
An
                     accumulator defines a series of
                     values associated with the nodes of the tree. If an accumulator is
                  applicable to a particular tree, then for each node in the tree, other than
                  attribute and namespace nodes, there will be two values available, called the
                  pre-descent and post-descent values. These two values are available via a pair of
                  functions, accumulator-before and
                     accumulator-after.
The functions
                        accumulator-before and
                        accumulator-after are referred to as the
                        accumulator functions.
A stylesheet can use the
                        xsl:namespace-alias element to declare that a literal namespace URI is being used
                     as an alias for a target
                        namespace URI.
A template rule is applicable to one or more modes.
                     The modes to which it is applicable are defined by the mode
                     attribute of the xsl:template element. If the attribute is
                     omitted, then the template rule is applicable to the default mode 
                  specified in the [xsl:]default-mode attribute of the innermost containing
                           element that has such an attribute, which in turn defaults to
                        the unnamed mode. If the
                        mode attribute is present, then its value
                        must be a non-empty whitespace-separated list of tokens,
                     each of which defines a mode to which the template rule is
                     applicable.
               The applicable static namespaces for an element in a stylesheet module are the
               fixed namespace bindings for the module if the root element
               of the module has a fixed-namespaces attribute, or the native namespace bindings
               of the element otherwise.
            
A function definition has an arity range, which defines the minimum and maximum number of arguments that must be supplied in a call to the function. The static context can contain multiple function definitions with the same name, provided that their arity ranges do not overlap.
The term atomization is defined in [XPath 4.0] section 2.5.3 Atomization. It is a process that takes as input a sequence of items, and returns a sequence of atomic items, in which the nodes are replaced by their typed values as defined in [XDM 4.0]. Arrays (see 22 Arrays) are atomized by atomizing their members, recursively.
An attribute set is
                  defined as a set of xsl:attribute-set declarations in the same
                     package that share the same expanded QName.
An
                              attribute set invocation is a pseudo-instruction
                           corresponding to a single EQName appearing within an
                              [xsl:]use-attribute-sets attribute; the effect of the
                           pseudo-instruction is to cause the referenced attribute set to be evaluated.
In an
                     attribute that is designated as an attribute value template, such
                     as an attribute of a literal result
                        element, an expression can
                     be used by surrounding the expression with curly brackets ({}),
                     following the general rules for value
                        templates
An element is processed with backwards compatible behavior if its effective version is less than 4.0.
The base output URI is a URI to be used as the base URI when resolving a relative URI reference allocated to a final result tree. If the transformation generates more than one final result tree, then typically each one will be allocated a URI relative to this base URI.
A basic XSLT processor is an XSLT processor that implements all the mandatory requirements of this specification with the exception of constructs explicitly associated with an optional feature.
A character map allows a specific character appearing in a text or attribute node in the final result tree to be substituted by a specified string of characters during serialization.
A circularity is said to exist if a construct such as a global variable, an attribute set, or a key, cannot be evaluated without reference to its own value. For example, if the expression or sequence constructor specifying the value of a global variable X references a global variable Y, then the value for Y must be computed before the value of X. A circularity exists if it is impossible to do this for all global variable definitions.
 The term coercion rules 
                  means the coercion rules defined in [XPath 4.0], applied 
                  unless otherwise specified with XPath 1.0 
                  compatibility mode set to false.
Facilities in XSLT 3.0 and XPath 3.0 that require strings to be ordered rely on the concept of a named collation. A collation is a set of rules that determine whether two strings are equal, and if not, which of them is to be sorted before the other.
The ordered collection of merge key values computed for one item in a merge input sequence (one for each merge key component within the merge key specification) is referred to as a combined merge key value.
The signatures of two components are compatible if they present the same interface to the user of the component. The additional rules depend on the kind of component.
The term component is used to refer to any of the following: a stylesheet function, a named template, a mode, an accumulator, an attribute set, a key, global variable, or a mode.
A
                     component declaration results in multiple components, one in the package in
                     which the declaration appears, and potentially one in each package that uses
                     the declaring package, directly or indirectly, subject to the visibility of the
                     component. Each of these multiple components has the same declaring package, but each has a different containing
                        package. For the original component, the declaring package and the
                     containing package are the same; for a copy of a component made as a result of
                     an xsl:use-package declaration, the declaring package will be
                     the original package, and the containing package will be the package in which
                     the xsl:use-package declaration appears.
The context
                                 item is the item currently being processed. An item (see
                                 [XDM 4.0]) is either an atomic item (such
                              as an integer, date, or string), a node, or
                                 a function item. It changes whenever instructions such as
                                 xsl:apply-templates and
                                 xsl:for-each are used to process a sequence of
                              items; each item in such a sequence becomes the context item while
                              that item is being processed.
If the context item is a node (as distinct from an atomic item such as an integer), then it is also referred to as the context node. The context node is not an independent variable, it changes whenever the context item changes. When the context item is an atomic item or a function item, there is no context node.
The
                                 context position is the position of the context item
                              within the sequence of items currently being processed. It changes
                              whenever the context item changes. When an instruction such as
                                 xsl:apply-templates or
                                 xsl:for-each is used to process a sequence of
                              items, the first item in the sequence is processed with a context
                              position of 1, the second item with a context position of 2, and so
                              on.
The context
                                 size is the number of items in the sequence of items
                              currently being processed. It changes whenever instructions such as
                                 xsl:apply-templates and
                                 xsl:for-each are used to process a sequence of
                              items; during the processing of each one of those items, the context
                              size is set to the count of the number of items in the sequence (or
                              equivalently, the position of the last item in the
                              sequence).
While
               the xsl:matching-substring instruction is active, a set of
                  current captured groups is available, corresponding to the
               capturing subexpressions of the regular expression.
The current group is the group itself, as a sequence of items
The current grouping key is a single atomic item, or in the case of a composite key, a sequence of atomic items, containing the grouping key of the items in the current group.
The
                           current merge group is a map. During
                        evaluation of an xsl:merge instruction, as each group of
                        items with equal combined merge
                           key values is processed, the current merge group is set to a
                        map whose keys are the names of the various merge sources, and whose
                        associated values are the items from each merge source having the relevant
                        composite merge key value.
The current
                           merge key is a an array, whose members are sequences of atomic items.
                     There is one member in the array for each xsl:merge-key element
                     in the merge key specification.
                     During evaluation of an
                           xsl:merge instruction, as each group of items with equal
                           combined merge key
                           values is processed, the current merge key is set to the
                        combined merge key value that these items have in common.
At any point in the processing
                     of a stylesheet, there is a current mode. When the transformation
                     is initiated, the current mode is the initial mode, as described in 2.3 Initiating a Transformation. Whenever an xsl:apply-templates
                     instruction is evaluated, the current mode becomes the mode selected by this
                     instruction.
The current output URI is the URI associated with the principal result or secondary result that is currently being written.
At any point in
                  the processing of a stylesheet, there may
                  be a current template rule. Whenever a template rule is chosen as a result of
                  evaluating xsl:apply-templates,
                     xsl:apply-imports, or xsl:next-match, the
                  template rule becomes the current template rule for the evaluation of the rule’s
                  sequence constructor.
All the
                  xsl:decimal-format declarations in a package that share the same name are grouped into a named
                  decimal format; those that have no name are grouped into a single
                  unnamed decimal format.
Top-level elements fall into two categories: declarations, and user-defined data elements. Top-level elements whose names are in the XSLT namespace are declarations. Top-level elements in any other namespace are user-defined data elements (see 3.7.4 User-defined Data Elements)
The declarations within a stylesheet level have a total ordering
                     known as declaration order. The order of declarations within a
                     stylesheet level is the same as the document order that would result if each
                     stylesheet module were inserted textually in place of the
                        xsl:include element that references it.
The declaring
                        package of a component is the
                     package that contains the declaration (or,
                        in the case of xsl:attribute-set and
                           xsl:key, multiple declarations) of the
                     component.
In this
                              specification the term default collation means the collation
                              that is used by XPath operators such as eq and
                              lt appearing in XPath expressions within the
                              stylesheet.
The 
                  [xsl:]default-mode attribute defines the default mode,
                  which is used as the default value for the
                     mode attribute of all
                     xsl:template and xsl:apply-templates elements
                     within its scope.
If no priority
                  attribute is specified on an xsl:template element, a
                     default priority is computed, based on the syntactic form of the pattern 
               supplied in the match attribute.
A string in the form of a lexical QName may occur as the value of an attribute node in a stylesheet module, or within an XPath expression contained in an attribute or text node within a stylesheet module, or as the result of evaluating an XPath expression contained in such a node. The element containing this attribute or text node is referred to as the defining element of the lexical QName.
Some constructs defined in this specification are described as being deprecated. The use of this term implies that stylesheet authors should not use the construct, and that the construct may be removed in a later version of this specification.
An error that is not capable of detection until a source document is being transformed is referred to as a dynamic error.
A
                  processor that claims conformance with the dynamic evaluation feature
                  must evaluate the xsl:evaluate function as
                  described in this specification.
An xsl:function declaration
                     F is said to be eclipsed if the containing package includes 
                     an xsl:function declaration
                     G such that F and G have the same name, F has lower
                     import precedence than G, and the arity range
                     of G includes the totality of the arity range of F.
The effective value of an attribute or text node in the stylesheet is the value after any required expansion or normalization.
The effective
                     version of an element in a stylesheet module or package manifest is the decimal value of the [xsl:]version attribute
                  (see 3.4 Standard Attributes) on that element or on the innermost
                  ancestor element that has such an attribute, subject
                  to special rules for the xsl:output and xsl:fallback
                     elements.
A stylesheet module whose outermost element is the child of a non-XSLT element in a host document is referred to as an embedded stylesheet module. See 3.12 Embedded Stylesheet Modules.
A mode declared by
                  an xsl:mode declaration that has one or more contained xsl:template
                  declarations is referred to as an enclosing mode.
An EQName is a string representing an expanded QName where the string, after removing leading and trailing whitespace, is in the form defined by the EQNameXP production in the XPath specification.
An expanded
                        QName is a value in the value space of the xs:QName
                     datatype as defined in the XDM data model (see [XDM 4.0]): that is, a triple containing namespace prefix (optional), namespace URI
                     (optional), and local name. Two expanded QNames are equal if the namespace URIs
                     are the same (or both absent) and the local names are the same. The prefix
                     plays no part in the comparison, but is used only if the expanded QName needs
                     to be converted back to a string.
An explicit
                        default for a parameter is indicated by the presence of either a
                        select attribute or a non-empty sequence
                  constructor.
A parameter is
                        explicitly mandatory if it is a 
                  function parameter 
                  with no required attribute, or if the
                        required attribute is present and has the value
                        yes.
Within this specification, the term XPath expression, or simply expression, means a string that matches the production ExprXP defined in [XPath 4.0].
An element from the XSLT namespace may have any attribute not from the XSLT namespace, provided that the expanded QName (see [XPath 4.0]) of the attribute has a non-null namespace URI. These attributes are referred to as extension attributes.
An extension function is a named function introduced to the static or dynamic context by mechanisms outside the scope of this specification.
An extension instruction is an element within a sequence constructor that is in a namespace (not the XSLT namespace) designated as an extension namespace.
The extension instruction mechanism allows namespaces to be designated as extension namespaces. When a namespace is designated as an extension namespace and an element with a name from that namespace occurs in a sequence constructor, then the element is treated as an instruction rather than as a literal result element.
The first of the two output states is called final output state. This state applies when instructions are writing to a final result tree.
A final result tree is a result tree that forms part of the output of a transformation: specifically, a tree built by post-processing the items in the principal result or in a secondary result. Once created, the contents of a final result tree are not accessible within the stylesheet itself.
                     The fixed namespace bindings for a stylesheet module are
                     established using the fixed-namespaces attribute on the xsl:stylesheet,
                     xsl:transform, or xsl:package element enclosing the stylesheet
                     module.
When a sequence constructor is evaluated, the processor keeps track of which items are being processed by means of a set of implicit variables referred to collectively as the focus.
An element is processed with forwards compatible behavior if its effective version is greater than 4.0.
The term function definition is defined in [XPath 4.0] section 2.2.1 Static Context. It is the definition of a function that can be called statically from within an XPath expression: in the case of XSLT it typically means either a stylesheet function, or a built-in function such as those defined in [Functions and Operators 4.0]
 An
                           xsl:param element may appear as a child of an
                           xsl:function element, before any
                           non-xsl:param children of that element. Such a parameter
                        is known as a function parameter. A function parameter is a
                           local variable with the
                        additional property that its value can be set when the function is called,
                        using a function call in an XPath expression.
An item that is the global
                                 context item for the transformation acts
                           as the context item when evaluating
                            the select expression or sequence constructor of a
                                 global variable whose declaration is
                           within the top-level package, as described in 5.3.3.1 Maintaining Position: the Focus. The global context item may also be available in a named template
                        when the stylesheet is invoked as described in 2.3.4 Call-Template Invocation
A top-level variable-binding element declares a global variable that is visible everywhere except within any region where it is shadowed by another variable binding.
The xsl:for-each-group
                  instruction allocates the items in an input sequence into groups of
                  items (that is, it establishes a collection of sequences) based either on common
                  values of a grouping key, or on a pattern that
                  the initial or final item in a group must
                  match.
If the
                     group-by or group-adjacent attributes is present,
                  then for each item in the population a set
                  of grouping keys is calculated, as follows: the expression contained
                  in the group-by or group-adjacent attribute is
                  evaluated; the result is atomized; and any xs:untypedAtomic items
                  are cast to xs:string. If
                        composite="yes" is specified, there is a single grouping key
                     whose value is the resulting sequence; otherwise, there is a set of grouping
                     keys, consisting of the distinct atomic items present in the result
                     sequence.
A 
                         xsl:package-location without the attribute is-priority, 
                         or with is-priority set to true is a high priority package 
                            location.
Two components are said to be homonymous if they have the same symbolic identifier.
Types S 
                     and T are considered identical for the purpose of
                        these rules if and only if subtype(S, T) and subtype(T,
                           S) both hold, where the subtype relation is defined in [XPath 4.0] section 3.3.1 Subtypes of Sequence Types.
The result of evaluating a sequence constructor is the sequence of items formed by concatenating the results of evaluating each of the nodes in the sequence constructor, retaining order. This is referred to as the immediate result of the sequence constructor.
A specific product that performs the functions of an XSLT processor is referred to as an implementation.
In this specification, the term implementation-defined refers to a feature where the implementation is allowed some flexibility, and where the choices made by the implementation must be described in documentation that accompanies any conformance claim.
The term implementation-dependent refers to a feature where the behavior may vary from one implementation to another, and where the vendor is not expected to provide a full specification of the behavior.
If a parameter that is
                     not explicitly mandatory has no explicit default value, then it has an implicit
                        default value, which is the empty sequence if there is an
                        as attribute, or a zero-length string if not.
If a parameter
                     has an implicit default value which cannot be converted to
                     the required type (that is, if it has an as
                     attribute which does not permit the empty sequence), then the parameter is
                        implicitly mandatory.
A declaration D in the stylesheet is defined to have lower import precedence than another declaration E if the stylesheet level containing D would be visited before the stylesheet level containing E in a post-order traversal of the import tree (that is, a traversal of the import tree in which a stylesheet level is visited after its children). Two declarations within the same stylesheet level have the same import precedence.
The stylesheet levels making up a stylesheet are treated as forming an
                        import tree. In the import tree, each stylesheet level has one
                     child for each xsl:import declaration that it
                     contains.
A stylesheet may be evaluated by calling a named stylesheet function, referred to as the initial function.
For each group, the item within the group that is first in population order is known as the initial item of the group.
A stylesheet may be evaluated by supplying a
                     value to be processed, together with an initial mode. The
                     value (which can be any sequence of items) is referred to as the initial
                        match selection. The processing then corresponds to the effect of the
                        xsl:apply-templates instruction.
The initial mode is the mode used to select template rules for processing items in the initial match selection when apply-templates invocation is used to initiate a transformation.
A stylesheet may be evaluated by selecting a named template to be evaluated; this is referred to as the initial named template.
The sequence to be sorted is referred to as the initial sequence.
The initial setting of a component of the dynamic context is used
                     when evaluating global variables
                     and stylesheet parameters,
                     when evaluating the use and match attributes of
                        xsl:key, and when evaluating the initial-value of
                        xsl:accumulator and the select expressions or
                     contained sequence constructors of
                     xsl:accumulator-rule
The schema components that may be referenced by name in a package are referred to as the in-scope schema components.
An instruction is either an XSLT instruction or an extension instruction.
The following constructs are classified as invocation constructs: the
               instructions xsl:call-template,
               xsl:apply-templates, xsl:apply-imports, and
                  xsl:next-match; XPath function calls that bind to stylesheet functions; XPath dynamic
               function calls; the functions accumulator-before and
                  accumulator-after; the [xsl:]use-attribute-sets
               attribute. These all have the characteristic that they can cause evaluation of
               constructs that are not lexically contained within the calling
            construct.
A JNode Pattern matches a JNode by specifying constraints on the values of its ·selector· and/or ·content· properties.
A key is defined as a set of
                        xsl:key declarations in the same
                           package that share the same
                     name.
The expression in the
                        use attribute and the sequence constructor 
                     within an xsl:key
                     declaration are referred to collectively as the key specifier. The
                     key specifier determines the values that may be used to find a node using this
                        key.
A lexical QName
                     is a string representing an expanded
                        QName where the string, after removing leading and trailing
                     whitespace, is within the lexical space of the xs:QName datatype
                     as defined in XML Schema (see [XML Schema Part 2]): that is, a local
                     name optionally preceded by a namespace prefix and a colon.
Every package within a stylesheet, other than the top-level package, is referred to as a library package.
A namespace URI in the stylesheet tree that is being used to specify a namespace URI in the result tree is called a literal namespace URI.
In a sequence constructor, an element in the stylesheet that does not belong to the XSLT namespace and that is not an extension instruction (see 24.2 Extension Instructions) is classified as a literal result element.
As well as being allowed as a
                     declaration, the
                     xsl:variable element is also allowed in sequence constructors. Such a variable
                  is known as a local variable.
A 
                         xsl:package-location with is-priority set to false is a 
                         low priority package location.
A merge
                     activation is a single evaluation of the sequence constructor contained
                  within the xsl:merge-action element, which occurs once for each
                  distinct combined merge key value.
A merge input sequence is an arbitrary sequenceDM of items which is already sorted according to the merge key specification for the corresponding merge source definition.
A merge key
                     component specifies one component of a merge key specification; it
                  corresponds to a single xsl:merge-key element in the
                  stylesheet.
A merge
                     key specification consists of one or more adjacent
                     xsl:merge-key elements which together define how the 
               merge input sequences selected by a
                     merge source definition are
                  sorted. Each xsl:merge-key element defines one 
               merge key component.
For each item in a merge input sequence, a value is computed for each merge key component within the merge key specification. The value computed for an item by using the Nth merge key component is referred to as the Nth merge key value of that item.
A merge source definition is the definition of one kind of input to the merge operation. It selects zero or more merge input sequences, and it includes a merge key specification to define how the merge key values are computed for each such merge input sequence.
 A mode is a set of template rules;
                  when the xsl:apply-templates instruction selects a set of items
                  for processing, it identifies the rules to be used for processing those items by
                  nominating a mode, explicitly or implicitly.
All the
                        xsl:mode declarations in a package that share the same
                     name are grouped into a named mode definition; those that have no
                     name are grouped into a single unnamed mode definition.
Templates can be invoked by
                  name. An xsl:template element with a name attribute
                  defines a named template.
The rules for the individual XSLT instructions that construct a result tree (see 11 Creating Nodes) prescribe some of the situations in which namespace nodes are written to the tree. These rules, however, are not sufficient to ensure that the prescribed constraints are always satisfied. The XSLT processor must therefore add additional namespace nodes to satisfy these constraints. This process is referred to as namespace fixup.
The native namespace bindings for any element in an XSLT stylesheet module are the prefix-uri mappings defined by the namespace nodes of that element, according to the rules in [XDM 4.0].
The term non-contextual function
                        call is used to refer to function calls that do not pass the dynamic
                     context to the called function. This includes all calls on stylesheet functions and all
                        dynamic function
                        callsXP, (that is calls to function items). It excludes calls to some
                        functions in the namespace
                           http://www.w3.org/2005/xpath-functions, in
                     particular those that explicitly depend on the context, such as the
                        current-group and regex-group
                     functions. It is implementation-defined whether, and under what circumstances,
                     calls to extension functions are
                     non-contextual.
A non-schema-aware processor is a processor that does not claim conformance with the schema-aware conformance feature. Such a processor must handle constructs associated with schema-aware processing as described in this section.
There is a total ordering among groups referred to as the order of first appearance. A
                  group G is defined to precede a group H in order of first
                  appearance if the initial item of
                     G precedes the initial item of H in population order. If
                  two groups G and H have the same initial item (because the
                  item is in both groups) then G precedes H if the grouping key of G precedes the
                  grouping key of H in the sequence that results from evaluating the
                     group-by expression of this initial item.
All the
                  xsl:output declarations within a
                     package that share the same name
               are grouped into a named output definition; those that have no name are
               grouped into a single unnamed output definition.
Each instruction in the stylesheet is evaluated in one of two possible output states: final output state or temporary output state.
A component in a using package may
                           override a component in a used package, provided that the
                           visibility of the component in the
                        used package is either abstract or public. The
                        overriding declaration is written as a child of the
                           xsl:override element, which in turn appears as a child
                        of xsl:use-package.
An explicit package is
                  represented by an xsl:package element, which will generally be
                  the outermost element of an XML document. When the
                        xsl:package element is not used explicitly, the entire
                     stylesheet comprises a single implicit package.
The content of the
                     xsl:package element is referred to as the package
                     manifest
The xsl:param element
               declares a parameter, which may be a stylesheet parameter, a template parameter, a function parameter, or an xsl:iterate parameter. A parameter is a
                  variable with the additional property that
               its value can be set by the caller.
A pattern specifies a set of conditions on an item. An item that satisfies the conditions matches the pattern; an item that does not satisfy the conditions does not match the pattern.
The picture string
               is the string supplied as the second argument of the
               format-number function.
The xsl:number
               instruction performs two tasks: firstly, determining a place marker
               (this is a sequence of integers, to allow for hierarchic numbering schemes such as
                  1.12.2 or 3(c)ii), and secondly, formatting the place
               marker for output as a text node in the result sequence.
The sequence of items to be grouped,
                  which is referred to as the population, is determined by evaluating
                  the XPath expression contained in the
                  select attribute.
The population is treated as a sequence; the order of items in this sequence is referred to as population order.
The integer literals and the optional
                        NamePart within the version number are referred to as the
                        portions of the version number.
A predicate pattern is written as
                           . (dot) followed by zero or more predicates in square
                        brackets, and it matches any item for which each of the predicates evaluates
                        to true.
A principal result: this can be any sequence of items (as defined in [XDM 4.0]).
Within a package, one stylesheet module functions as the
                     principal stylesheet module. The complete package is assembled by
                  finding the stylesheet modules referenced directly or indirectly from the
                  principal stylesheet module using xsl:include and
                     xsl:import elements: see 3.11.2 Stylesheet Inclusion and 3.11.3 Stylesheet Import.
The priority of a
                        template rule is specified by the priority attribute on the
                           xsl:template declaration. If no priority is specified
                        explicitly for a template rule, its default priority is used, as defined in 6.3.3 Default Priority for Patterns.
The
                            first package location whose value of href, when resolved
                            as described in 5.8 URI References, allows the system to
                            find the specified resource, and its entry if the resource is an archive, is
                            the optimal package location.
There is another total ordering among groups referred to as
                     processing order. If group R precedes group
                     S in processing order, then in the result sequence returned by the
                     xsl:for-each-group instruction the items generated by
                  processing group R will precede the items generated by processing group
                     S.
The software responsible for transforming source trees into result trees using an XSLT stylesheet is referred to as the processor. This is sometimes expanded to XSLT processor to avoid any confusion with other processors, for example an XML processor.
The result of invoking the selected component, after any required conversion to the declared result type of the component, is referred to as the raw result.
The process of identifying the component to which a symbolic reference applies (possibly chosen from several homonymous alternatives) is called reference binding.
The context within a stylesheet where an XPath expression appears may specify the required type of the expression. The required type indicates the type of the value that the expression is expected to return.
The XSLT namespace, together with certain other namespaces recognized by an XSLT processor, are classified as reserved namespaces and must be used only as specified in this and related specifications.
The term result tree is used to refer to any tree constructed by instructions in the stylesheet. A result tree is either a final result tree or a temporary tree.
A
                     schema-aware XSLT processor is an XSLT processor that implements
                  the mandatory requirements of this specification connected with the
                     xsl:import-schema declaration, the
                     [xsl:]validation and [xsl:]type attributes, and the
                  ability to handle input documents whose nodes have type annotations other than
                     xs:untyped and xs:untypedAtomic. The mandatory
                  requirements of this specification are taken to include the mandatory requirements
                  of XPath 4.0, as described in [XPath 4.0]. A requirement is mandatory unless the specification includes
                  wording (such as the use of the words should or
                     may) that clearly indicates that it is optional.
Type definitions and element and attribute declarations are referred to collectively as schema components.
The schema instance namespace
                           http://www.w3.org/2001/XMLSchema-instance,
                        with conventional prefix xsi,
                        is used as defined
                           in [XML Schema Part 1]
The schema
                              namespace
                           http://www.w3.org/2001/XMLSchema,
                        with conventional prefix xs,
                        is used as defined in
                              [XML Schema Part 1]
Zero or more secondary results: each secondary result can be any sequence of items (as defined in [XDM 4.0]).
A sequence constructor is a sequence of zero or more sibling nodes in the stylesheet that can be evaluated to return a sequence of nodes, atomic items, and function items. The way that the resulting sequence is used depends on the containing instruction.
A SequenceType constrains the type and number of items in a sequence. The term is used both to denote the concept, and to refer to the syntactic form in which sequence types are expressed in the XPath grammar: specifically SequenceTypeXP in [XPath 4.0].
A frequent requirement is to output a final result tree as an XML document (or in other formats such as HTML). This process is referred to as serialization.
If a transformation has successfully produced a principal result or secondary result, it is still possible that errors may occur in serializing that result . For example, it may be impossible to serialize the result using the encoding selected by the user. Such an error is referred to as a serialization error.
A processor that claims conformance with the serialization feature must support the conversion of a final result tree to a sequence of octets following the rules defined in 26 Serialization.
Within a region of the stylesheet where a binding B1 is visible, B1 shadows another binding B2 having the same name as B1 if B1 occurs at a point where B2 is visible.
A simplified stylesheet, which is a subtree rooted at a literal result element, as described in 3.8 Simplified Stylesheet Modules. This is first converted to a standard stylesheet module by wrapping it in an xsl:stylesheet element using the transformation described in 3.8 Simplified Stylesheet Modules.
A singleton focus based on an item J has the context item (and therefore the context node, if J is a node) set to J, and the context position and context size both set to 1 (one).
A snapshot of a node N
               is a deep copy of N, as produced by the xsl:copy-of
               instruction with copy-namespaces set to yes,
               copy-accumulators set to yes, and
                  validation set to preserve, with the additional property
               that for every ancestor of N, the copy also has a corresponding ancestor
               whose name, node-kind, and base URI are the same as the corresponding ancestor of
               N, and that has copies of the attributes, namespaces and accumulator values of the
               corresponding ancestor of N. But the ancestor has a type annotation of
                  xs:anyType, has the properties nilled,
                  is-id, and is-idref set to false, and has no children
               other than the child that is a copy of N or one of its
               ancestors.
The sequence after sorting
                     as defined by the xsl:sort elements is referred to as the
                        sorted sequence.
Within a sort key specification, each
                  xsl:sort element defines one sort key
               component.
A sort key
                  specification is a sequence of one or more adjacent
                  xsl:sort elements which together define rules for sorting the
               items in an input sequence to form a sorted sequence.
For each item in the initial sequence, a value is computed for each sort key component within the sort key specification. The value computed for an item by using the Nth sort key component is referred to as the Nth sort key value of that item.
The term source tree
                  means any tree provided as input to the transformation. This includes the document
                  containing the global context item if any, documents containing
                     nodes present in the initial match selection,
                  documents containing nodes supplied as the values of stylesheet parameters, documents
                  obtained from the results of functions such as document,
                     doc, and collection, documents read using the xsl:source-document
                     instruction, and documents returned by extension functions or
                  extension instructions. In the context of a particular XSLT instruction, the term
                     source tree means any tree provided as input to that instruction;
                  this may be a source tree of the transformation as a whole, or it may be a
                     temporary tree produced during the
                  course of the transformation.
A sort
                     key specification is said to be stable if its first
                     xsl:sort element has no stable attribute, or has
                  a stable attribute whose effective
                     value is yes.
There are a number of
                     standard attributes that may appear on any XSLT element: specifically
                     default-collation, 
                     default-mode,
                     default-validation,
                     exclude-result-prefixes, 
                     expand-text, 
                     extension-element-prefixes,
                     schema-role,
                     use-when, 
                     version, and
                     xpath-default-namespace.
The standard error namespace
                           http://www.w3.org/2005/xqt-errors,
                        with conventional prefix err,
                        is used for error codes
                           defined in this specification and related specifications. It is also used
                           for the names of certain predefined variables accessible within the scope
                           of an xsl:catch element.
The standard function
                              namespace
                           http://www.w3.org/2005/xpath-functions,
                           with conventional prefix fn,
                           is used for functions
                           in the function library defined in [Functions and Operators 4.0] and
                           for standard functions defined in this specification.
A
                           standard stylesheet module, which is a subtree rooted at an
                           xsl:stylesheet or xsl:transform
                        element.
An error that can be detected by examining a stylesheet before execution starts (that is, before the source document and values of stylesheet parameters are available) is referred to as a static error.
A static expression is an XPath expression whose value must be computed during static analysis of the stylesheet.
A static variable declared using an xsl:param element
                  is referred to as a static parameter.
A top-level
                  variable-binding element
                  having the attribute static="yes" declares a static
                     variable: that is, a global variable whose value is
                  known during static analysis of the stylesheet.
A streamable
                        mode is a mode that is declared in
                     an xsl:mode declaration with the attribute
                        streamable="yes".
A streamed document is a source tree that is processed using streaming, that is, without constructing a complete tree of nodes in memory.
A streamed node is a node in a streamed document.
The term streaming refers to a manner of processing in which XML documents (such as source and result documents) are not represented by a complete tree of nodes occupying memory proportional to document size, but instead are processed “on the fly” as a sequence of events, similar in concept to the stream of events notified by an XML parser to represent markup in lexical XML.
A processor that claims
                  conformance with the streaming feature
                  must use streamed processing in cases where (a) streaming is
                  requested (for example by using the attribute streamable="yes" on
                  xsl:mode, or on
                  the xsl:source-document instruction) and
                  (b) the constructs in question are 
                  according to this specification.
The term string value is defined in [XDM 4.0] section 7.6.12 string-value Accessor. Every node has a string value. For example, the string value of an element is the concatenation of the string values of all its descendant text nodes.
A stylesheet consists of one or more packages: specifically, one top-level package and zero or more library packages.
An
                     xsl:function declaration declares the name, parameters, and
                  implementation of a family of stylesheet functions that can be called from any
                  XPath expression within the stylesheet
                  (subject to visibility rules).
A stylesheet
                        level is a collection of stylesheet modules connected using xsl:include
                     declarations: specifically, two stylesheet modules A and
                        B are part of the same stylesheet level if one of them includes
                     the other by means of an xsl:include declaration, or if there
                     is a third stylesheet module C that is in the same stylesheet level
                     as both A and B.
A package consists of one or more stylesheet modules, each one forming all or part of an XML document.
A top-level
                     xsl:param element declares a stylesheet
                  parameter. A stylesheet parameter is a global variable with the additional
                  property that its value can be supplied by the caller when a transformation is
                  initiated.
The value of the variable is
                  computed using the expression given in the
                     select attribute or the contained sequence constructor, as described in
                     9.3 Values of Variables and Parameters. This value is referred to as the
                     supplied value of the variable.
The symbolic identifier of a component is a composite name used to identify the component uniquely within a package. The symbolic identifier comprises the kind of component (stylesheet function, named template, accumulator, attribute set, global variable, key, or mode), the expanded QName of the component (namespace URI plus local name), and in the case of stylesheet functions, the upper bound of the arity range.
The declaration of a component includes
                     constructs that can be interpreted as references to other components by means of their symbolic identifiers. These
                     constructs are generically referred to as symbolic references.
                     Examples of constructs that give rise to symbolic references are the
                        name attribute of xsl:call-template; the
                        [xsl:]use-attribute-sets attribute of
                     xsl:copy, xsl:element, and literal result elements; the
                        explicit or implicit
                     mode attribute of xsl:apply-templates; XPath
                     variable references referring to global variables; XPath static function calls (including partial function
                        applications) referring to stylesheet functions; and
                        named function references (example: my:f#1) referring to
                        stylesheet functions.
                     
An instruction J is in a tail position within a sequence constructor SC if it satisfies one of the following conditions:
J is the last instruction in SC, ignoring any
                        xsl:fallback instructions.
J is in a tail position
                     within the sequence constructor that forms the body of an
                        xsl:if instruction that is itself in a tail position within SC.
J is in a tail position
                     within the sequence constructor that forms the body of an
                        xsl:when or xsl:otherwise branch of an
                        xsl:choose or xsl:switch 
                     instruction that is itself in a tail position within SC.
J is in a tail position
                     within the sequence constructor that forms the body of an
                        xsl:try instruction that is itself in a tail position within SC (that
                     is, it is immediately followed by an xsl:catch element,
                     ignoring any xsl:fallback elements).
J is in a tail position
                     within the sequence constructor that forms the body of an
                        xsl:catch element within an xsl:try
                     instruction that is itself in a tail
                        position within SC.
The string that results
                  from evaluating the expression in the xpath attribute is referred to
                  as the target expression.
The namespace URI that is to be used in the result tree as a substitute for a literal namespace URI is called the target namespace URI.
An xsl:template
                  declaration defines a template, which contains a sequence constructor;
                  this sequence constructor is evaluated to determine
                     the result of the template. A template can serve either as a template rule, invoked by matching items against a pattern, or as a named
                     template, invoked explicitly by name. It is also possible for the
                  same template to serve in both capacities.
 An
                           xsl:param element may appear as a child of an
                           xsl:template element, before any
                           non-xsl:param children of that element. Such a parameter
                        is known as a template parameter. A template parameter is a
                           local variable with the
                        additional property that its value can be set when the template is called,
                        using any of the instructions xsl:call-template,
                           xsl:apply-templates, xsl:apply-imports,
                        or xsl:next-match.
A stylesheet contains a set of template rules (see 6 Template Rules). A template rule has three parts: a pattern that is matched against selected items (often but not necessarily nodes), a (possibly empty) set of template parameters, and a sequence constructor that is evaluated to produce a sequence of items.
The second of the two output states is called temporary output state. This state applies when instructions are writing to a temporary tree or any other non-final destination.
The term temporary tree means any tree that is neither a source tree nor a final result tree.
In a text node
                     that is designated as a text value template, expressions can be used by surrounding each
                     expression with curly brackets ({}).
An element occurring as a child of an
                     xsl:package,
                     xsl:stylesheet,
                        xsl:transform, or xsl:override
                  element is called a top-level element.
For a given transformation, one package functions as the top-level package. The
                  complete stylesheet is assembled by finding
                  the packages referenced directly or indirectly from the top-level package using
                     xsl:use-package declarations: see 3.5.2 Dependencies between Packages.
A traversal of a tree is a sequence of traversal events.
a traversal event (shortened to event in this section) is a pair comprising a phase (start or end) and a node.
The term tree is used (as in [XDM 4.0]) to refer to the aggregate consisting of a parentless node together with all its descendant nodes, plus all their attributes and namespaces.
A parameter passed to a template may be defined as a tunnel parameter. Tunnel parameters have the property that they are automatically passed on by the called template to any further templates that it calls, and so on recursively.
The term type
                     annotation is used in this specification to refer to the value returned
                  by the dm:type-name accessor of a node: see [XDM 4.0] section 7.6.13 type-name Accessor.
The term typed
                           value is defined in [XDM 4.0] section 7.6.14 typed-value Accessor.
                        Every node, other than an element whose type
                           annotation identifies it as having element-only content, has a
                           typed value. For example, the
                           typed value of an attribute of
                        type xs:IDREFS is a sequence of zero or more
                           xs:IDREF values.
Certain errors are classified as type errors. A type error occurs when the value supplied as input to an operation is of the wrong type for that operation, for example when an integer is supplied to an operation that expects a node.
A type pattern can be written as
                     type(T) (where T is an ItemTypeXP
                     followed by zero or more predicates in square
                     brackets, and it matches any item of type T for which each of the predicates evaluates
                     to true.
The unnamed mode is the default mode used when no
                        mode attribute is specified on an
                        xsl:apply-templates instruction or
                        xsl:template declaration, unless a different default mode
                     has been specified using the [xsl:]default-mode attribute of a containing
                        element.
Within this specification, the
                  term URI Reference, unless otherwise stated, refers to a string in
                  the lexical space of the xs:anyURI datatype as defined in [XML Schema Part 2].
If a package Q contains an
                        xsl:use-package element that references package
                        P, then package Q is said to use package
                        P. In this relationship package Q is referred to as
                     the using package, package P as the used
                     package.
In addition to
                        declarations, the
                        xsl:stylesheet element may contain among its children any
                     element not from the XSLT namespace,
                     provided that the expanded QName of
                     the element has a non-null namespace URI. Such elements are referred to as
                        user-defined data elements.
An item is vacuous if
               it is one of the following: a zero-length text node; a document node with no children; an atomic item which, 
               on casting to xs:string, produces a zero-length string; or  an array 
                  which on flattening using the array:flatten function produces either an empty sequence 
                  or a sequence consisting entirely of vacuous items.
A variable is a binding between a name and a value. The value of a variable is any sequence (of nodes, atomic items, and/or function items), as defined in [XDM 4.0].
Collectively, attribute value templates and text value templates are referred to as value templates.
The xsl:variable element
               declares a variable, which may be a global variable or a local
                  variable.
The two
               elements xsl:variable and xsl:param are referred to
               as variable-binding elements.
The visibility of a
                           component is one of:
                           private, public, abstract,
                           final, or hidden.
A whitespace text node is a text node whose content consists entirely of whitespace characters (that is, U+0009 (TAB) , U+000A (NEWLINE) , U+000D (CARRIAGE RETURN) , or U+0020 (SPACE) ).
The XML
                              namespace, defined in [Namespaces in XML] as
                              http://www.w3.org/XML/1998/namespace, is used for
                           attributes such as xml:lang, xml:space, and
                              xml:id.
An XNode pattern uses a subset of the syntax for path expressions, and is defined to match an XNode if the corresponding path expression would select the XNode.
The term
                           XPath 1.0 compatibility mode is defined in 
                        [XPath 4.0] section 2.2.1 Static Context. This is a setting in the static
                        context of an XPath expression; it has two values, true and
                           false. When the value is set to true, the semantics of
                        function calls and certain other operations are adjusted to give a greater
                        degree of backwards compatibility between XPath
                        4.0 and XPath 1.0.
An element in the stylesheet is processed with XSLT 1.0 behavior if its effective version is equal to 1.0.
A processor that claims conformance with the XSLT 1.0 compatibility feature must support the processing of stylesheet instructions and XPath expressions with XSLT 1.0 behavior, as defined in 3.9 Backwards Compatible Processing.
An element is processed with XSLT 2.0 behavior if its effective version is equal to 2.0.
An element is processed with XSLT 3.0 behavior if its effective version is equal to 3.0.
An XSLT element is an element in the XSLT namespace whose syntax and semantics are defined in this specification.
An XSLT
                  instruction is an XSLT element
                  whose syntax summary in this specification contains the annotation <!--
                     category: instruction -->.
The XSLT namespace
                     has the URI http://www.w3.org/1999/XSL/Transform. It is used to
                     identify elements, attributes, and other names that have a special meaning defined
                     in this specification.
The syntax of each XSLT element is summarized below, together with the context in the stylesheet where the element may appear. Some elements (specifically, instructions) are allowed as a child of any element that is allowed to contain a sequence constructor. These elements are:
| Model: 
 Permitted parent elements: | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Model: 
 Permitted parent elements: | 
| Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Model: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Model: 
 Permitted parent elements: | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Model: 
 Permitted parent elements: | 
| Model: 
 Permitted parent elements: | 
| Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Model: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Category: declaration instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
| Model: 
 Permitted parent elements: | 
| Category: instruction Model: 
 Permitted parent elements: 
 | 
| Model: 
 Permitted parent elements: | 
This appendix provides a summary of error conditions that a processor may raise. This list includes all error codes defined in this specification, but this is not an exhaustive list of all errors that can occur. Implementations must raise errors using these error codes, and applications can test for these codes; however, when more than one rule in the specification is violated, different processors will not necessarily raise the same error code. Implementations are not required to raise errors using the descriptive text used here.
Note:
The appendix is non-normative because the same information is given normatively elsewhere.
Static errors
It is a static error if an XSLT-defined element is used in a context where it is not permitted, if a required attribute is omitted, or if the content of the element does not correspond to the content that is allowed for the element.
It is a static error if an attribute (other than an attribute written using curly brackets in a position where an attribute value template is permitted) contains a value that is not one of the permitted values for that attribute.
It is a static error to use a
                           reserved namespace in the
                        name of a named template, a
                           mode, an attribute set, a key, a
                           decimal-format, a variable or parameter, a stylesheet
                           function, a named output
                           definition, an accumulator, or a character map; except that the name
                              xsl:initial-template is permitted as a template
                           name.
It is a static error to use a reserved namespace
                  in the name of any extension function or extension instruction,
                  other than a function or instruction defined in this specification or in a normatively 
                  referenced specification. It is a static error to use a prefix bound 
                  to a reserved namespace in the [xsl:]extension-element-prefixes attribute.
               
It is a static error for an element from the XSLT namespace to have an attribute whose namespace is either null (that is, an attribute with an unprefixed name) or the XSLT namespace, other than attributes defined for the element in this document.
The value of the version attribute must be a number:
                     specifically, it must be a valid instance of the type
                        xs:decimal as defined in [XML Schema Part 2].
An xsl:stylesheet, xsl:transform,
                  or xsl:package element must not have any
                     text node children.
It is a static error if a token
                        appearing in the fixed-namespaces attribute takes a form
                        that is not one of the permitted forms, or if it is interpreted as a URI
                     but cannot be dereferenced to locate a namespace well-formed XML document.
                     It is not permitted to bind the prefix xmlns. It is not permitted to bind the
                        prefix xml or the XML namespace URI http://www.w3.org/XML/1998/namespace, other than
                     to each other.
It is a static error if the value
                        of an [xsl:]default-collation attribute, after resolving
                        against the base URI, contains no URI that the implementation recognizes as
                        a collation URI.
It is a static error if an
                        xsl:stylesheet, xsl:transform,
                           or xsl:package element has a child element whose name
                        has a null namespace URI.
It is a static error if the
                        processor is not able to retrieve the resource identified by the URI
                           reference [ in the href attribute of
                              xsl:include or xsl:import
                        ] , or if the resource that is retrieved does not contain a
                        stylesheet module.
An xsl:include element must be a
                           top-level element.
An xsl:import element must be a top-level element.
It is a static error if a
                        stylesheet module directly or indirectly references itself via a chain
                        of xsl:include and xsl:import
                        declarations that contains at least one xsl:import.
It is a static error if an
                        xsl:import-schema element that contains an
                        xs:schema element has a schema-location attribute,
                     or if it has a namespace attribute that conflicts with the target
                     namespace of the contained schema.
It is a static error if the synthetic schema document does not satisfy the constraints described in [XML Schema Part 1] (section 5.1, Errors in Schema Construction and Structure). This includes, without loss of generality, conflicts such as multiple definitions of the same name.
Within an XSLT element that is
                        required to be empty, any content other than comments or
                        processing instructions, including any whitespace text node preserved using the
                        xml:space="preserve" attribute, is a static error.
 It is a static error if there is a
                        stylesheet module in a
                        package that specifies
                        input-type-annotations="strip" and another stylesheet module that specifies
                        input-type-annotations="preserve", or if a stylesheet module specifies the value
                           strip or preserve and the same value is not
                        specified on the xsl:package element of the containing
                        package.
It is a static error if within any package the same NameTestXP appears in both an
                        xsl:strip-space and an xsl:preserve-space
                     declaration if both have the same import
                        precedence. Two NameTests are considered the same if they match
                     the same set of names (which can be determined by comparing them after
                     expanding namespace prefixes to URIs).
In the case of a prefixed lexical QName used as the value (or as part of the value) of an attribute in the stylesheet, or appearing within an XPath expression in the stylesheet, it is a static error if the defining element has no namespace node whose name matches the prefix of the lexical QName.
Where an attribute is defined to contain a pattern, it is a static error if the pattern does not match the production Pattern.
It is a static error if an unescaped left curly bracket appears in a fixed part of a value template without a matching right curly bracket.
It is a static error if an unescaped right curly bracket occurs in a fixed part of a value template.
An xsl:template element must have either a
                        match attribute or a name attribute, or both. An
                        xsl:template element that has no match
                     attribute must have no mode attribute and no
                        priority attribute. An
                           xsl:template element that has no name
                        attribute must have no visibility
                        attribute.
The value of the priority attribute  [ of the
                                 xsl:template element] 
                           must conform to the rules for the
                              xs:decimal type defined in [XML Schema Part 2].
                           Negative values are permitted.
It is a static error if for any
                        named or unnamed mode, a package explicitly specifies two conflicting
                        values for the same attribute in different xsl:mode
                        declarations having the same import
                           precedence, unless there is another definition of the same
                        attribute with higher import precedence. The attributes in question are the
                        attributes other than name on the xsl:mode
                           element.
It is a static error if the list of
                        modes  [in the mode attribute of
                              xsl:template
                        ]  is empty, if the same token is included more than once in the
                        list, if the list contains an invalid token, or if the token
                           #all appears together with any other value.
It is a static error if the values of
                     the name attribute of two sibling
                           xsl:param elements represent the same expanded QName.
It is a static error 
                     if a variable-binding element has a
                        select attribute and has non-empty content.
It is a static error if a package contains more than one non-hidden binding of a global variable with the same name and same import precedence, unless it also contains another binding with the same name and higher import precedence.
It is a static error if a package contains an
                        xsl:call-template instruction whose name
                        attribute does not match the name attribute of any named template
                        visible in the containing package (this
                        includes any template defined in this package, as well as templates accepted
                        from used packages whose visibility in this package is not
                        hidden). For more details of the process of binding the
                        called template, see 3.5.4.5 Binding References to Components.
It is a static error if a package contains more than one non-hidden template with the same name and the same import precedence, unless it also contains a template with the same name and higher import precedence.
It is a static error
                     if two or more sibling xsl:with-param elements have
                        name attributes that represent the same expanded QName.
In the case of xsl:call-template, it is a static error to pass a non-tunnel
                        parameter named x to a template that does not have a non-tunnel
                        template
                           parameter named x, unless the xsl:call-template instruction is processed with
                              XSLT 1.0
                           behavior.
It is a static error if a
                                 package contains both (a) a
                              named template named T that is not overridden by another
                              named template of higher import precedence and that has an explicitly mandatory non-tunnel parameter named
                                 P, and (b) an xsl:call-template
                              instruction whose name attribute equals T and
                              that has no non-tunnel xsl:with-param child element
                              whose name attribute equals P. (All names are
                              compared as QNames.)
It is a static error if the value
                        of the use-attribute-sets attribute of an
                           xsl:copy, xsl:element, or
                           xsl:attribute-set element, or the
                           xsl:use-attribute-sets attribute of a literal result element, is not
                        a whitespace-separated sequence of EQNames, or if it contains an
                        EQName that does not match the name attribute of any
                           xsl:attribute-set declaration in the containing package.
It is a static error if a stylesheet function has a name
                        that is in no namespace, unless the visibility
                     of the function is private.
It is a static error if an xsl:param child of
                        an xsl:function element has either a select
                        attribute or non-empty content, unless it
                        specifies required="no".
It is a static error if an xsl:param child of
                        an xsl:function element specifies
                     required="no", unless all following-sibling
                        xsl:param elements also specify required="no".
It is a static error for a package to
                           contain an xsl:function
                           declaration F and an xsl:function declaration
                           G such that F and G have the same 
                           expanded QName, F has lower
                           import precedence than G, and the 
                           arity range
                           of G includes part but not all of the arity range of F,
                           unless G is itself eclipsed by another 
                           xsl:function declaration.
It is a static error for a package to
                           contain an xsl:function
                           declaration F and an xsl:function declaration
                           G such that F and G have the same 
                           expanded QName and the same
                           import precedence, if the 
                           arity ranges
                           of F and G overlap in whole or in part, 
                           unless F and G are both eclipsed by another 
                           xsl:function declaration.
It is a static error if an attribute on a literal result element is in the XSLT namespace, unless it is one of the attributes explicitly defined in this specification.
It is a static error if a
                              namespace prefix is used within the
                                 [xsl:]exclude-result-prefixes attribute and there is
                              no namespace binding in scope for that prefix.
It is a static error if the
                              value #default is used within the
                                 [xsl:]exclude-result-prefixes attribute and the parent
                              element of the [xsl:]exclude-result-prefixes attribute
                              has no default namespace.
It is a static error if within a package there is more than one such declaration
                            [more than one xsl:namespace-alias
                           declaration]  with the same literal namespace URI and the
                        same import precedence and
                        different values for the target
                           namespace URI, unless there is also an
                           xsl:namespace-alias declaration with the same literal namespace URI and a
                        higher import precedence. 
It is a static error if a value
                        other than #default is specified for either the
                           stylesheet-prefix or the result-prefix
                        attributes of the xsl:namespace-alias element when there is
                        no in-scope binding for that namespace prefix.
It is a static error if the
                        select attribute of the xsl:attribute element
                     is present unless the element has empty content.
It is a static error if the
                           select attribute of the xsl:text or 
                        xsl:value-of
                        element is present when the content of the element is non-empty.
It is a static error if the
                        select attribute of the
                        xsl:processing-instruction element is present unless the
                     element has empty content.
It is a static error if the
                        select attribute of the xsl:namespace element
                     is present when the element has content other than one or more
                        xsl:fallback instructions, or if the select
                     attribute is absent when the element has empty content.
It is a static error if the
                        select attribute of the xsl:comment element is
                     present unless the element has empty content.
It is a static error if the
                     value attribute of xsl:number is present unless
                  the select, level, count, and
                     from attributes are all absent.
It is a static error if an
                        xsl:sort element with a select attribute has
                     non-empty content.
It is a static error if an
                        xsl:sort element other than the first in a sequence of
                     sibling xsl:sort elements has a stable
                     attribute.
It is a static error if an
                        xsl:perform-sort instruction with a select
                     attribute has any content other than xsl:sort and
                        xsl:fallback instructions.
It is a static error if the
                     current-group function is used within a pattern.
It is a static error if the
                     current-grouping-key function is used within a pattern.
These six attributes  [the group-by,
                     group-adjacent, group-starting-with, 
                     group-ending-with, 
                     split-when,
                     and merge-when attributes of
                           xsl:for-each-group
                     ]  are mutually exclusive: it is a static error 
                     if none of these attributes is present or if
                     more than one of them is present.
It is a static error to specify the
                        collation attribute or the
                           composite attribute if neither the
                        group-by attribute nor the group-adjacent attribute is
                     specified.
It is a static error if the
                        xsl:analyze-string instruction contains neither an
                        xsl:matching-substring nor an
                        xsl:non-matching-substring element.
It is a static error if an
                           xsl:key declaration has a use attribute and
                        has non-empty content, or if it has empty content and no use
                        attribute.
It is a static error if the
                           xsl:key declaration has a collation
                        attribute whose value (after resolving against the base URI) is not a URI
                        recognized by the implementation as referring to a collation.
It is a static error if there are
                        several xsl:key declarations in the same package with the
                        same key name and different effective collations. Two collations are the
                        same if their URIs are equal under the rules for comparing
                           xs:anyURI values, or if the implementation can determine
                        that they are different URIs referring to the same collation.
It is a static error if there are
                        several xsl:key declarations in a package 
                        with the same key name and
                        different effective values 
                        for the composite attribute.
It is a static error if a named or
                     unnamed decimal format contains two
                     conflicting values for the same attribute in different
                     xsl:decimal-format declarations having the same import precedence, unless there is
                     another definition of the same attribute with higher import precedence.
It is a static error if the character
                     specified in the zero-digit attribute is not a digit or is a digit
                     that does not have the numeric value zero. 
It is a static error if, for any named or unnamed decimal format, the properties identifying marker characters to be used in a picture string do not identify distinct values. These properties are decimal-separator, grouping-separator, exponent-separator, percent, per-mille, zero-digit, digit, and pattern-separator.
It is a static error if there is no
                        namespace bound to the prefix on the element bearing the
                           [xsl:]extension-element-prefixes attribute or, when
                           #default is specified, if there is no default namespace.
It is a static error if both the
                        [xsl:]type and [xsl:]validation attributes are
                     present on the xsl:element, xsl:attribute,
                        xsl:copy, xsl:copy-of,
                        xsl:document, xsl:result-document, xsl:source-document, or
                           xsl:merge-source elements, or on a literal result element.
It is a static error if the
                           value of the type attribute of an
                              xsl:element, xsl:attribute,
                              xsl:copy, xsl:copy-of,
                              xsl:document, xsl:result-document,
                           xsl:source-document, or 
                              xsl:merge-source
                           instruction, or the xsl:type attribute of a literal result
                           element, is not a valid QName, or if it uses a prefix that
                           is not defined in the applicable static namespaces
                           of the containing instruction, or if the QName is
                           not the name of a type definition included in the in-scope schema
                              components for the package.
                        
It is a static error if the
                           value of the type attribute of an
                              xsl:attribute instruction refers to a complex type
                           definition
It is a static error if two
                     xsl:output declarations within an output definition specify explicit values
                  for the same attribute (other than cdata-section-elements, suppress-indentation, and
                     use-character-maps), with the values of the attributes being not
                  equal, unless there is another xsl:output declaration within the
                  same output definition that has
                  higher import precedence and that specifies an explicit value for the same
                  attribute. 
The value  [of the method attribute on
                        xsl:output
                  ] 
                  must (if present) be a valid EQName. 
                  If it is a lexical
                     QName in no namespace, then it identifies a method specified in
                     [Serialization 4.0] and must be one
                  of xml, html, xhtml, 
                  text, json, or adaptive.
It is a static error if a package contains two or more character maps with the same name and the same import precedence, unless it also contains another character map with the same name and higher import precedence.
It is a static error if a name in the
                        use-character-maps attribute of the xsl:output
                     or xsl:character-map elements does not match the
                        name attribute of any xsl:character-map in the
                        containing package.
It is a static error if a character
                     map references itself, directly or indirectly, via a name in the
                        use-character-maps attribute.
A non-schema-aware
                        processor
                     must raise a static
                        error if a package includes an
                        xsl:import-schema declaration.
A non-schema-aware
                        processor
                     must raise a static
                        error if a package includes an
                        [xsl:]type attribute; or an [xsl:]validation or
                        [xsl:]default-validation attribute with a value other than
                        strip, preserve, or
                           lax; or an
                           xsl:mode element whose typed attribute is
                        equal to yes or strict; or an as
                              attribute whose value is a 
                              SequenceType that can only match
                        nodes with a type annotation other than xs:untyped or
                           xs:untypedAtomic (for example, as="element(*,
                           xs:integer)").
It is a static error if the number of
                        xsl:merge-key children of a
                        xsl:merge-source element is not equal to the number of
                        xsl:merge-key children of another
                        xsl:merge-source child of the same
                        xsl:merge instruction.
It is a static error if after evaluating each
                                    xsl:package-location declaration and implementation-defined package location, no 
                               priority package location is found.
It is a static error if the package manifest returned by the priority package location does not conform to the
                                rules of the implicit or explicit value of attribute
                                    format.
It is a static error if the package manifest returned by the priority package location does not conform to the
                                name and version specified in an xsl:use-package
                                declaration.
It is a static error if the attribute archive-type
                               is present without the attribute path-in-archive, or if it does not have the
                               value zip or an implementation-defined value.
It is a static error if a package is dependent on
                        itself, where package A is defined as being dependent on package
                           B if A contains an xsl:use-package
                        declaration that references B, or if A contains an
                           xsl:use-package declaration that references a package
                           C that is itself dependent on B.
It is a static error if an xsl:use-package
                  declaration appears in a stylesheet module that is not in the
                  same stylesheet level as the principal stylesheet module
                  of the package.
It is a static error if the
                           explicit exposed visibility of a component is inconsistent with its
                           declared visibility, as defined in the above table. (This error occurs
                           only when the component declaration has an explicit
                              visibility attribute, and the component is also listed
                           explicitly by name in an xsl:expose declaration.)
It is a static error if a token
                           in the names attribute of xsl:expose, other
                           than a wildcard, matches no component in the containing package.
It is a static error if the 
                           component attribute of xsl:expose specifies *
                           (meaning all component kinds) and the names attribute is not a wildcard.
It is a static error if the
                           effect of an xsl:expose declaration would be to make a component
                           abstract, unless the component is already abstract
                           in the absence of the xsl:expose declaration.
                        
It is a static error if a token
                           in the names attribute of xsl:accept, other
                           than a wildcard, matches no component in the used package.
It is a static error if the 
                           component attribute of xsl:accept specifies *
                           (meaning all component kinds) and the names attribute is not a wildcard.
It is a static error if the
                           visibility assigned to a component by an xsl:accept
                           element is incompatible with the visibility of the corresponding
                           component in the used package, as defined by the above table, unless the
                           token that matches the component name is a wildcard, in which case the
                              xsl:accept element is treated as not matching that
                           component.
It is a static error if the
                              xsl:use-package elements in a package manifest cause two or more
                              homonymous components to be
                           accepted with a visibility other than hidden.
It is a static error if
                                 a token in the names attribute of xsl:accept,
                                 other than a wildcard, matches the symbolic name of a component declared
                                 within an xsl:override child of the same
                                 xsl:use-package element.
It is a static error if a
                           component declaration appearing as a child of
                              xsl:override is homonymous with any other declaration in the using package,
                           regardless of import
                              precedence, including any other overriding declaration in
                           the package manifest of the using package.
It is a static error if a
                           component declaration appearing as a child of
                              xsl:override does not match (is not homonymous with) some component in the
                           used package.
It is a static error if the
                           component referenced by an xsl:override declaration has
                              visibility other than
                              public or abstract
It is a static error if the signature of an overriding component is not compatible with the signature of the component that it is overriding.
It is a static error to use the
                           component reference xsl:original when the overridden
                           component has visibility="abstract".
It is a static error if a
                              top-level package (as
                           distinct from a library
                              package) contains 
                           components whose visibility is abstract.
It is a static error, 
                           when the effective value of the declared-modes attribute of 
                           an xsl:package element is yes, if the 
                           package contains an explicit reference to an undeclared mode, or if 
                           it implicitly uses the unnamed mode and the unnamed mode is undeclared.
It is a static error if more than
                        one xsl:global-context-item declaration appears within a
                           stylesheet module, or if several modules within a
                        single package contain inconsistent
                           xsl:global-context-item declarations
It is a static error if the as attribute is
                        present  [on the xsl:context-item
                           element]  when use="absent" is specified.
It is a static error if the as attribute is
                        present  [on the xsl:global-context-item
                           element]  when use="absent" is specified.
It is a static error if a template
                        rule applicable to a mode that is defined with typed="strict"
                        uses a match pattern that contains a RelativePathExprP whose
                        first StepExprP is an AxisStepP whose
                           ForwardStepP uses an axis whose principal node kind is
                           Element and whose NodeTest is an
                           EQName that does not correspond to the name of any global
                        element declaration in the in-scope schema components.
It is a static error if an
                        xsl:break or xsl:next-iteration element
                     appears other than in a tail position
                     within the sequence
                        constructor forming the body of an xsl:iterate
                     instruction.
It is a static error if the
                        select attribute of xsl:break or
                        xsl:on-completion is present and the instruction has
                     children.
It is a static error if the
                        name attribute of an xsl:with-param child of
                     an xsl:next-iteration element does not match the
                        name attribute of an xsl:param child of the
                        innermost containing
                        xsl:iterate instruction.
It is a static error if the
                        select attribute of the xsl:try element is
                     present and the element has children other than xsl:catch and
                        xsl:fallback elements.
It is a static error if the
                        select attribute of the xsl:catch element is
                     present unless the element has empty content.
For the elements xsl:sequence, xsl:on-empty,
                     xsl:on-non-empty, xsl:when,
                     xsl:otherwise, xsl:matching-substring,
                     xsl:non-matching-substring, xsl:map,
                     xsl:map-entry, xsl:array,
                     xsl:array-member, and xsl:result-document,
                     it is a static error if the
                        select attribute is present
                     and the instruction has children other than xsl:fallback.
It is a static error if two sibling
                        xsl:merge-source elements have the same name.
If the for-each-item attribute is present then the
                        for-each-source, use-accumulators, and streamable attributes
                     must all be absent. If either or both of the
                        use-accumulators or streamable attributes is present 
                     then the for-each-source attribute must be present. If the
                        for-each-source attribute is present then the
                     for-each-item attribute must be absent. 
                     
It is a static error if an
                        xsl:merge-key element with a select attribute
                     has non-empty content.
It is a static errorXT if the list of
                        accumulator names  [in the use-accumulators
                           attribute]  contains an invalid token, contains the same
                        token more than once, or contains the token #all along with any
                        other value; or if any token (other than
                              #all) is not the name of a  accumulator visible in the containing
                           package.
It is a static errorXT for a package to contain two or more accumulators with the same expanded QName and the same import precedence, unless there is another accumulator with the same expanded QName, and a higher import precedence.
It is a static errorXT for a 
                        an xsl:accumulator-rule element to specify
                     capture="yes" unless it also specifies phase="end".
In the case of a template rule (that is, an
                           xsl:template element having a match
                        attribute) appearing as a child of xsl:override, it is a
                           static error if the list of
                        modes in the mode attribute contains #all or
                           #unnamed, or if it contains #default and the
                        default mode is the unnamed mode, or if the
                           mode attribute is omitted when the default mode is the
                           unnamed mode.
It is a static error if a
                           variable declared with static="yes" is inconsistent with
                           another static variable of the same name that is declared earlier in
                           stylesheet tree order and that has lower import precedence.
It is a static error if an
                              xsl:apply-imports element appears in a template rule declared within an
                              xsl:override element. (To invoke the template rule
                           that is being overridden, xsl:next-match should
                           therefore be used.)
It is a static error if the
                     current-merge-group function is used within a pattern.
It is a static error if the
                     current-merge-key-array or
                  current-merge-key function 
                  is used within a pattern.
It is a static error if a parameter to xsl:iterate is
                                 implicitly mandatory.
It is a static error if an xsl:mode
                     declaration with one or more xsl:template children has no name
                     attribute.
It is a static error if an xsl:mode
                     declaration has a child xsl:template element with a name attribute,
                     with a mode attribute, or with no match attribute.
It is a static error if an xsl:mode
                     declaration having one or more child xsl:template elements has a default-mode
                     attribute whose value differs from its name attribute, or if any of those child xsl:template 
                     elements has a default-mode attribute that differs from the name attribute
                     of the xsl:mode declaration.
It is a static error if a
                     package contains both (a) an xsl:mode
                     declaration having one or more child xsl:template elements, and (b) 
                     an xsl:template declaration that is not
                     one of those children but that references that xsl:mode declaration in its
                     mode attribute.
It is a static error if a
                     package contains (a) an xsl:mode
                     declaration having one or more child xsl:template elements, and (b) 
                     a second xsl:mode declaration having the same name and the same
                     import precedence.
It is a static error if a package contains two 
                     xsl:item-type or xsl:record-type
                     declarations having the same name and the same import
                        precedence, unless there is another definition with the same
                     name and higher import precedence. It is also a static error if the name
                  of the item type uses a reserved namespace, or if it has the same
                  name as a type in the in-scope schema typesXP of
                  the static context.
It is a static error for an item type named
                     N to contain in its as attribute a reference to N,
                     or to an item type that references N directly or indirectly.
It is a static error if a template rule
                        R has an as attribute S, 
                        and the template rule is applicable
                        to a mode M that is declared with an as attribute T,
                        and the sequence type S is not a subtype of the sequence type T as defined
                     by the relationship subtype(S, T) in [XPath 4.0] section 3.3.1 Subtypes of Sequence Types.
It is a static error if the value
                  of any [xsl:]schema-role in a stylesheet package does
                  not match the value of the role attribute on some
                  xsl:import-schema element in the same package.
It is a static error 
                     if the names of the fields in an xsl:record-type
                     declaration are not distinct.
It is a static error 
                     if an xsl:field element has a default
                     attribute unless it specifies required="no".
Type errors
It is a type error if the result sequence contains a function item.
It is a type error if the result of evaluating the sequence constructor cannot be coerced to the required type.
It is a type error if an
                        xsl:apply-templates instruction with no select
                     attribute is evaluated when the context
                        item is not a node. 
It is a type error if the supplied value of a variable cannot be converted to the required type.
It is a type error if the conversion of the supplied value of a parameter, or of the context item, does not match the required type, after applying any permitted conversions.
If the as attribute  [of
                              xsl:function
                        ]  is specified, then the result evaluated by the sequence constructor (see
                           5.7 Sequence Constructors) is converted to the required
                        type, using the coercion rules. It is a type
                           error if this conversion fails.
It is a type error to use the
                           xsl:copy instruction with no select
                        attribute when the context item is absent. 
It is a type error to use the
                           xsl:copy or xsl:copy-of instruction to
                        copy a node that has namespace-sensitive content if the
                           copy-namespaces attribute has the value no and
                        its explicit or implicit validation attribute has the value
                           preserve. It is also a type error if either of these
                        instructions (with validation="preserve") is used to copy an
                        attribute having namespace-sensitive content, unless the parent element is
                        also copied. A node has namespace-sensitive content if its typed value
                        contains an item of type xs:QName or xs:NOTATION
                        or a type derived therefrom. The reason this is an error is because the
                        validity of the content depends on the namespace context being
                        preserved.
It is a type error if the
                        xsl:number instruction is evaluated, with no
                        value or select attribute, when the context item is not a node. 
It is a type error if the result of
                     evaluating the select attribute of the xsl:number
                     instruction is anything other than a single node.
It is a type error if the result of
                     evaluating the group-adjacent expression is an empty sequence or a
                     sequence containing more than one item, unless
                           composite="yes" is specified.
If the validation attribute of an
                                 xsl:element, xsl:attribute,
                                 xsl:copy, xsl:copy-of, or
                                 xsl:result-document instruction, or the
                                 xsl:validation attribute of a literal result element, has
                              the effective value strict, and schema validity assessment
                              concludes that the validity of the element or attribute is invalid or
                              unknown, a type error occurs. As
                              with other type errors, the error may be raised
                              statically if it can be detected statically. 
If the validation attribute of an
                                 xsl:element, xsl:attribute,
                                 xsl:copy, xsl:copy-of, or
                                 xsl:result-document instruction, or the
                                 xsl:validation attribute of a literal result element, has
                              the effective value strict, and there is no matching
                              top-level declaration in the schema, then a type error occurs. As with other type errors, the error
                                 may be raised statically if it can be detected
                              statically. 
If the validation attribute of an
                                 xsl:element, xsl:attribute,
                                 xsl:copy, xsl:copy-of, or
                                 xsl:result-document instruction, or the
                                 xsl:validation attribute of a literal result element, has
                              the effective value lax, and schema validity assessment
                              concludes that the element or attribute is invalid, a type error occurs. As with other type
                              errors, the error may be raised statically if it can
                              be detected statically. 
It is a type error if the value of
                           the type attribute of an xsl:copy or
                              xsl:copy-of instruction refers to a complex type
                           definition and one or more of the items being copied is an attribute
                           node.
It is a type error if an
                              [xsl:]type attribute is defined for a constructed element
                           or attribute, and the outcome of schema validity assessment against that
                           type is that the validity property of that element or
                           attribute information item is other than valid.
A type error occurs if a
                              type or validation attribute is defined
                           (explicitly or implicitly) for an instruction that constructs a new
                           attribute node, if the effect of this is to cause the attribute value to
                           be validated against a type that is derived from, or constructed by list
                           or union from, the primitive types xs:QName or
                              xs:NOTATION.
A type error occurs [when a document node is validated] unless the children of the document node comprise exactly one element node, no text nodes, and zero or more comment and processing instruction nodes, in any order.
It is a type error if, when validating a document node, document-level constraints (such as ID/IDREF constraints) are not satisfied.
It is a type error if some item selected
                     by a particular merge key in one input sequence is not comparable using the
                     XPath le operator with the corresponding item selected by the corresponding
                     sort key in another input sequence.
It is a type error if the
                           xsl:context-item child of xsl:template
                        specifies that a context item is required and none is supplied by the
                        caller, that is, if the context item is absent at the point where
                           xsl:call-template is evaluated.
It is a type error if an
                           xsl:apply-templates instruction in a particular
                           mode selects an element or attribute whose type is
                           xs:untyped or xs:untypedAtomic when the
                           typed attribute of that mode specifies the value
                           yes, strict, or lax.
It is a type error if an
                           xsl:apply-templates instruction in a particular
                           mode selects an element or attribute whose type is anything
                        other than xs:untyped or xs:untypedAtomic when the
                           typed attribute of that mode specifies the value
                           no.
It is a type error if the
                     result of evaluating the expression in the with-params
                     attribute of the xsl:evaluate instruction is
                     anything other than a single map of type
                     map(xs:QName, item()*).
It is a type error if the
                                    result of evaluating the namespace-context
                                    attribute of the xsl:evaluate instruction is
                                    anything other than a single node.
It is a type error if the result of
                        evaluating the select expression  [of the
                              xsl:copy element]  is a sequence of more
                        than one item.
A type error occurs if the result of the input sequence
                         [of an xsl:map instruction]  is
                     not an instance of the required type map(*)*.
A type error is raised if the
                           result of evaluating the select expression or contained
                           sequence constructor of an xsl:array
                           instruction is not an instance of one of the following sequence types:
                           empty-sequence(), xs:anyAtomicType+, node()+,
                           or record(value as item()*, *)+. As
                           with other type errors, the error may be raised
                           statically if it can be detected statically. 
Dynamic errors
It is a dynamic error if the effective value of an attribute written using curly brackets, in a position where an attribute value template is permitted, is a value that is not one of the permitted values for that attribute. If the processor is able to detect the error statically (for example, when any XPath expressions within the curly brackets can be evaluated statically), then the processor may optionally raise this as a static error.
It is a  dynamic error if the invocation of
                        the stylesheet specifies a template
                        name that does not match the expanded
                           QName of a named template defined in the stylesheet, whose
                           visibility is public or final.
It is a dynamic error if the invocation of the stylesheet specifies a function name and
                        arity that does not match the expanded
                           QName and arity of a named stylesheet function defined in the stylesheet, whose visibility is
                           public or final.
It is a dynamic error if the invocation of the stylesheet specifies an initial mode when no initial match selection is supplied (either explicitly, or defaulted to the global context item).
It is a dynamic error if the invocation of the stylesheet specifies an initial mode and the specified mode is not eligible as an initial mode (as defined above).
It is a dynamic error if a stylesheet declares a visible stylesheet parameter that is explicitly or implicitly mandatory, and no value for this parameter is supplied when the stylesheet is primed. A stylesheet parameter is visible if it is not masked by another global variable or parameter with the same name and higher import precedence. If the parameter is a static parameter then the value must be supplied prior to the static analysis phase.
It is a dynamic error if an element has an effective version of V (with V < 4.0) when the implementation does not support backwards compatible behavior for XSLT version V.
Where the result of evaluating an XPath expression (or an attribute value template) is required to be a lexical QName, or if it is permitted to be a lexical QName and the actual value takes the form of a lexical QName, then unless otherwise specified it is a dynamic error if the value has a prefix and the defining element has no namespace node whose name matches that prefix. This error may be raised as a static error if the value of the expression can be determined statically.
It is a dynamic error if the sequence used to construct the content of an element node contains a namespace node or attribute node that is preceded in the sequence by a node that is neither a namespace node nor an attribute node.
It is a dynamic error if the sequence used to construct the content of a document node contains a namespace node or attribute node.
It is a dynamic error if the sequence contains two or more namespace nodes having the same name but different string values (that is, namespace nodes that map the same prefix to different namespace URIs).
It is a dynamic error if the sequence contains a namespace node with no name and the element node being constructed has a null namespace URI (that is, it is an error to define a default namespace when the element is in no namespace).
It is a  dynamic error if the
                                 conflict resolution algorithm for template rules leaves more than
                                 one matching template rule  when the
                                    declaration of the relevant mode has an on-multiple-match
                                    attribute with the value fail.
It is a  dynamic error if
                           xsl:apply-templates, xsl:apply-imports
                        or xsl:next-match is used to process 
                        an item using a mode
                        whose declaration specifies on-no-match="fail" when there is no
                           template rule in the stylesheet
                        whose match pattern matches that item. 
It is a  dynamic error if
                        xsl:apply-imports or xsl:next-match is
                     evaluated when the current template
                        rule is absent.
It is a dynamic error if a call
                        on the apply-templates function selects a mode
                        that is not explicitly declared in the containing package, or accepted
                        from a used package, or whose visibility is private.
In general, a circularity in a stylesheet is a dynamic error.
It is a dynamic error if a template that has an explicitly mandatory or implicitly mandatory parameter is invoked without supplying a value for that parameter.
It is a  dynamic error if the effective value of the
                           name attribute  [of the
                              xsl:element instruction]  is not a
                           lexical QName. 
In the case of an xsl:element instruction with no
                           namespace attribute, it is a  dynamic
                           error if the effective
                           value of the name attribute is a lexical QName whose prefix is not
                        declared in the applicable static namespaces for the
                           xsl:element instruction.
 It is a  dynamic error if the effective value of the
                           namespace attribute  [of the
                              xsl:element instruction]  is not in the
                        lexical space of the xs:anyURI datatype or if it is the string
                           http://www.w3.org/2000/xmlns/.
It is a  dynamic error if the effective value 
                     of the name
                     attribute  [of an xsl:attribute
                        instruction]  is not a lexical
                        QName.
In the case of an xsl:attribute instruction with no
                        namespace attribute, it is a  dynamic
                        error if the effective
                        value of the name attribute is the string
                        xmlns.
In the case of an xsl:attribute instruction with no
                        namespace attribute, it is a  dynamic
                        error if the effective
                        value of the name attribute is a lexical QName whose prefix is not declared
                     in the applicable static namespaces 
                     for the xsl:attribute
                     instruction.
 It is a  dynamic error if the effective value of the
                        namespace attribute  [of the
                           xsl:attribute instruction]  is not in the
                     lexical space of the xs:anyURI datatype or if it is the string
                        http://www.w3.org/2000/xmlns/.
It is a  dynamic error if the effective value of the name
                     attribute  [of the xsl:processing-instruction
                        instruction]  is not both an NCNameNames and a PITargetXML.
It is a  dynamic error if the string value of
                     the new namespace node is not valid in the lexical space of the datatype
                        xs:anyURI, or if it is the string
                        http://www.w3.org/2000/xmlns/.
It is a  dynamic error if the effective value of the name
                     attribute  [of the xsl:namespace
                        instruction]  is neither a zero-length string nor an NCNameNames, or if it is xmlns.
                  
It is a  dynamic error if the
                        xsl:namespace instruction generates a namespace node whose
                     name is xml and whose string value is not
                        http://www.w3.org/XML/1998/namespace, or a namespace node whose
                     string value is http://www.w3.org/XML/1998/namespace and whose
                     name is not xml.
It is a  dynamic error if evaluating the
                        select attribute or the contained sequence constructor of an xsl:namespace
                     instruction results in a zero-length string. 
It is a  dynamic error if any undiscarded item
                     in the atomized sequence supplied as the value of the value
                     attribute of xsl:number cannot be converted to an integer, or
                     if the resulting integer is less than 0 (zero). 
It is a  dynamic error if, for any sort key component, the set of
                           sort key values evaluated for
                        all the items in the initial
                           sequence, after any type conversion requested, contains a pair
                        of atomic items for which the result of the XPath lt
                        operator is an error. If the processor is
                           able to detect the error statically, it may optionally
                           raise it as a static
                           error.
It is a  dynamic error if the
                           collation attribute of xsl:sort (after
                        resolving against the base URI) is not a URI that is recognized by the
                        implementation as referring to a collation.
It is a dynamic error if the
                     current-group function is used when the current group is
                     absent
                  , or when it is invoked in the course of evaluating a
                     pattern. The error may be reported statically if it
                  can be detected statically.
It is a dynamic error if the
                     current-grouping-key function is used when the current
                  grouping key is absent, or when it is invoked in the course of evaluating a pattern.
                  The error may be reported statically if it can be detected
                  statically.
It is a  dynamic error if the collation URI
                     specified to xsl:for-each-group (after resolving against the
                     base URI) is a collation that is not recognized by the implementation. (For
                     notes, [see ERR XTDE1035].)
It is a  dynamic error if the effective value
                     of the regex
                     attribute  [of the xsl:analyze-string
                        instruction]  does not conform to the
                        required syntax for regular expressions, as specified in
                        [Functions and Operators 4.0]. If the regular expression is known
                     statically (for example, if the attribute does not contain any expressions enclosed in curly brackets) then
                     the processor may raise the error as a static error. 
It is a  dynamic error if the effective value of the flags
                     attribute  [of the xsl:analyze-string
                        instruction]  has a value other than the values defined in
                        [Functions and Operators 4.0]. If the value of the attribute is known
                     statically (for example, if the attribute does not contain any expressions enclosed in curly brackets) then
                     the processor may raise the error as a static error. 
When a URI reference  [supplied to the document
                     function]  contains a fragment identifier, it is a dynamic error if the media type is not one that is recognized by the
                  processor, or if the fragment identifier does not conform to the rules for
                  fragment identifiers for that media type, or if the fragment identifier selects
                  something other than a sequence of nodes (for example, if it selects a range of
                  characters within a text node). 
When a URI reference  [supplied to the document
                     function]  is a relative reference, it is a dynamic error if no base URI is available to
                  resolve the relative reference. This can arise for example when the URI is
                  contained in a node that has no base URI (for example a parentless text node), or
                  when the second argument to the function is a node that has no base URI, or when
                  the base URI from the static context is undefined. 
It is a  dynamic error if the value
                     of $key-name is not a valid QName, or if there is no namespace
                  declaration in scope for the prefix of the QName, or if the name obtained by
                  expanding the QName is not the same as the expanded name of any
                     xsl:key declaration in the containing package. If the
                  processor is able to detect the error statically (for example, when the argument
                  is supplied as a string literal), then the processor may
                  optionally raise this as a static
                  error.
It is a dynamic
                        error if the key identified in a call to the function map-for-key
               is unsuitable because it uses a collation other than the Unicode Codepoint Collation, or because
               it is defined with composite=yes.
It is a dynamic
                        error to call the key function with
                  two arguments if there is no context
                  node, or if the root of the tree containing the context node is not a
                  document node; or to call the function with three arguments if the root of the
                  tree containing the node supplied in the third argument is not a document
                  node.
If the current function is evaluated within an expression
                  that is evaluated when the context item is absent, a 
                     dynamic error occurs.
It is a dynamic error if $node,
                  or the context item if the second argument is omitted,
                  is a node in a tree whose root is not a document node.
It is a dynamic error if $node,
                  or the context item if the second argument is omitted,
                  is a node in a tree whose root is not a document node.
It is a  dynamic error if the value supplied as
                  the $property-name argument  [to the
                        system-property function]  is not a valid
                  QName, or if there is no namespace declaration in scope for the prefix of the
                  QName. If the processor is able to detect the error statically (for example, when
                  the argument is supplied as a string literal), then the processor
                     may optionally raise this as a static error. 
It is a  dynamic error if the 
                  $name argument
                      [passed to the function-available
                     function]  evaluates to a string that is not a valid
                  EQName, or if the value is a
                  lexical QName with a prefix for which no
                  namespace declaration is present in the static context. If the processor is able
                  to detect the error statically (for example, when the argument is supplied as a
                  string literal), then the processor may optionally raise this
                  as a static error.
It is a dynamic error if the arguments supplied to a call on an extension function do not satisfy the rules defined for that particular extension function, or if the extension function raises an error, or if the result of the extension function cannot be converted to an XPath value.
When the containing element is processed with XSLT 1.0 behavior, it is a dynamic error to evaluate an extension function call if no implementation of the extension function is available.
It is a  dynamic error if the argument
                      [passed to the type-available
                     function]  evaluates to a string that is 
                        not a valid EQName, or if the 
                  value is a lexical QName with a prefix for which no
                  namespace declaration is present in the static context. If the processor is able
                  to detect the error statically (for example, when the argument is supplied as a
                  string literal), then the processor may optionally raise this
                  as a static error.
It is a  dynamic error if the argument
                      [passed to the element-available
                     function]  evaluates to a string that is 
                        not a valid EQName, or if the value 
                  is a lexical QName with a prefix for which no
                  namespace declaration is present in the static context. If the processor is able
                  to detect the error statically (for example, when the argument is supplied as a
                  string literal), then the processor may optionally raise this
                  as a static error.
When a processor performs fallback for
                        an extension instruction
                        that is not recognized, if the instruction element has one or more
                           xsl:fallback children, then the content of each of the
                           xsl:fallback children must be
                        evaluated; it is a  dynamic error if it has no
                           xsl:fallback children.
It is a  dynamic error if the effective value of the
                        format attribute  [of an
                           xsl:result-document element]  is not a valid
                        EQName, or if it does not match the
                        expanded QName of an output definition in the containing package. If the processor is able to detect
                     the error statically (for example, when the format attribute
                     contains no curly brackets), then the processor may
                     optionally raise this as a static
                        error.
It is a  dynamic error to evaluate the
                        xsl:result-document instruction in temporary output state.
It is a dynamic error for a transformation to generate two or more final result trees with the same URI.
It is a dynamic error for a stylesheet to write to an external resource and read from the same resource during a single transformation, if the same absolute URI is used to access the resource in both cases.
A dynamic error may be raised if the input to the processor includes an item that requires availability of an optional feature that the processor does not provide.
It is a dynamic
                        error if there are two xsl:merge-key elements
                     that occupy corresponding positions among the xsl:merge-key
                     children of two different xsl:merge-source elements and that
                     have differing effective values for
                     any of the attributes lang, order,
                        collation, case-order, or data-type.
                     Values are considered to differ if  
                     they have different effective values. 
                     In the case of the collation attribute, the values are
                     compared as absolute URIs after resolving against the base URI. The error
                        may be raised statically if it is detected
                     statically.
It is a dynamic error if any input
                     sequence to an xsl:merge instruction contains two items that
                     are not correctly sorted according to the merge key values defined on the
                        xsl:merge-key children of the corresponding
                        xsl:merge-source element, when compared using the collation
                     rules defined by the attributes of the corresponding
                        xsl:merge-key children of the xsl:merge
                     instruction, unless the attribute sort-before-merge is present
                     with the value yes.
It is a dynamic error if an invocation of an abstract component is evaluated.
It is a dynamic error if an
                        xsl:global-context-item declaration specifies
                     use="required", and no global context item is supplied.
It is a  dynamic error if the target expression
                      [of an xsl:evaluate instruction]  is
                     not a valid expression (that is, if a static error occurs when analyzing the string
                     according to the rules of the XPath specification).
It is a dynamic error if an
                           xsl:evaluate instruction is evaluated when use of
                           xsl:evaluate has been statically or dynamically
                        disabled. 
It is a dynamic error if the value of the first
                     argument to the accumulator-before or
                        accumulator-after function is 
                  a string that is not a valid
                     EQName, or if there is no namespace declaration in scope
                  for the prefix of the QName, or if the name obtained by expanding the QName is not
                  the same as the expanded name of any xsl:accumulator declaration
                  appearing in the package in which the function
                  call appears. If the processor is able to detect the error statically (for
                  example, when the argument is supplied as a string literal), then the processor
                     may optionally raise this as a static error.
It is a dynamic error to call the
                     accumulator-before or
                     accumulator-after function when there is no context item.
It is a type error to call the
                     accumulator-before or
                     accumulator-after function when the context item is 
                  not a node, or when it is an attribute or namespace node.
It is a dynamic error to call the
                     accumulator-before or
                     accumulator-after function when the context
                  item is a node in a tree to which the selected accumulator is not
                  applicable (including the case where it is not applicable
                     because the document is streamed and the accumulator is not 
                  declared with streamable="yes"). Implementations
                  may raise this error but are not required to do so,
                  if they are capable of streaming documents without imposing this restriction.
In the absence of the [xsl:]duplicates attribute, 
                     a dynamic error occurs if the set of
                     keys in the maps making up the input sequence
                       [of an xsl:map or xsl:record instruction] 
                     contains duplicates.
It is an error if there is a cyclic set of dependencies among accumulators such that the (pre- or post-descent) value of an accumulator depends directly or indirectly on itself. A processor may report this as a static error if it can be detected statically. Alternatively a processor may report this as a dynamic error. As a further option, a processor may fail catastrophically when this error occurs.
It is a dynamic error if the
                     current-merge-group function is used when the current
                  merge group is absent. The error
                     may be reported statically if it can be detected
                  statically.
It is a dynamic error if the
                     $source argument of the current-merge-group
                  function (when supplied)
                  does not match the name attribute of any
                     xsl:merge-source element for the current merge operation. The
                  error may be reported statically if it can be detected
                  statically.
It is a dynamic error if the
                     current-merge-key-array or 
                  current-merge-key function is used when the current
                  merge key is absent, or when it is invoked
                  in the course of evaluating a pattern. The error may be
                  reported statically if it can be detected statically.
It is a dynamic error if an xsl:try
                        instruction is unable to recover the state of a final result tree because
                        recovery has been disabled by use of the attribute
                           rollback-output="no".
When a transformation is terminated by use of <xsl:message
                        terminate="yes"/>, the effect is the same as when a 
                        dynamic error occurs during the transformation. The default error code is XTMM9000; this may be
                        overridden using the error-code attribute of the
                           xsl:message instruction.
When a transformation is terminated by use of xsl:assert, the
                     effect is the same as when a  dynamic error occurs during the
                     transformation. The default error code is XTMM9001; this may be
                     overridden using the error-code attribute of the
                        xsl:assert instruction.
This appendix gives the grammar for XSLT patterns. The top-level rule for patterns is Pattern.
This is an extension of the grammar for XPath expressions. The extended BNF notation is explained at [XPath 4.0] section A.1.1 Notation.
Productions that are identical to their counterparts in XPath 4.0 are suffixed
         XP and link to the corresponding production in the XPath 4.0 specification.
         Productions whose names end with P are restrictions of the corresponding
         XPath production: for example, ArgumentListP is a restricted form of the
         XPath production ArgumentList.
| AbbrevForwardStepP | ::= | ("@"  NodeTestXP)  |  SimpleNodeTestXP | 
| AbbreviatedStep | ::= | ".."  |  ("@"  NodeTestXP)  |  SimpleNodeTestXP | 
| AbsolutePathExpr | ::= | ("/"  RelativePathExprXP?)  |  ("//"  RelativePathExprXP) | 
| AdditiveExpr | ::= | MultiplicativeExprXP  (("+"  |  "-")  MultiplicativeExprXP)* | 
| AndExpr | ::= | ComparisonExprXP  ("and"  ComparisonExprXP)* | 
| AnyArrayType | ::= | "array"  "("  "*"  ")" | 
| AnyFunctionType | ::= | ("function"  |  "fn")  "("  "*"  ")" | 
| AnyItemTest | ::= | "item"  "("  ")" | 
| AnyMapType | ::= | "map"  "("  "*"  ")" | 
| AnyNodeKindTest | ::= | "node"  "("  ")" | 
| AnyRecordType | ::= | "record"  "("  "*"  ")" | 
| Argument | ::= | ExprSingleXP  |  ArgumentPlaceholderXP | 
| ArgumentList | ::= | "("  ((PositionalArgumentsXP  (","  KeywordArgumentsXP)?)  |  KeywordArgumentsXP)?  ")" | 
| ArgumentListP | ::= | "("  (ArgumentP ** ",")  ")" | 
| ArgumentP | ::= | VarRefXP  |  LiteralXP | 
| ArgumentPlaceholder | ::= | "?" | 
| ArrayConstructor | ::= | SquareArrayConstructorXP  |  CurlyArrayConstructorXP | 
| ArrayType | ::= | AnyArrayTypeXP  |  TypedArrayTypeXP | 
| ArrowExpr | ::= | UnaryExprXP  (SequenceArrowTargetXP  |  MappingArrowTargetXP)* | 
| ArrowTarget | ::= | FunctionCallXP  |  RestrictedDynamicCallXP | 
| AttributeName | ::= | EQNameXP | 
| AttributeTest | ::= | "attribute"  "("  (NameTestUnionXP  (","  TypeNameXP)?)?  ")" | 
| Axis | ::= | ("ancestor"  |  "ancestor-or-self"  |  "attribute"  |  "child"  |  "descendant"  |
                              "descendant-or-self"  |  "following"  |  "following-or-self"  |  "following-sibling"
                              |  "following-sibling-or-self"  |  "namespace"  |  "parent"  |  "preceding"  |  "preceding-or-self"
                              |  "preceding-sibling"  |  "preceding-sibling-or-self"  |  "self")  "::" | 
| AxisStep | ::= | (AbbreviatedStepXP  |  FullStepXP)  PredicateXP* | 
| AxisStepP | ::= | ForwardStepP  PredicateXP* | 
| BracedAction | ::= | EnclosedExprXP | 
| CastableExpr | ::= | CastExprXP  ("castable"  "as"  CastTargetXP  "?"?)? | 
| CastExpr | ::= | PipelineExprXP  ("cast"  "as"  CastTargetXP  "?"?)? | 
| CastTarget | ::= | TypeNameXP | 
| ChoiceItemType | ::= | "("  (ItemTypeXP ++ "|")  ")" | 
| CommentTest | ::= | "comment"  "("  ")" | 
| ComparisonExpr | ::= | OtherwiseExprXP  ((ValueCompXP  |  GeneralCompXP  |  NodeCompXP)  OtherwiseExprXP)? | 
| Constant | ::= | StringLiteralXP  |  ("-"?  NumericLiteralXP)  |  QNameLiteralXP  |  ("true"  "("  ")")  |  ("false"  "("  ")") | 
| ContextValueRef | ::= | "." | 
| CurlyArrayConstructor | ::= | "array"  EnclosedExprXP | 
| DocumentTest | ::= | "document-node"  "("  (ElementTestXP  |  SchemaElementTestXP  |  NameTestUnionXP)?  ")" | 
| DynamicFunctionCall | ::= | PostfixExprXP  PositionalArgumentListXP | 
| ElementName | ::= | EQNameXP | 
| ElementTest | ::= | "element"  "("  (NameTestUnionXP  (","  TypeNameXP  "?"?)?)?  ")" | 
| EnclosedExpr | ::= | "{"  ExprXP?  "}" | 
| EnumerationType | ::= | "enum"  "("  (StringLiteralXP ++ ",")  ")" | 
| EQName | ::= | QName  |  URIQualifiedNameXP | 
| Expr | ::= | (ExprSingleXP ++ ",") | 
| ExprSingle | ::= | ForExprXP | 
| ExtensibleFlag | ::= | ","  "*" | 
| FieldDeclaration | ::= | FieldNameXP  "?"?  ("as"  SequenceTypeXP)? | 
| FieldName | ::= | NCNameXP  |  StringLiteralXP | 
| FilterExpr | ::= | PostfixExprXP  PredicateXP | 
| FilterExprAM | ::= | PostfixExprXP  "?["  ExprXP  "]" | 
| ForBinding | ::= | ForItemBindingXP  |  ForMemberBindingXP  |  ForEntryBindingXP | 
| ForClause | ::= | "for"  (ForBindingXP ++ ",") | 
| ForEntryBinding | ::= | ((ForEntryKeyBindingXP  ForEntryValueBindingXP?)  |  ForEntryValueBindingXP)  PositionalVarXP?  "in"  ExprSingleXP | 
| ForEntryKeyBinding | ::= | "key"  VarNameAndTypeXP | 
| ForEntryValueBinding | ::= | "value"  VarNameAndTypeXP | 
| ForExpr | ::= | ForClauseXP  ForLetReturnXP | 
| ForItemBinding | ::= | VarNameAndTypeXP  PositionalVarXP?  "in"  ExprSingleXP | 
| ForLetReturn | ::= | ForExprXP  |  LetExprXP  |  ("return"  ExprSingleXP) | 
| ForMemberBinding | ::= | "member"  VarNameAndTypeXP  PositionalVarXP?  "in"  ExprSingleXP | 
| ForwardAxisP | ::= | ("child"  "::") | 
| ForwardStepP | ::= | (ForwardAxisP  NodeTestXP)  |  AbbrevForwardStepP | 
| FullStep | ::= | AxisXP  NodeTestXP | 
| FunctionBody | ::= | EnclosedExprXP | 
| FunctionCall | ::= | EQNameXP  ArgumentListXP | 
| /* xgs: reserved-function-names */ | ||
| /* gn: parens */ | ||
| FunctionCallP | ::= | OuterFunctionName  ArgumentListP | 
| FunctionItemExpr | ::= | NamedFunctionRefXP  |  InlineFunctionExprXP | 
| FunctionSignature | ::= | "("  ParamListXP  ")"  TypeDeclarationXP? | 
| FunctionType | ::= | AnyFunctionTypeXP | 
| GeneralComp | ::= | "="  |  "!="  |  "<"  |  "<="  |  ">"  |  ">=" | 
| GNodeType | ::= | "gnode"  "("  ")" | 
| IfExpr | ::= | "if"  "("  ExprXP  ")"  (UnbracedActionsXP  |  BracedActionXP) | 
| InlineFunctionExpr | ::= | ("function"  |  "fn")  FunctionSignatureXP?  FunctionBodyXP | 
| InstanceofExpr | ::= | TreatExprXP  ("instance"  "of"  SequenceTypeXP)? | 
| IntersectExceptExpr | ::= | InstanceofExprXP  (("intersect"  |  "except")  InstanceofExprXP)* | 
| IntersectExceptPattern | ::= | PrimaryPattern  (("intersect"  |  "except")  PrimaryPattern)* | 
| ItemType | ::= | RegularItemTypeXP  |  FunctionTypeXP  |  TypeNameXP  |  ChoiceItemTypeXP | 
| JNodePattern | ::= | "jnode"  "("  JNodePatternSelector  ","  JNodePatternContent  ")"  PredicateXP* | 
| JNodePatternContent | ::= | "*"  |  SequenceTypeXP | 
| JNodePatternSelector | ::= | "*"  |  NCNameXP  |  Constant | 
| JNodeType | ::= | "jnode"  "("  SequenceTypeXP?  ")" | 
| KeySpecifier | ::= | NCNameXP  |  LiteralXP  |  ContextValueRefXP  |  VarRefXP  |  ParenthesizedExprXP  |  LookupWildcardXP | 
| KeywordArgument | ::= | EQNameXP  ":="  ArgumentXP | 
| KeywordArguments | ::= | (KeywordArgumentXP ++ ",") | 
| LetArrayBinding | ::= | "$"  "["  (VarNameAndTypeXP ++ ",")  "]"  TypeDeclarationXP?  ":="  ExprSingleXP | 
| LetBinding | ::= | LetValueBindingXP  |  LetSequenceBindingXP  |  LetArrayBindingXP  |  LetMapBindingXP | 
| LetClause | ::= | "let"  (LetBindingXP ++ ",") | 
| LetExpr | ::= | LetClauseXP  ForLetReturnXP | 
| LetMapBinding | ::= | "$"  "{"  (VarNameAndTypeXP ++ ",")  "}"  TypeDeclarationXP?  ":="  ExprSingleXP | 
| LetSequenceBinding | ::= | "$"  "("  (VarNameAndTypeXP ++ ",")  ")"  TypeDeclarationXP?  ":="  ExprSingleXP | 
| LetValueBinding | ::= | VarNameAndTypeXP  ":="  ExprSingleXP | 
| Literal | ::= | NumericLiteralXP  |  StringLiteralXP  |  QNameLiteralXP | 
| Lookup | ::= | "?"  KeySpecifierXP | 
| LookupExpr | ::= | PostfixExprXP  LookupXP | 
| LookupWildcard | ::= | "*" | 
| MapConstructor | ::= | "map"?  "{"  (MapConstructorEntryXP ** ",")  "}" | 
| MapConstructorEntry | ::= | ExprSingleXP  (":"  ExprSingleXP)? | 
| MappingArrowTarget | ::= | "=!>"  ArrowTargetXP | 
| MapType | ::= | AnyMapTypeXP  |  TypedMapTypeXP | 
| MethodCall | ::= | PostfixExprXP  "=?>"  NCNameXP  PositionalArgumentListXP | 
| MultiplicativeExpr | ::= | UnionExprXP  (("*"  |  "×"  |  "div"  |  "÷"  |  "idiv"  |  "mod")  UnionExprXP)* | 
| NamedFunctionRef | ::= | EQNameXP  "#"  IntegerLiteral | 
| /* xgs: reserved-function-names */ | ||
| NamespaceNodeTest | ::= | "namespace-node"  "("  ")" | 
| NameTest | ::= | EQNameXP  |  WildcardXP | 
| NameTestUnion | ::= | (NameTestXP ++ "|") | 
| NodeComp | ::= | "is"  |  "is-not"  |  NodePrecedesXP  |  NodeFollowsXP  |  "precedes-or-is"  |  "follows-or-is" | 
| NodeFollows | ::= | ">>"  |  "follows" | 
| NodeKindTest | ::= | DocumentTestXP | 
| NodePrecedes | ::= | "<<"  |  "precedes" | 
| NodeTest | ::= | UnionNodeTestXP  |  SimpleNodeTestXP | 
| NumericLiteral | ::= | IntegerLiteral  |  HexIntegerLiteral  |  BinaryIntegerLiteral  |  DecimalLiteral  |  DoubleLiteral | 
| OccurrenceIndicator | ::= | "?"  |  "*"  |  "+" | 
| /* xgs: occurrence-indicators */ | ||
| OrExpr | ::= | AndExprXP  ("or"  AndExprXP)* | 
| OtherwiseExpr | ::= | StringConcatExprXP  ("otherwise"  StringConcatExprXP)* | 
| OuterFunctionName | ::= | EQNameXP | 
| ParamList | ::= | (VarNameAndTypeXP ** ",") | 
| ParenthesizedExpr | ::= | "("  ExprXP?  ")" | 
| ParenthesizedPattern | ::= | "("  Pattern  ")" | 
| PathExpr | ::= | AbsolutePathExprXP | 
| /* xgs: leading-lone-slash */ | ||
| PathExprP | ::= | RootedPath | 
| /* xgs: leading-lone-slash */ | ||
| PathPattern | ::= | PathExprP | 
| Pattern | ::= | UnionPattern | 
| PipelineExpr | ::= | ArrowExprXP  ("->"  ArrowExprXP)* | 
| PITest | ::= | "processing-instruction"  "("  (NCNameXP  |  StringLiteralXP)?  ")" | 
| PositionalArgumentList | ::= | "("  PositionalArgumentsXP?  ")" | 
| PositionalArguments | ::= | (ArgumentXP ++ ",") | 
| PositionalVar | ::= | "at"  VarNameXP | 
| PostfixExpr | ::= | PrimaryExprXP  |  FilterExprXP  |  DynamicFunctionCallXP  |  LookupExprXP  |  MethodCallXP  |  FilterExprAMXP | 
| PostfixExprP | ::= | (FunctionCallP  |  ParenthesizedPattern)  PredicateXP* | 
| Predicate | ::= | "["  ExprXP  "]" | 
| PredicatePattern | ::= | "."  PredicateXP* | 
| PrimaryExpr | ::= | LiteralXP | 
| PrimaryPattern | ::= | PredicatePattern  |  TypePattern  |  XNodePattern  |  JNodePattern | 
| QNameLiteral | ::= | "#"  EQNameXP | 
| QuantifiedExpr | ::= | ("some"  |  "every")  (QuantifierBindingXP ++ ",")  "satisfies"  ExprSingleXP | 
| QuantifierBinding | ::= | VarNameAndTypeXP  "in"  ExprSingleXP | 
| RangeExpr | ::= | AdditiveExprXP  ("to"  AdditiveExprXP)? | 
| RecordType | ::= | AnyRecordTypeXP  |  TypedRecordTypeXP | 
| RegularItemType | ::= | AnyItemTestXP  |  NodeKindTestXP  |  GNodeTypeXP  |  JNodeTypeXP  |  MapTypeXP  |  ArrayTypeXP  |  RecordTypeXP  |  EnumerationTypeXP | 
| RelativePathExpr | ::= | StepExprXP  (("/"  |  "//")  StepExprXP)* | 
| RelativePathExprP | ::= | StepExprP  (("/"  |  "//")  StepExprP)* | 
| RestrictedDynamicCall | ::= | (VarRefXP  |  ParenthesizedExprXP  |  FunctionItemExprXP  |  MapConstructorXP  |  ArrayConstructorXP)  PositionalArgumentListXP | 
| RootedPath | ::= | VarRefXP  PredicateXP*  (("/"  |  "//")  RelativePathExprP)? | 
| SchemaAttributeTest | ::= | "schema-attribute"  "("  AttributeNameXP  ")" | 
| SchemaElementTest | ::= | "schema-element"  "("  ElementNameXP  ")" | 
| Selector | ::= | EQNameXP  |  WildcardXP  |  ("get"  "("  ExprSingleXP  ")") | 
| SequenceArrowTarget | ::= | "=>"  ArrowTargetXP | 
| SequenceType | ::= | ("empty-sequence"  "("  ")") | 
| SimpleMapExpr | ::= | PathExprXP  ("!"  PathExprXP)* | 
| SimpleNodeTest | ::= | TypeTestXP  |  SelectorXP | 
| SquareArrayConstructor | ::= | "["  (ExprSingleXP ** ",")  "]" | 
| StepExpr | ::= | PostfixExprXP  |  AxisStepXP | 
| StepExprP | ::= | PostfixExprP  |  AxisStepP | 
| StringConcatExpr | ::= | RangeExprXP  ("||"  RangeExprXP)* | 
| StringTemplate | ::= | "`"  (StringTemplateFixedPartXP  |  StringTemplateVariablePartXP)*  "`" | 
| /* ws: explicit */ | ||
| StringTemplateFixedPart | ::= | ((Char - ('{' | '}' | '`'))  |  "{{"  |  "}}"  |  "``")+ | 
| /* ws: explicit */ | ||
| StringTemplateVariablePart | ::= | EnclosedExprXP | 
| TextTest | ::= | "text"  "("  ")" | 
| TreatExpr | ::= | CastableExprXP  ("treat"  "as"  SequenceTypeXP)? | 
| TypedArrayType | ::= | "array"  "("  SequenceTypeXP  ")" | 
| TypeDeclaration | ::= | "as"  SequenceTypeXP | 
| TypedFunctionParam | ::= | ("$"  EQNameXP  "as")?  SequenceTypeXP | 
| TypedFunctionType | ::= | ("function"  |  "fn")  "("  (TypedFunctionParamXP ** ",")  ")"  "as"  SequenceTypeXP | 
| TypedMapType | ::= | "map"  "("  ItemTypeXP  ","  SequenceTypeXP  ")" | 
| TypedRecordType | ::= | "record"  "("  (FieldDeclarationXP ** ",")  ExtensibleFlagXP?  ")" | 
| TypeName | ::= | EQNameXP | 
| TypePattern | ::= | (WrappedItemTest  |  AnyItemTestXP  |  FunctionTypeXP  |  MapTypeXP  |  ArrayTypeXP  |  RecordTypeXP  |  EnumerationTypeXP)  PredicateXP* | 
| TypeTest | ::= | RegularItemTypeXP  |  ("type"  "("  SequenceTypeXP  ")") | 
| UnaryExpr | ::= | ("-"  |  "+")*  ValueExprXP | 
| UnaryLookup | ::= | LookupXP | 
| UnbracedActions | ::= | "then"  ExprSingleXP  "else"  ExprSingleXP | 
| UnionExpr | ::= | IntersectExceptExprXP  (("union"  |  "|")  IntersectExceptExprXP)* | 
| UnionNodeTest | ::= | "("  (SimpleNodeTestXP ++ "|")  ")" | 
| UnionPattern | ::= | IntersectExceptPattern  (("union"  |  "|")  IntersectExceptPattern)* | 
| ValueComp | ::= | "eq"  |  "ne"  |  "lt"  |  "le"  |  "gt"  |  "ge" | 
| ValueExpr | ::= | SimpleMapExprXP | 
| VarName | ::= | "$"  EQNameXP | 
| VarNameAndType | ::= | "$"  EQNameXP  TypeDeclarationXP? | 
| VarRef | ::= | "$"  EQNameXP | 
| Wildcard | ::= | "*" | 
| /* ws: explicit */ | ||
| WrappedItemTest | ::= | "type"  ChoiceItemTypeXP | 
| XNodePattern | ::= | PathExprP | 
| IntegerLiteral | ::= | Digits | 
| /* ws: explicit */ | ||
| HexIntegerLiteral | ::= | "0x"  HexDigits | 
| /* ws: explicit */ | ||
| BinaryIntegerLiteral | ::= | "0b"  BinaryDigits | 
| /* ws: explicit */ | ||
| DecimalLiteral | ::= | ("."  Digits)  |  (Digits  "."  Digits?) | 
| /* ws: explicit */ | ||
| DoubleLiteral | ::= | (("."  Digits)  |  (Digits  ("."  Digits?)?))  [eE]  [+-]?  Digits | 
| /* ws: explicit */ | ||
| StringLiteral | ::= | AposStringLiteral  |  QuotStringLiteral | 
| /* ws: explicit */ | ||
| AposStringLiteral | ::= | "'"  (EscapeApos  |  [^'])*  "'" | 
| /* ws: explicit */ | ||
| QuotStringLiteral | ::= | '"'  (EscapeQuot  |  [^"])*  '"' | 
| /* ws: explicit */ | ||
| URIQualifiedName | ::= | BracedURILiteral  (NCName  ":")?  NCName | 
| /* ws: explicit */ | ||
| BracedURILiteral | ::= | "Q"  "{"  [^{}]*  "}" | 
| /* ws: explicit */ | ||
| EscapeQuot | ::= | '""' | 
| /* ws: explicit */ | ||
| EscapeApos | ::= | "''" | 
| /* ws: explicit */ | ||
| Comment | ::= | "(:"  (CommentContents  |  Comment)*  ":)" | 
| /* ws: explicit */ | ||
| /* gn: comments */ | ||
| QName | ::= | [http://www.w3.org/TR/REC-xml-names/#NT-QName]Names | 
| /* xgs: xml-version */ | ||
| NCName | ::= | [http://www.w3.org/TR/REC-xml-names/#NT-NCName]Names | 
| /* xgs: xml-version */ | ||
| Char | ::= | [http://www.w3.org/TR/REC-xml#NT-Char]XML | 
| /* xgs: xml-version */ | 
The following symbols represent portions of terminal symbols; they are not themselves terminal symbols referenced in the grammar.
| Digits | ::= | DecDigit  ((DecDigit  |  "_")*  DecDigit)? | 
| /* ws: explicit */ | ||
| DecDigit | ::= | [0-9] | 
| /* ws: explicit */ | ||
| HexDigits | ::= | HexDigit  ((HexDigit  |  "_")*  HexDigit)? | 
| /* ws: explicit */ | ||
| HexDigit | ::= | [0-9a-fA-F] | 
| /* ws: explicit */ | ||
| BinaryDigits | ::= | BinaryDigit  ((BinaryDigit  |  "_")*  BinaryDigit)? | 
| /* ws: explicit */ | ||
| BinaryDigit | ::= | [01] | 
| /* ws: explicit */ | ||
| CommentContents | ::= | (Char+ - (Char* ('(:' | ':)') Char*)) | 
| /* ws: explicit */ | 
This appendix provides a summary of XSLT language features whose effect is explicitly implementation-defined. The conformance rules (see 27 Conformance) require vendors to provide documentation that explains how these choices have been exercised.
The implementation-defined features are grouped into categories for convenience.
This category covers interfaces for initiating a transformation, setting its parameters, initializing the static and dynamic context, and collecting the results. In general terms, it is implementation defined how input is passed to the processor and how it returns its output. This includes the interpretation of URIs used to refer to stylesheet packages and modules, source documents and collections, collations, and result documents.
More specifically:
If the initialization of any global variables or parameter depends on the context item, a dynamic error can occur if the context item is absent. It is implementation-defined whether this error occurs during priming of the stylesheet or subsequently when the variable is referenced; and it is implementation-defined whether the error occurs at all if the variable or parameter is never referenced. (See 2.3.2 Priming a Stylesheet)
The way in which an XSLT processor is invoked, and the way in which values are supplied for the source document, starting node, stylesheet parameters, and base output URI, are implementation-defined. (See 2.3.2 Priming a Stylesheet)
The way in which a base output URI is established is implementation-defined (See 2.3.6.2 Serializing the Result)
In the absence of an
                     [xsl:]default-collation attribute, the default collation
                     may be set by the calling application in an implementation-defined way. (See 3.7.2 The default-collation Attribute)
 It is implementation-defined what forms of
                  URI reference are acceptable in the href attribute of the
                     xsl:include and xsl:import elements, for
                  example, the URI schemes that may be used, the forms of fragment identifier that
                  may be used, and the media types that are supported. The way in which the URI
                  reference is used to locate a representation of a stylesheet module, and the way in which
                  the stylesheet module is constructed from that representation, are also
                  implementation-defined. (See 3.11.1 Locating Stylesheet Modules)
Implementations may provide user options that
                  relax the requirement for the doc and
                     collection functions (and therefore, by implication, the
                     document function) to return stable results. The manner in
                  which such user options are provided, if at all, is implementation-defined.  (See 5.3.3 Initializing the Dynamic Context)
The mechanism by which the caller supplies a value for a stylesheet parameter is implementation-defined. (See 9.5 Global Variables and Parameters)
The detail of any external mechanism allowing a processor to enable or disable checking of assertions is implementation-defined. (See 23.2 Assertions)
The way in which the results of the transformation are delivered to an application is implementation-defined. (See 25 Transformation Results)
 It is implementation-defined how the URI appearing in the href
               attribute of xsl:result-document affects the way in which the result
               tree is delivered to the application. There may be restrictions on
               the form of this URI.  (See 25.1 Creating Secondary Results)
If serialization is supported, then the location to which a final result tree is serialized is implementation-defined, subject to the constraint that relative URI references used to reference one tree from another remain valid. (See 26.2 Serialization parameters)
This category covers extensions and extensibility: mechanisms for providing vendor or user extensions to the language without sacrificing interoperability.
In general terms, it is implementation-defined:
whether and under what circumstances the implementation recognizes any extension functions, extension instructions, extension attributes, user-defined data elements, additional types, additional serialization methods or serialization parameters, or additional collations, and if so, what effect they have.
whether, how, and under what circumstances the implementation allows users to define extension functions, extension instructions, extension attributes, user-defined data elements, additional types, additional serialization methods or serialization parameters, or additional collations. If it does allow users to do so, it must follow the rules given elsewhere in this specification.
what information is available to such extensions (for example, whether they have access to the static and dynamic context.)
where such extensions are allowed, the extent to which the processor enforces their correct behavior (for example, checking that strings returned by extension functions contain only valid XML characters)
More specifically:
The mechanisms for creating new extension instructions and extension functions are implementation-defined. It is not required that implementations provide any such mechanism. (See 2.9 Extensibility)
The set of namespaces that are specially recognized by the implementation (for example, for user-defined data elements, and extension attributes) is implementation-defined. (See 3.7.4 User-defined Data Elements)
The effect of user-defined data elements whose name is in a namespace recognized by the implementation is implementation-defined. (See 3.7.4 User-defined Data Elements)
An implementation may define mechanisms, above
               and beyond xsl:import-schema, that allow schema components such as type definitions to
               be made available within a stylesheet. (See 3.14 Built-in Types)
The set of extension functions
                        available in the static context for the target expression of
                           xsl:evaluate is implementation-defined. (See 10.5.1 Static context for the target expression)
If the data-type attribute of
                  the xsl:sort element has a value other than text or
                     number, the effect is implementation-defined. (See 13.1.2 Comparing Sort Key Values)
The effect of an extension function returning a string containing characters that are not permitted in XML is implementation-defined. (See 24.1.2 Calling Extension Functions)
The way in which external objects are represented in the type system is implementation-defined. (See 24.1.3 External Objects)
This specification, and the specifications that it refers to, include facilities for adapting the output of a transformation to meet local expectations: examples include the formatting of numbers and dates, and the choice of collations for sorted output. The general principles are:
The specification does not mandate any particular localizations that processors must offer: for example, a conformant processor might choose to provide output in Japanese only.
The specification provides fallback mechanisms so that if a particular localization is requested and is not available, processing does not fail.
More specifically:
The combinations of languages and numbering
               sequences recognized by the xsl:number instruction, beyond those
               defined as mandatory in this specification, are implementation-defined. There may be
               implementation-defined upper bounds on the numbers that can be formatted using any
               particular numbering sequence. There may be constraints on the
               values of the ordinal attribute recognized for any given
               language. (See 12.4 Number to String Conversion Attributes)
The facilities for defining collations and allocating URIs to identify them are largely implementation-defined. (See 13.1.3 Sorting Using Collations)
The algorithm used by
                     xsl:sort to locate a collation, given the values of the
                     lang and case-order attributes, is
                  implementation-defined. (See 13.1.3 Sorting Using Collations)
If none of the
                     collation, lang, or case-order
                  attributes is present (on xsl:sort), the collation is chosen in
                  an implementation-defined way. (See 13.1.3 Sorting Using Collations)
As well as the optional conformance features identified in 27 Conformance, some specific features of the specification are defined to be optional.
It is implementation-defined whether an XSLT 4.0 processor supports backwards compatible behavior for any XSLT version earlier than XSLT 4.0. (See 3.9 Backwards Compatible Processing)
If an xml:id attribute that has
                  not been subjected to attribute value normalization is copied from a source tree
                  to a result tree, it is implementation-defined whether attribute value
                  normalization will be applied during the copy process. (See 11.9.1 Shallow Copy)
It is implementation-defined whether, and under what circumstances, disabling output escaping is supported. (See 26.5 Disabling Output Escaping)
When this specification refers normatively to other specifications, it generally gives implementations freedom to decide (within constraints) which version of the referenced specification should be used. Specifically:
It is implementation-defined which versions and editions of XML and XML Namespaces (1.0 and/or 1.1) are supported. (See 4.1 XML Versions)
It is implementation-defined which versions of
            XML, HTML, and XHTML are supported in the version attribute of the
               xsl:output declaration. (See 26.2 Serialization parameters)
It is implementation-defined whether (and if so how) an XSLT 3.0 processor is able to work with versions of [Serialization 4.0] later than 3.1. (See 27.3 Serialization Feature)
To accommodate variations in the way that the XSLT language is deployed, and the constraints of different processing environments, defaults for some options are implementation-defined. In addition, limits on the sizes of ranges of values permitted are in general implementation-defined:
Limits on the value space of primitive datatypes, where not fixed by [XML Schema Part 2], are implementation-defined. (See 4.5 Limits)
The default value of the
                     encoding attribute of the xsl:output element is
                  implementation-defined. Where the encoding is UTF-8, the default for the
                     byte-order-mark attribute is
                  implementation-defined. (See 26.2 Serialization parameters)
Some aspects of error handling are implementation-defined:
It is implementation-defined whether type errors are raised statically. (See 2.12 Error Handling)
If the effective version of any element in the stylesheet is not 1.0 or 2.0 but is less than 4.0, the recommended action is to raise a static error; however, processors may recognize such values and process the element in an implementation-defined way. (See 3.9 Backwards Compatible Processing)
The default values for the
                     warning-on-no-match and warning-on-multiple-match
                  attributes of xsl:mode are implementation-defined. (See 6.7.1 Declaring Modes)
The form of any warnings output when there is no matching template rule, or when there are multiple matching template rules, is implementation-defined. (See 6.7.1 Declaring Modes)
The destination and formatting of messages
               written using the xsl:message instruction are implementation-defined. (See 23.1 Messages)
The functions available for use within an XSLT stylesheet can be classified based firstly, on where the function is defined, and secondly, on where it can be used. Specifically, the set of functions available is slightly different for :
Regular XPath expressions within the stylesheet, for example those appearing in
                  select or test attributes, or between braces in a text value template (R)
XPath expressions evaluated dynamically using xsl:evaluate (D)
The categories are listed in the following table:
| Category | Defined where? | Available where? | Notes | 
|---|---|---|---|
| User-defined functions | Defined using xsl:functiondeclarations in the stylesheet | R, D | Functions are private by default; private functions can be referenced only
                           within the package where they are declared (and not in xsl:evaluateexpressions). | 
| Constructor functions for built-in types | [Functions and Operators 4.0] section 22 Constructor functions | R, S, D | These functions are all in the namespace conventionally associated with the
                           prefix xs. The semantics of a constructor function are identical
                           to the semantics of acastexpression. | 
| Constructor functions for user-defined types | [Functions and Operators 4.0] section 22 Constructor functions | R, D (if schema-aware="yes") | This category includes a function for every named user-defined simple type in an imported schema; the function allows the conversion of strings and certain other values to instances of the user-defined type. | 
| Functions defined in XPath 4.0 | [Functions and Operators 4.0] | R, S, D | Includes functions in the namespaces conventionally
                           referred to be the prefixes fnandmath. | 
| Functions defined in XSLT 4.0 | This specification | R, S (see note), D | See G.2 List of XSLT-defined functions. There is an overlap with
                           the set of functions defined in XPath 4.0. The functions available in static expressions
                           are: element-available,function-available,type-available,available-system-properties,
                           andsystem-property. | 
| Extension functions | Implementation-defined: see 24.1 Extension Functions. | R, S, D | Availability is implementation-defined | 
This appendix acts as an index of functions defined in this specification, to augment the set of functions defined in [Functions and Operators 4.0].
accumulator-afteraccumulator-beforeapply-templatesavailable-system-propertiescharacter-mapcopy-ofcurrentcurrent-groupcurrent-grouping-keycurrent-merge-groupcurrent-merge-keycurrent-merge-key-arraycurrent-output-uridocumentelement-availablefunction-availablekeymap-for-keyregex-groupsnapshotstream-availablesystem-propertytype-availableunparsed-entity-public-idunparsed-entity-uriFor convenience, schemas are provided for validation of XSLT 4.0 stylesheets
         using the XSD 1.1 and Relax NG schema languages. These are non-normative. Neither will detect
         every static error that might arise in an XSLT 4.0 stylesheet (for example, there is no attempt
         to check the syntax of XPath expressions); in addition, these schemas may reject some stylesheets
         that are valid, for example because they rely on xsl:use-when to eliminate sections of code
         that would otherwise be invalid.
The following XSD 1.1 schema describes the structure of an XSLT stylesheet module. There are some limitations:
It does not define all the constraints that apply to a stylesheet (for example, it does not attempt to define a datatype that precisely represents attributes containing XPath expressions).
Stylesheets that use forwards compatible behavior 
                  (an [xsl:]version attribute greater than
                  4.0), or that have sections excluded using [xsl:]use-when
                  attributes, are not required to conform to the schema.
The specification allows xsl:note elements to appear anywhere,
               but this schema is more restrictive.
A copy of this schema is available at schema-for-xslt40.xsd
Note:
The schema as written uses a lax wildcard to permit literal result elements to appear
               in a sequence constructor. This assumes that the schema used for validation will not
               contain any global element declaration that matches the element name of a literal
               result element. The content model for an element such as invoice
               appearing within a stylesheet is not the same as the content model for the same
               element appearing within a source document (it is likely to contain XSLT instructions
               rather than other elements from the target vocabulary): therefore, including such
               declarations in the schema used for validating a stylesheet is inappropriate.
The reason that lax validation rather than skip validation is used is so that XSLT instructions appearing as children of the literal result element will themselves be validated, using the appropriate global element declaration.
Note:
The schema uses XSD 1.1 assertions to represent some of the non-grammatical
               constraints appearing in the specification, for example the rule that some elements
               can have either a select attribute or a contained sequence constructor,
               but not both. At this stage, no attempt has been made to represent every such
               constraint, even where it is not difficult to express the rule. There will always be
               some constraints that cannot be expressed at all, for example those that require
               access to multiple stylesheet modules, those that require access to the in-scope
               schema components, and those that involve parsing a non-regular grammar, such as the
               grammar for patterns.
Apart from assertions, the only other significant use of XSD 1.1 features is that the
               elements xsl:param and xsl:variable are in two
               substitution groups: one containing all instructions, and one containing all
               declarations. If the schema needs to be converted to an XSD 1.0 schema, removing all
               assertions is straightforward; the other change needed is to remove
                  xsl:param and xsl:variable from the substitution
               group for declarations, and instead permit them explicitly as children of
                  xsl:transform.
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
           xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
           targetNamespace="http://www.w3.org/1999/XSL/Transform"
           elementFormDefault="qualified"
           vc:minVersion="1.1">
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  <xs:annotation>
    <xs:documentation>
      <p>
         This is an XSD 1.1 schema for XSLT 4.0 stylesheets. It defines all the
         elements that appear in the XSLT namespace; it also provides hooks that
         allow the inclusion of user-defined literal result elements, extension
         instructions, and top-level data elements.
      </p>
      <p>
         This schema is available for use under the conditions of the W3C Software
         License published at
         http://www.w3.org/Consortium/Legal/copyright-software-19980720
      </p>
      <p>
         The schema is organized as follows:
      </p>
      <ul>
        <li>
           PART A: definitions of complex types and model groups used as the basis
           for element definitions
        </li>
        <li>
           PART B: definitions of individual XSLT elements
        </li>
        <li>
           PART C: definitions for literal result elements
        </li>
        <li>
           PART D: definitions of simple types used in attribute definitions
        </li>
      </ul>
      <p>
         The schema has a number of limitations:
      </p>
      <ul>
        <li>
           The XSLT specification allows additional elements and attributes to be
           present where forwards compatibility is invoked. This schema does not.
        </li>
        <li>
           The XSLT specification allows arbitrary content in a part of the
           stylesheet that is excluded by virtue of a use-when attribute. This
           schema does not.
        </li>
        <li>
           The handling of literal result elements in this schema is imperfect;
           although various options are allowed, none matches the specification
           exactly. For example, the content of a literal result element uses lax
           validation, which permits child elements in the XSLT namespace that have
           no declaration in this schema.
        </li>
        <li>
           The schema makes no attempt to check XPath expressions for syntactic or
           semantic correctness, nor to check that component references are
           resolved (for example that a template named in <code>xsl:call-template</code> has a
           declaration). Doing this in general requires cross-document validation,
           which is beyond the scope of XSD.
        </li>
        <li>
           The XSLT specification allows <code>xsl:note</code> elements to appear
           anywhere, with arbitrary content. This schema does not: for example, it does
           not allow <code>xsl:note</code> as a child of an element such as <code>xsl:text</code>
           or <code>xsl:strip-space</code>.
        </li>
        <li>
           The schema imports the schema for XSD 1.0 schema documents. In
           stylesheets that contain an inline XSD 1.1 schema, this import should be
           replaced with one for the schema for XSD 1.1 schema documents.
        </li>
      </ul>
    </xs:documentation>
  </xs:annotation>
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  <!--
The declaration of xml:space and xml:lang may need to be commented out because
of problems processing the schema using various tools
-->
  <xs:import namespace="http://www.w3.org/XML/1998/namespace"/>
  <!--schemaLocation="http://www.w3.org/2001/xml.xsd"-->
  <!-- 
    An XSLT stylesheet may contain an in-line schema within an xsl:import-schema element,
    so the Schema for schemas needs to be imported. We use the XSD 1.1 version.
-->
  <xs:import namespace="http://www.w3.org/2001/XMLSchema"
             schemaLocation="http://www.w3.org/TR/xmlschema11-1/XMLSchema.xsd"/>
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  <xs:annotation>
    <xs:documentation>
      <p>
         PART A: definitions of complex types and model groups used as the basis
         for element definitions
      </p>
    </xs:documentation>
  </xs:annotation>
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  
  <xs:defaultOpenContent>
    <!-- Allow xsl:note anywhere -->
    <xs:any processContents="strict" 
            namespace="##targetNamespace"
            notQName="xsl:accept 
                      xsl:accumulator 
                      xsl:accumulator-rule 
                      xsl:analyze-string 
                      xsl:apply-imports 
                      xsl:apply-templates 
                      xsl:array 
                      xsl:assert 
                      xsl:attribute 
                      xsl:attribute-set 
                      xsl:break 
                      xsl:call-template 
                      xsl:catch 
                      xsl:character-map 
                      xsl:choose 
                      xsl:comment 
                      xsl:context-item 
                      xsl:copy 
                      xsl:copy-of 
                      xsl:document 
                      xsl:decimal-format 
                      xsl:element 
                      xsl:evaluate 
                      xsl:expose 
                      xsl:fallback
                      xsl:field 
                      xsl:for-each 
                      xsl:for-each-group 
                      xsl:fork 
                      xsl:function 
                      xsl:global-context-item 
                      xsl:if 
                      xsl:import 
                      xsl:import-schema 
                      xsl:include 
                      xsl:iterate 
                      xsl:key 
                      xsl:map 
                      xsl:map-entry 
                      xsl:matching-substring 
                      xsl:merge 
                      xsl:merge-action 
                      xsl:merge-key 
                      xsl:merge-source 
                      xsl:message 
                      xsl:mode 
                      xsl:namespace 
                      xsl:namespace-alias 
                      xsl:next-iteration 
                      xsl:next-match 
                      xsl:non-matching-substring 
                      xsl:number 
                      xsl:on-completion 
                      xsl:on-empty 
                      xsl:on-non-empty 
                      xsl:otherwise 
                      xsl:output 
                      xsl:output-character 
                      xsl:override 
                      xsl:package 
                      xsl:param 
                      xsl:perform-sort 
                      xsl:preserve-space 
                      xsl:processing-instruction
                      xsl:record 
                      xsl:record-type 
                      xsl:result-document 
                      xsl:sequence 
                      xsl:sort 
                      xsl:source-document 
                      xsl:strip-space 
                      xsl:stylesheet 
                      xsl:switch 
                      xsl:template 
                      xsl:text 
                      xsl:transform 
                      xsl:try 
                      xsl:use-package 
                      xsl:value-of 
                      xsl:variable 
                      xsl:when 
                      xsl:where-populated 
                      xsl:with-param
            "/>
  </xs:defaultOpenContent>
  
  <xs:complexType name="generic-element-type" mixed="true">
    <xs:annotation>
      <xs:documentation>
        <p>
           This complex type provides a generic supertype for all XSLT elements; it
           contains the definitions of the standard attributes that may appear on
           any element.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:attribute name="default-collation" type="xsl:uri-list"/>
    <xs:attribute name="default-mode" type="xsl:default-mode-type"/>
    <xs:attribute name="default-validation"
                  type="xsl:validation-strip-or-preserve"
                  default="strip"/>
    <xs:attribute name="exclude-result-prefixes" type="xsl:prefix-list-or-all"/>
    <xs:attribute name="expand-text" type="xsl:yes-or-no"/>
    <xs:attribute name="extension-element-prefixes" type="xsl:prefix-list"/>
    <xs:attribute name="use-when" type="xsl:expression"/>
    <xs:attribute name="xpath-default-namespace" type="xs:anyURI"/>
    <xs:attribute name="_default-collation" type="xs:string"/>
    <xs:attribute name="_default-mode" type="xs:string"/>
    <xs:attribute name="_default-validation" type="xs:string"/>
    <xs:attribute name="_exclude-result-prefixes" type="xs:string"/>
    <xs:attribute name="_expand-text" type="xs:string"/>
    <xs:attribute name="_extension-element-prefixes" type="xs:string"/>
    <xs:attribute name="_use-when" type="xs:string"/>
    <xs:attribute name="_xpath-default-namespace" type="xs:string"/>
    <xs:anyAttribute namespace="##other" processContents="lax"/>
  </xs:complexType>
  
  <xs:complexType name="element-only-generic-element-type" mixed="false">
    <xs:complexContent>
      <xs:restriction base="xsl:generic-element-type"/>
    </xs:complexContent>
  </xs:complexType>
  <xs:complexType name="versioned-element-type" mixed="true">
    <xs:annotation>
      <xs:documentation>
        <p>This complex type provides a generic supertype for all XSLT elements with
                the exception of <code>xsl:output</code>; it contains the
                definitions of the <code>version</code> attribute that may appear on any element.
                </p>
        <p>The <code>xsl:output</code> element does not use this definition because, although it
             has a <code>version</code> attribute, the syntax and semantics of this attribute are
             unrelated to the standard <code>version</code> attribute allowed on other elements.</p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexContent>
      <xs:extension base="xsl:generic-element-type">
        <xs:attribute name="version" type="xs:decimal" use="optional"/>
        <xs:attribute name="_version" type="xs:string"/>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  <xs:complexType name="element-only-versioned-element-type" mixed="false">
    <xs:complexContent>
      <xs:restriction base="xsl:versioned-element-type">
        <xs:anyAttribute namespace="##other" processContents="lax"/>
      </xs:restriction>
    </xs:complexContent>
  </xs:complexType>
  <xs:complexType name="sequence-constructor">
    <xs:annotation>
      <xs:documentation>
        <p>
           This complex type provides a generic supertype for all XSLT elements
           that allow a sequence constructor as their content.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexContent mixed="true">
      <xs:extension base="xsl:versioned-element-type">
        <xs:group ref="xsl:sequence-constructor-group"
                  minOccurs="0"
                  maxOccurs="unbounded"/>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  
  <xs:complexType name="sequence-constructor-and-select">
    <xs:annotation>
      <xs:documentation>
        <p>
           This complex type allows a sequence constructor and a select attribute.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexContent mixed="true">
      <xs:extension base="xsl:sequence-constructor">
        <xs:attribute name="select" type="xsl:expression"/>
        <xs:attribute name="_select" type="xs:string"/>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  
  <xs:complexType name="sequence-constructor-or-select">
    <xs:annotation>
      <xs:documentation>
        <p>
           This complex type allows a sequence constructor or a select attribute,
           but not both.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexContent mixed="true">
      <xs:restriction base="xsl:sequence-constructor-and-select">
        <xs:group ref="xsl:sequence-constructor-group"
                  minOccurs="0"
                  maxOccurs="unbounded"/>
        <xs:anyAttribute namespace="##other" processContents="lax"/>
        <xs:assert test="not(exists(@select | @_select) and 
          (exists(* except xsl:fallback) or exists(text()[normalize-space()])))"/>
      </xs:restriction>
    </xs:complexContent>
  </xs:complexType>
  <xs:group name="sequence-constructor-group">
    <xs:annotation>
      <xs:documentation>
        <p>
           This complex type provides a generic supertype for all XSLT elements
           that allow a sequence constructor as their content.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:choice>
      <xs:element ref="xsl:instruction"/>
      <xs:group ref="xsl:result-elements"/>
    </xs:choice>
  </xs:group>
  <xs:element name="declaration" type="xsl:generic-element-type" abstract="true"/>
  <xs:element name="instruction" type="xsl:versioned-element-type" abstract="true"/>
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  <xs:annotation>
    <xs:documentation>
      <p>
         PART B: definitions of individual XSLT elements Elements are listed in
         alphabetical order.
      </p>
    </xs:documentation>
  </xs:annotation>
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  
  <xs:element name="accept">
    <xs:annotation>
      <xs:documentation>
        <p>This element appears as a child of <code>xsl:use-package</code> and defines 
            any variations that the containing package wishes to make to the visibility of
            components made available from a library package. For example, it may indicate that
            some of the public components in the library package are not to be made available
            to the containing package.</p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="component" type="xsl:component-kind-type"/>
          <xs:attribute name="names" type="xsl:component-tests"/>
          <xs:attribute name="visibility" type="xsl:visibility-type"/>
          <xs:attribute name="_component" type="xs:string"/>
          <xs:attribute name="_names" type="xs:string"/>
          <xs:attribute name="_visibility" type="xs:string"/>
          <xs:assert test="exists(@component | @_component)"/>
          <xs:assert test="exists(@names | @_names)"/>
          <xs:assert test="exists(@visibility | @_visibility)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="accumulator" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:accumulator-rule" minOccurs="1" maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="initial-value" type="xsl:expression"/>
          <xs:attribute name="as" type="xsl:sequence-type"/>
          <xs:attribute name="streamable" type="xsl:yes-or-no"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_initial-value" type="xs:string"/>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_streamable" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="accumulator-rule">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:sequence/>
          <xs:attribute name="match" type="xsl:pattern"/>
          <xs:attribute name="phase">
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="start"/>
                <xs:enumeration value="end"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
          <xs:attribute name="capture" type="xsl:yes-or-no" default="no"/>
          <xs:attribute name="_match" type="xs:string"/>
          <xs:attribute name="_phase" type="xs:string"/>
          <xs:attribute name="_capture" type="xs:string"/>
          <xs:assert test="exists(@match | @_match)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="analyze-string" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:matching-substring" minOccurs="0"/>
            <xs:element ref="xsl:non-matching-substring" minOccurs="0"/>
            <xs:element ref="xsl:fallback" minOccurs="0" maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="regex" type="xsl:avt"/>
          <xs:attribute name="flags" type="xsl:avt" default=""/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_regex" type="xs:string"/>
          <xs:attribute name="_flags" type="xs:string"/>
          <xs:assert test="exists(@select | @_select)"/>
          <xs:assert test="exists(@regex | @_regex)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="apply-imports" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:with-param" minOccurs="0" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="apply-templates" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element ref="xsl:sort"/>
            <xs:element ref="xsl:with-param"/>
          </xs:choice>
          <xs:attribute name="select" type="xsl:expression" default="child::node()"/>
          <xs:attribute name="separator" type="xsl:avt"/>
          <xs:attribute name="mode" type="xsl:mode"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_separator" type="xs:string"/>
          <xs:attribute name="_mode" type="xs:string"/>
          <xs:assert test="every $e in subsequence(xsl:sort, 2) 
                           satisfies empty($e/(@stable | @_stable))">
            <xs:annotation>
              <xs:documentation>
                <p>
                   It is a static error if an <code>xsl:sort</code> element other than the first
                   in a sequence of sibling <code>xsl:sort</code> elements has a <code>stable</code>
                   attribute.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="array"
              substitutionGroup="xsl:instruction"
              type="xsl:sequence-constructor-or-select"/>
  
  <xs:element name="array-member"
              substitutionGroup="xsl:instruction"
              type="xsl:sequence-constructor-or-select"/>
  
  <xs:element name="assert" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="test" type="xsl:expression"/>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="error-code" type="xsl:avt"/>
          <xs:attribute name="_test" type="xs:string"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_error-code" type="xs:string"/>
          <xs:assert test="exists(@test | @_test)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="attribute" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="name" type="xsl:avt"/>
          <xs:attribute name="namespace" type="xsl:avt"/>
          <xs:attribute name="separator" type="xsl:avt"/>
          <xs:attribute name="type" type="xsl:EQName"/>
          <xs:attribute name="validation" type="xsl:validation-type"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_namespace" type="xs:string"/>
          <xs:attribute name="_separator" type="xs:string"/>
          <xs:attribute name="_type" type="xs:string"/>
          <xs:attribute name="_validation" type="xs:string"/>
          <xs:assert test="not(exists(@type | @_type) and exists(@validation | @_validation))">
            <xs:annotation>
              <xs:documentation>
                <p>The <code>type</code> and <code>validation</code> attributes are mutually exclusive
                (if one is present, the other must be absent).</p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="attribute-set" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence minOccurs="0" maxOccurs="unbounded">
            <xs:element ref="xsl:attribute"/>
          </xs:sequence>
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="streamable" type="xsl:yes-or-no"/>
          <xs:attribute name="use-attribute-sets" type="xsl:EQNames" default=""/>
          <xs:attribute name="visibility" type="xsl:visibility-not-hidden-type"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_streamable" type="xs:string"/>
          <xs:attribute name="_use-attribute-sets" type="xs:string"/>
          <xs:attribute name="_visibility" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="break"
              substitutionGroup="xsl:instruction"
              type="xsl:sequence-constructor-or-select"/>
  <xs:element name="call-template" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:with-param" minOccurs="0" maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="catch">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="errors" type="xsl:nametests" use="optional"/>
          <xs:attribute name="_errors" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="character-map" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:output-character" minOccurs="0" maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="use-character-maps" type="xsl:EQNames" default=""/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_use-character-maps" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="choose" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:when" maxOccurs="unbounded"/>
            <xs:element ref="xsl:otherwise" minOccurs="0"/>
          </xs:sequence>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="comment"
              substitutionGroup="xsl:instruction"
              type="xsl:sequence-constructor-or-select"/>
  
  <xs:element name="context-item">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="as" type="xsl:item-type"/>
          <xs:attribute name="use">
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="required"/>
                <xs:enumeration value="optional"/>
                <xs:enumeration value="absent"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_use" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="copy" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="copy-namespaces" type="xsl:yes-or-no" default="yes"/>
          <xs:attribute name="inherit-namespaces" type="xsl:yes-or-no" default="yes"/>
          <xs:attribute name="use-attribute-sets" type="xsl:EQNames" default=""/>
          <xs:attribute name="type" type="xsl:EQName"/>
          <xs:attribute name="validation" type="xsl:validation-type"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_copy-namespaces" type="xs:string"/>
          <xs:attribute name="_inherit-namespaces" type="xs:string"/>
          <xs:attribute name="_use-attribute-sets" type="xs:string"/>
          <xs:attribute name="_type" type="xs:string"/>
          <xs:attribute name="_validation" type="xs:string"/>
          <xs:assert test="not(exists(@type | @_type) and exists(@validation | @_validation))">
            <xs:annotation>
              <xs:documentation>
                <p>The <code>type</code> and <code>validation</code> attributes are mutually exclusive
                  (if one is present, the other must be absent).</p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="copy-of" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="copy-accumulators" type="xsl:yes-or-no" default="no"/>
          <xs:attribute name="copy-namespaces" type="xsl:yes-or-no" default="yes"/>
          <xs:attribute name="type" type="xsl:EQName"/>
          <xs:attribute name="validation" type="xsl:validation-type"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_copy-accumulators" type="xs:string"/>
          <xs:attribute name="_copy-namespaces" type="xs:string"/>
          <xs:attribute name="_type" type="xs:string"/>
          <xs:attribute name="_validation" type="xs:string"/>
          <xs:assert test="not(exists(@type | @_type) and exists(@validation | @_validation))">
            <xs:annotation>
              <xs:documentation>
                <p>The <code>type</code> and <code>validation</code> attributes are mutually exclusive
                  (if one is present, the other must be absent).</p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="exists(@select | @_select)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="document" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="type" type="xsl:EQName"/>
          <xs:attribute name="validation" type="xsl:validation-type"/>
          <xs:attribute name="_type" type="xs:string"/>
          <xs:attribute name="_validation" type="xs:string"/>
          <xs:assert test="not(exists(@type | @_type) and exists(@validation | @_validation))">
            <xs:annotation>
              <xs:documentation>
                <p>The <code>type</code> and <code>validation</code> attributes are mutually exclusive
                  (if one is present, the other must be absent).</p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="decimal-format" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="decimal-separator" type="xsl:char-optionally-expanded" default="."/>
          <xs:attribute name="grouping-separator" type="xsl:char-optionally-expanded" default=","/>
          <xs:attribute name="infinity" type="xs:string" default="Infinity"/>
          <xs:attribute name="minus-sign" type="xs:string" default="-"/>
          <xs:attribute name="exponent-separator" type="xsl:char-optionally-expanded" default="e"/>
          <xs:attribute name="NaN" type="xs:string" default="NaN"/>
          <xs:attribute name="percent" type="xsl:char-optionally-expanded" default="%"/>
          <xs:attribute name="per-mille" type="xsl:char-optionally-expanded" default="â°"/>
          <xs:attribute name="zero-digit" type="xsl:zero-digit" default="0"/>
          <xs:attribute name="digit" type="xsl:char" default="#"/>
          <xs:attribute name="pattern-separator" type="xsl:char" default=";"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_decimal-separator" type="xs:string"/>
          <xs:attribute name="_grouping-separator" type="xs:string"/>
          <xs:attribute name="_infinity" type="xs:string"/>
          <xs:attribute name="_minus-sign" type="xs:string"/>
          <xs:attribute name="_exponent-separator" type="xs:string"/>
          <xs:attribute name="_NaN" type="xs:string"/>
          <xs:attribute name="_percent" type="xs:string"/>
          <xs:attribute name="_per-mille" type="xs:string"/>
          <xs:attribute name="_zero-digit" type="xs:string"/>
          <xs:attribute name="_digit" type="xs:string"/>
          <xs:attribute name="_pattern-separator" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="element" substitutionGroup="xsl:instruction">
    <xs:complexType mixed="true">
      <xs:complexContent>
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="name" type="xsl:avt"/>
          <xs:attribute name="namespace" type="xsl:avt"/>
          <xs:attribute name="inherit-namespaces" type="xsl:yes-or-no" default="yes"/>
          <xs:attribute name="use-attribute-sets" type="xsl:EQNames" default=""/>
          <xs:attribute name="type" type="xsl:EQName"/>
          <xs:attribute name="validation" type="xsl:validation-type"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_namespace" type="xs:string"/>
          <xs:attribute name="_inherit-namespaces" type="xs:string"/>
          <xs:attribute name="_use-attribute-sets" type="xs:string"/>
          <xs:attribute name="_type" type="xs:string"/>
          <xs:attribute name="_validation" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
          <xs:assert test="not(exists(@type | @_type) and exists(@validation | @_validation))">
            <xs:annotation>
              <xs:documentation>
                <p>The <code>type</code> and <code>validation</code> attributes are mutually exclusive
                  (if one is present, the other must be absent).</p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="evaluate" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element ref="xsl:with-param"/>
            <xs:element ref="xsl:fallback"/>
          </xs:choice>
          <xs:attribute name="xpath" type="xsl:expression"/>
          <xs:attribute name="as" type="xsl:sequence-type"/>
          <xs:attribute name="base-uri" type="xsl:avt"/>
          <xs:attribute name="context-item" type="xsl:expression"/>
          <xs:attribute name="namespace-context" type="xsl:expression"/>
          <xs:attribute name="schema-aware" type="xsl:avt"/>
          <xs:attribute name="with-params" type="xsl:expression"/>
          <xs:attribute name="_xpath" type="xs:string"/>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_base-uri" type="xs:string"/>
          <xs:attribute name="_context-item" type="xs:string"/>
          <xs:attribute name="_namespace-context" type="xs:string"/>
          <xs:attribute name="_schema-aware" type="xs:string"/>
          <xs:attribute name="_with-params" type="xs:string"/>
          <xs:assert test="exists(@xpath | @_xpath)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="expose">
    <xs:annotation>
      <xs:documentation>
        <p>This element appears as a child of <code>xsl:use-package</code> and defines 
            the visibility of components that are made available (or not) by this package
            to other using packages.</p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="component" type="xsl:component-kind-type"/>
          <xs:attribute name="names" type="xsl:component-tests"/>
          <xs:attribute name="visibility" type="xsl:visibility-not-hidden-type"/>
          <xs:attribute name="_component" type="xs:string"/>
          <xs:attribute name="_names" type="xs:string"/>
          <xs:attribute name="_visibility" type="xs:string"/>
          <xs:assert test="exists(@component | @_component)"/>
          <xs:assert test="exists(@names | @_names)"/>
          <xs:assert test="exists(@visibility | @_visibility)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="fallback"
              substitutionGroup="xsl:instruction"
              type="xsl:sequence-constructor"/>
  
  <xs:element name="field">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="name" type="xs:NCName"/>
          <xs:attribute name="as" type="xsl:sequence-type"/>
          <xs:attribute name="required" type="xsl:yes-or-no"/>
          <xs:attribute name="default" type="xsl:expression"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_required" type="xs:string"/>
          <xs:attribute name="_default" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="for-each" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:sort" minOccurs="0" maxOccurs="unbounded"/>
            <xs:group ref="xsl:sequence-constructor-group"
                      minOccurs="0"
                      maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="separator" type="xsl:avt"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_separator" type="xs:string"/>
          <xs:assert test="every $e in subsequence(xsl:sort, 2) 
                           satisfies empty($e/(@stable | @_stable))">
            <xs:annotation>
              <xs:documentation>
                <p>
                   It is a static error if an <code>xsl:sort</code> element other than the first
                   in a sequence of sibling <code>xsl:sort</code> elements has a <code>stable</code>
                   attribute.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="exists(@select | @_select)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="for-each-group" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:sort" minOccurs="0" maxOccurs="unbounded"/>
            <xs:group ref="xsl:sequence-constructor-group"
                      minOccurs="0"
                      maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="group-by" type="xsl:expression"/>
          <xs:attribute name="group-adjacent" type="xsl:expression"/>
          <xs:attribute name="group-starting-with" type="xsl:pattern"/>
          <xs:attribute name="group-ending-with" type="xsl:pattern"/>
          <xs:attribute name="split-when" type="xsl:expression"/>
          <xs:attribute name="composite" type="xsl:yes-or-no"/>
          <xs:attribute name="collation" type="xsl:avt"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_group-by" type="xs:string"/>
          <xs:attribute name="_group-adjacent" type="xs:string"/>
          <xs:attribute name="_group-starting-with" type="xs:string"/>
          <xs:attribute name="_group-ending-with" type="xs:string"/>
          <xs:attribute name="_split-when" type="xs:string"/>
          <xs:attribute name="_composite" type="xs:string"/>
          <xs:attribute name="_collation" type="xs:string"/>
          <xs:assert test="exists(@select | @_select)"/>
          <xs:assert test="every $e in subsequence(xsl:sort, 2) 
                           satisfies empty($e/(@stable | @_stable))">
            <xs:annotation>
              <xs:documentation>
                <p>
                   It is a static error if an <code>xsl:sort</code> element other than the first
                   in a sequence of sibling <code>xsl:sort</code> elements has a <code>stable</code>
                   attribute.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="count(((@group-by|@_group-by)[1], 
                                  (@group-adjacent|@_group-adjacent)[1], 
                                  (@group-starting-with|@_group-starting-with)[1], 
                                  (@group-ending-with|@_group-ending-with)[1],
                                  (@split-when|@_split-when)[1])) = 1">
            <xs:annotation>
              <xs:documentation>
                <p>
                   These four attributes are mutually exclusive: it is a static
                   error if none of these four attributes is present or if more
                   than one of them is present.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="if (exists(@collation|@_collation) or exists(@composite|@_composite)) 
                           then (exists(@group-by|@_group-by) or exists(@group-adjacent|@_group-adjacent)) 
                           else true()">
            <xs:annotation>
              <xs:documentation>
                <p>
                   It is an error to specify the collation attribute or the
                   composite attribute if neither the group-by attribute nor
                   group-adjacent attribute is specified.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="fork" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:fallback" minOccurs="0" maxOccurs="unbounded"/>
            <xs:choice>
              <xs:sequence minOccurs="0" maxOccurs="unbounded">
                <xs:element ref="xsl:sequence"/>
                <xs:element ref="xsl:fallback" minOccurs="0" maxOccurs="unbounded"/>
              </xs:sequence>
              <xs:sequence>
                <xs:element ref="xsl:for-each-group"/>
                <xs:element ref="xsl:fallback" minOccurs="0" maxOccurs="unbounded"/>
              </xs:sequence>
            </xs:choice>
          </xs:sequence>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="function" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:param" minOccurs="0" maxOccurs="unbounded"/>
            <xs:group ref="xsl:sequence-constructor-group"
                      minOccurs="0"
                      maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="name" type="xsl:EQName-in-namespace"/>
          <xs:attribute name="override" type="xsl:yes-or-no" default="yes"/>
          <xs:attribute name="as" type="xsl:sequence-type" default="item()*"/>
          <xs:attribute name="visibility" type="xsl:visibility-not-hidden-type"/>
          <xs:attribute name="streamability" type="xsl:streamability-type"/>
          <xs:attribute name="override-extension-function" type="xsl:yes-or-no"/>
          <xs:attribute name="new-each-time" type="xsl:yes-or-no-or-maybe"/>
          <xs:attribute name="cache" type="xsl:yes-or-no"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_override" type="xs:string"/>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_visibility" type="xs:string"/>
          <xs:attribute name="_streamability" type="xs:string"/>
          <xs:attribute name="_override-extension-function" type="xs:string"/>
          <xs:attribute name="_new-each-time" type="xs:string"/>
          <xs:attribute name="_cache" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
          <xs:assert test="every $e in xsl:param satisfies empty($e/(@visibility | @_visibility))">
            <xs:annotation>
              <xs:documentation>
                <p>A parameter for a function must have no <code>visibility</code> attribute.</p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="global-context-item" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="as" type="xsl:item-type"/>
          <xs:attribute name="use">
            <xs:simpleType>
              <xs:restriction base="xs:token">
                <xs:enumeration value="required"/>
                <xs:enumeration value="optional"/>
                <xs:enumeration value="absent"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_use" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="if" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="test" type="xsl:expression"/>
          <xs:attribute name="then" type="xsl:expression"/>
          <xs:attribute name="else" type="xsl:expression"/>
          <xs:attribute name="_test" type="xs:string"/>
          <xs:attribute name="_then" type="xs:string"/>
          <xs:attribute name="_else" type="xs:string"/>
          <xs:assert test="exists(@test | @_test)"/>
          <xs:assert test="not(exists(@then | @_then) and 
            (exists(* except xsl:fallback) or exists(text()[normalize-space()])))"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="import" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="href" type="xs:anyURI"/>
          <xs:attribute name="_href" type="xs:string"/>
          <xs:assert test="exists(@href | @_href)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="import-schema" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xs:schema" minOccurs="0" maxOccurs="1"/>
          </xs:sequence>
          <xs:attribute name="namespace" type="xs:anyURI"/>
          <xs:attribute name="role" type="xs:NCName"/>
          <xs:attribute name="schema-location" type="xs:anyURI"/>
          <xs:attribute name="_namespace" type="xs:string"/>
          <xs:attribute name="_role" type="xs:string"/>
          <xs:attribute name="_schema-location" type="xs:string"/>
          <xs:assert test="not(exists(@schema-location | @_schema-location) and exists(xs:schema))">
            <xs:annotation>
              <xs:documentation>
                <p>
                   XTSE0215: It is a static error if an <code>xsl:import-schema</code> element
                   that contains an xs:schema element has a <code>schema-location</code>
                   attribute
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="include" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="href" type="xs:anyURI"/>
          <xs:attribute name="_href" type="xs:string"/>
          <xs:assert test="exists(@href | @_href)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="iterate" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:param" minOccurs="0" maxOccurs="unbounded"/>
            <xs:element ref="xsl:on-completion" minOccurs="0" maxOccurs="1"/>
            <xs:group ref="xsl:sequence-constructor-group"
                      minOccurs="0"
                      maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:assert test="exists(@select | @_select)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="key" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="match" type="xsl:pattern"/>
          <xs:attribute name="use" type="xsl:expression"/>
          <xs:attribute name="composite" type="xsl:yes-or-no"/>
          <xs:attribute name="collation" type="xs:anyURI"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_match" type="xs:string"/>
          <xs:attribute name="_use" type="xs:string"/>
          <xs:attribute name="_composite" type="xs:string"/>
          <xs:attribute name="_collation" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
          <xs:assert test="exists(@match | @_match)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="map"
              substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-and-select">
          <xs:attribute name="duplicates" type="xsl:expression"/>
          <xs:attribute name="_duplicates" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="map-entry" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-and-select">
          <xs:attribute name="key" type="xsl:expression"/>
          <xs:attribute name="_key" type="xs:string"/>
          <xs:assert test="exists(@key | @_key)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="matching-substring" type="xsl:sequence-constructor-or-select"/>
  <xs:element name="merge" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:merge-source" minOccurs="1" maxOccurs="unbounded"/>
            <xs:element ref="xsl:merge-action" minOccurs="1" maxOccurs="1"/>
            <xs:element ref="xsl:fallback" minOccurs="0" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="merge-action" type="xsl:sequence-constructor"/>
  <xs:element name="merge-key" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:sequence>
            <xs:group ref="xsl:sequence-constructor-group"
                      minOccurs="0"
                      maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="lang" type="xsl:avt"/>
          <xs:attribute name="order" type="xsl:avt"/>
          <xs:attribute name="collation" type="xsl:avt"/>
          <xs:attribute name="case-order" type="xsl:avt"/>
          <xs:attribute name="data-type" type="xsl:avt"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_lang" type="xs:string"/>
          <xs:attribute name="_order" type="xs:string"/>
          <xs:attribute name="_collation" type="xs:string"/>
          <xs:attribute name="_case-order" type="xs:string"/>
          <xs:attribute name="_data-type" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="merge-source">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:merge-key" minOccurs="1" maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="name" type="xs:NCName"/>
          <xs:attribute name="for-each-item" type="xsl:expression"/>
          <xs:attribute name="for-each-source" type="xsl:expression"/>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="streamable" type="xsl:yes-or-no"/>
          <xs:attribute name="use-accumulators" type="xsl:accumulator-names"/>
          <xs:attribute name="sort-before-merge" type="xsl:yes-or-no"/>
          <xs:attribute name="type" type="xsl:EQName"/>
          <xs:attribute name="validation" type="xsl:validation-type"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_for-each-item" type="xs:string"/>
          <xs:attribute name="_for-each-source" type="xs:string"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_streamable" type="xs:string"/>
          <xs:attribute name="_use-accumulators" type="xs:string"/>
          <xs:attribute name="_sort-before-merge" type="xs:string"/>
          <xs:attribute name="_type" type="xs:string"/>
          <xs:attribute name="_validation" type="xs:string"/>
          <xs:assert test="exists(@select | @_select)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="message" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="terminate" type="xsl:avt" default="no"/>
          <xs:attribute name="error-code" type="xsl:avt"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_terminate" type="xs:string"/>
          <xs:attribute name="_error-code" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="mode" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent mixed="false">
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element ref="xsl:template"/> 
            <xs:element ref="xsl:fallback"/> 
          </xs:choice>
          <xs:attribute name="as" type="xsl:sequence-type"/>
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="streamable" type="xsl:yes-or-no" default="no"/>
          <xs:attribute name="use-accumulators" type="xsl:accumulator-names"/>
          <xs:attribute name="on-no-match" type="xsl:on-no-match-type" default="text-only-copy"/>
          <xs:attribute name="on-multiple-match"
                        type="xsl:on-multiple-match-type"
                        default="use-last"/>
          <xs:attribute name="warning-on-no-match" type="xsl:yes-or-no"/>
          <xs:attribute name="warning-on-multiple-match" type="xsl:yes-or-no"/>
          <xs:attribute name="typed" type="xsl:typed-type"/>
          <xs:attribute name="visibility">
            <xs:simpleType>
              <xs:restriction base="xsl:visibility-type">
                <xs:enumeration value="public"/>
                <xs:enumeration value="private"/>
                <xs:enumeration value="final"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_streamable" type="xs:string"/>
          <xs:attribute name="_use-accumulators" type="xs:string"/>
          <xs:attribute name="_on-no-match" type="xs:string"/>
          <xs:attribute name="_on-multiple-match" type="xs:string"/>
          <xs:attribute name="_warning-on-no-match" type="xs:string"/>
          <xs:attribute name="_warning-on-multiple-match" type="xs:string"/>
          <xs:attribute name="_typed" type="xs:string"/>
          <xs:attribute name="_visibility" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="namespace" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="name" type="xsl:avt"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="namespace-alias" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="stylesheet-prefix" type="xsl:prefix-or-default"/>
          <xs:attribute name="result-prefix" type="xsl:prefix-or-default"/>
          <xs:attribute name="_stylesheet-prefix" type="xs:string"/>
          <xs:attribute name="_result-prefix" type="xs:string"/>
          <xs:assert test="exists(@stylesheet-prefix | @_stylesheet-prefix)"/>
          <xs:assert test="exists(@result-prefix | @_result-prefix)"/>
          <xs:assert test="every $prefix in (@stylesheet-prefix, @result-prefix)/normalize-space(.)[. ne '#default']
                           satisfies $prefix = in-scope-prefixes(.)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="next-iteration" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:with-param" minOccurs="0" maxOccurs="unbounded"/>
          </xs:sequence>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="next-match" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element ref="xsl:with-param"/>
            <xs:element ref="xsl:fallback"/>
          </xs:choice>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="non-matching-substring" type="xsl:sequence-constructor-or-select"/>
  
  <xs:element name="note" type="xs:anyType"/>
  <xs:element name="number" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:attribute name="value" type="xsl:expression"/>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="level" type="xsl:level" default="single"/>
          <xs:attribute name="count" type="xsl:pattern"/>
          <xs:attribute name="from" type="xsl:pattern"/>
          <xs:attribute name="format" type="xsl:avt" default="1"/>
          <xs:attribute name="lang" type="xsl:avt"/>
          <xs:attribute name="letter-value" type="xsl:avt"/>
          <xs:attribute name="ordinal" type="xsl:avt"/>
          <xs:attribute name="start-at" type="xsl:avt"/>
          <xs:attribute name="grouping-separator" type="xsl:avt"/>
          <xs:attribute name="grouping-size" type="xsl:avt"/>
          <xs:attribute name="_value" type="xs:string"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_level" type="xs:string"/>
          <xs:attribute name="_count" type="xs:string"/>
          <xs:attribute name="_from" type="xs:string"/>
          <xs:attribute name="_format" type="xs:string"/>
          <xs:attribute name="_lang" type="xs:string"/>
          <xs:attribute name="_letter-value" type="xs:string"/>
          <xs:attribute name="_ordinal" type="xs:string"/>
          <xs:attribute name="_start-at" type="xs:string"/>
          <xs:attribute name="_grouping-separator" type="xs:string"/>
          <xs:attribute name="_grouping-size" type="xs:string"/>
          <xs:assert test="if (exists(@value | @_value)) 
                           then empty((@select | @_select, @count | @_count, @from | @_from)) 
                            and (exists(@_level) or normalize-space(@level)='single') 
                           else true()">
            <xs:annotation>
              <xs:documentation>
                <p>
                   It is a static error if the value attribute of <code>xsl:number</code> is
                   present unless the <code>select</code>, <code>level</code>, <code>count</code>, 
                   and <code>from</code> attributes are all absent.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="on-completion" type="xsl:sequence-constructor-or-select"/>
  
  <xs:element name="on-empty"
              substitutionGroup="xsl:instruction"
              type="xsl:sequence-constructor-or-select"/>
  
  <xs:element name="on-non-empty"
              substitutionGroup="xsl:instruction"
              type="xsl:sequence-constructor-or-select"/>
  <xs:element name="otherwise" 
              type="xsl:sequence-constructor-or-select"/>
  <xs:element name="output" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent >
        <xs:extension base="xsl:element-only-generic-element-type">
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="method" type="xsl:method"/>
          <xs:attribute name="allow-duplicate-names" type="xsl:yes-or-no"/>
          <xs:attribute name="build-tree" type="xsl:yes-or-no"/>
          <xs:attribute name="byte-order-mark" type="xsl:yes-or-no"/>
          <xs:attribute name="cdata-section-elements" type="xsl:EQNames"/>
          <xs:attribute name="doctype-public" type="xs:string"/>
          <xs:attribute name="doctype-system" type="xs:string"/>
          <xs:attribute name="encoding" type="xs:string"/>
          <xs:attribute name="escape-solidus" type="xsl:yes-or-no"/>
          <xs:attribute name="escape-uri-attributes" type="xsl:yes-or-no"/>
          <xs:attribute name="html-version" type="xs:decimal"/>
          <xs:attribute name="include-content-type" type="xsl:yes-or-no"/>
          <xs:attribute name="indent" type="xsl:yes-or-no"/>
          <xs:attribute name="item-separator" type="xs:string"/>
          <xs:attribute name="json-lines" type="xsl:yes-or-no"/>
          <xs:attribute name="json-node-output-method" type="xsl:method"/>
          <xs:attribute name="media-type" type="xs:string"/>
          <xs:attribute name="normalization-form" type="xs:NMTOKEN"/>
          <xs:attribute name="omit-xml-declaration" type="xsl:yes-or-no"/>
          <xs:attribute name="parameter-document" type="xs:anyURI"/>
          <xs:attribute name="standalone" type="xsl:yes-or-no-or-omit"/>
          <xs:attribute name="suppress-indentation" type="xsl:EQNames"/>
          <xs:attribute name="undeclare-prefixes" type="xsl:yes-or-no"/>
          <xs:attribute name="use-character-maps" type="xsl:EQNames"/>
          <xs:attribute name="version" type="xs:NMTOKEN"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_method" type="xs:string"/>
          <xs:attribute name="_allow-duplicate-names" type="xs:string"/>
          <xs:attribute name="_build-tree" type="xs:string"/>
          <xs:attribute name="_byte-order-mark" type="xs:string"/>
          <xs:attribute name="_cdata-section-elements" type="xs:string"/>
          <xs:attribute name="_doctype-public" type="xs:string"/>
          <xs:attribute name="_doctype-system" type="xs:string"/>
          <xs:attribute name="_encoding" type="xs:string"/>
          <xs:attribute name="_escape-solidus" type="xs:string"/>
          <xs:attribute name="_escape-uri-attributes" type="xs:string"/>
          <xs:attribute name="_html-version" type="xs:string"/>
          <xs:attribute name="_include-content-type" type="xs:string"/>
          <xs:attribute name="_indent" type="xs:string"/>
          <xs:attribute name="_item-separator" type="xs:string"/>
          <xs:attribute name="_json-lines" type="xs:string"/>
          <xs:attribute name="_json-node-output-method" type="xs:string"/>
          <xs:attribute name="_media-type" type="xs:string"/>
          <xs:attribute name="_normalization-form" type="xs:string"/>
          <xs:attribute name="_omit-xml-declaration" type="xs:string"/>
          <xs:attribute name="_parameter-document" type="xs:string"/>
          <xs:attribute name="_standalone" type="xs:string"/>
          <xs:attribute name="_suppress-indentation" type="xs:string"/>
          <xs:attribute name="_undeclare-prefixes" type="xs:string"/>
          <xs:attribute name="_use-character-maps" type="xs:string"/>
          <xs:attribute name="_version" type="xs:string"/>
          <xs:anyAttribute namespace="##other" processContents="lax"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="output-character">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="character" type="xsl:char"/>
          <xs:attribute name="string" type="xs:string"/>
          <xs:attribute name="_character" type="xs:string"/>
          <xs:attribute name="_string" type="xs:string"/>
          <xs:assert test="exists(@character | @_character)"/>
          <xs:assert test="exists(@string | @_string)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="override">
    <xs:annotation>
      <xs:documentation>
        <p>This element appears as a child of <code>xsl:use-package</code> and defines 
            any overriding definitions of components that the containing package wishes to make 
            to the components made available from a library package.</p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element ref="xsl:template"/>
            <xs:element ref="xsl:function"/>
            <xs:element ref="xsl:variable"/>
            <xs:element ref="xsl:param"/>
            <xs:element ref="xsl:attribute-set"/>
          </xs:choice>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
    
  <xs:element name="package">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:choice minOccurs="0" maxOccurs="unbounded">
              <xs:element ref="xsl:expose"/>
              <xs:element ref="xsl:declaration"/>
              <xs:any namespace="##other" processContents="lax"/>
            </xs:choice>
          </xs:sequence>
          <xs:attribute name="declared-modes" type="xsl:yes-or-no"/>
          <xs:attribute name="id" type="xs:ID"/>
          <xs:attribute name="name" type="xs:anyURI"/>
          <xs:attribute name="package-version" type="xs:string"/>
          <xs:attribute name="input-type-annotations" type="xsl:input-type-annotations-type"/>
          <xs:attribute name="fixed-namespaces" type="xsl:fixed-namespaces-type"/>
          <xs:attribute name="_declared-modes" type="xs:string"/>
          <xs:attribute name="_id" type="xs:string"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_package-version" type="xs:string"/>
          <xs:attribute name="_input-type-annotations" type="xs:string"/>
          <xs:attribute name="_fixed-namespaces" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="param" substitutionGroup="xsl:declaration">
    <xs:annotation>
      <xs:documentation>
        <p>Declaration of the <code>xsl:param</code> element, used both defining function
            parameters, template parameters, parameters to <code>xsl:iterate</code>,
            and global stylesheet parameters.</p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="as" type="xsl:sequence-type"/>
          <xs:attribute name="required" type="xsl:yes-or-no"/>
          <xs:attribute name="tunnel" type="xsl:yes-or-no"/>
          <xs:attribute name="static" type="xsl:yes-or-no"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_required" type="xs:string"/>
          <xs:attribute name="_tunnel" type="xs:string"/>
          <xs:attribute name="_static" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
          <xs:assert test="if (normalize-space(@static) = ('yes', 'true', '1')) 
                           then empty((*,text())) 
                           else true()">
            <xs:annotation>
              <xs:documentation>
                <p>
                   When the attribute <code>static="yes"</code> is specified, the <code>xsl:param</code>
                   element must have empty content.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="perform-sort" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:sort" minOccurs="1" maxOccurs="unbounded"/>
            <xs:group ref="xsl:sequence-constructor-group"
                      minOccurs="0"
                      maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:assert test="every $e in subsequence(xsl:sort, 2) 
                           satisfies empty($e/(@stable | @_stable))">
            <xs:annotation>
              <xs:documentation>
                <p>
                   It is a static error if an <code>xsl:sort</code> element other than the first
                   in a sequence of sibling <code>xsl:sort</code> elements has a <code>stable</code>
                   attribute.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="preserve-space" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="elements" type="xsl:nametests"/>
          <xs:attribute name="_elements" type="xs:string"/>
          <xs:assert test="exists(@elements | @_elements)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="processing-instruction" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="name" type="xsl:avt"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="record-type" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:field" minOccurs="0" maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="extensible" type="xsl:yes-or-no"/>
          <xs:attribute name="visibility" type="xsl:visibility-type"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_extensible" type="xs:string"/>
          <xs:attribute name="_visibility" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="result-document" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="format" type="xsl:avt"/>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="href" type="xsl:avt"/>
          <xs:attribute name="type" type="xsl:EQName"/>
          <xs:attribute name="validation" type="xsl:validation-type"/>
          <xs:attribute name="method" type="xsl:avt"/>
          <xs:attribute name="allow-duplicate-names" type="xsl:avt"/>
          <xs:attribute name="build-tree" type="xsl:avt"/>
          <xs:attribute name="byte-order-mark" type="xsl:avt"/>
          <xs:attribute name="cdata-section-elements" type="xsl:avt"/>
          <xs:attribute name="doctype-public" type="xsl:avt"/>
          <xs:attribute name="doctype-system" type="xsl:avt"/>
          <xs:attribute name="encoding" type="xsl:avt"/>
          <xs:attribute name="escape-solidus" type="xsl:avt"/>
          <xs:attribute name="escape-uri-attributes" type="xsl:avt"/>
          <xs:attribute name="html-version" type="xsl:avt"/>
          <xs:attribute name="include-content-type" type="xsl:avt"/>
          <xs:attribute name="indent" type="xsl:avt"/>
          <xs:attribute name="item-separator" type="xsl:avt"/>
          <xs:attribute name="json-lines" type="xsl:avt"/>
          <xs:attribute name="json-node-output-method" type="xsl:avt"/>
          <xs:attribute name="media-type" type="xsl:avt"/>
          <xs:attribute name="normalization-form" type="xsl:avt"/>
          <xs:attribute name="omit-xml-declaration" type="xsl:avt"/>
          <xs:attribute name="parameter-document" type="xsl:avt"/>
          <xs:attribute name="standalone" type="xsl:avt"/>
          <xs:attribute name="suppress-indentation" type="xsl:avt"/>
          <xs:attribute name="undeclare-prefixes" type="xsl:avt"/>
          <xs:attribute name="use-character-maps" type="xsl:EQNames"/>
          <xs:attribute name="output-version" type="xsl:avt"/>
          <xs:attribute name="_format" type="xs:string"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_href" type="xs:string"/>
          <xs:attribute name="_type" type="xs:string"/>
          <xs:attribute name="_validation" type="xs:string"/>
          <xs:attribute name="_method" type="xs:string"/>
          <xs:attribute name="_allow-duplicate-names" type="xs:string"/>
          <xs:attribute name="_build-tree" type="xs:string"/>
          <xs:attribute name="_byte-order-mark" type="xs:string"/>
          <xs:attribute name="_cdata-section-elements" type="xs:string"/>
          <xs:attribute name="_doctype-public" type="xs:string"/>
          <xs:attribute name="_doctype-system" type="xs:string"/>
          <xs:attribute name="_encoding" type="xs:string"/>
          <xs:attribute name="_escape-solidus" type="xs:string"/>
          <xs:attribute name="_escape-uri-attributes" type="xs:string"/>
          <xs:attribute name="_html-version" type="xs:string"/>
          <xs:attribute name="_include-content-type" type="xs:string"/>
          <xs:attribute name="_indent" type="xs:string"/>
          <xs:attribute name="_item-separator" type="xs:string"/>
          <xs:attribute name="_json-lines" type="xs:string"/>
          <xs:attribute name="_json-node-output-method" type="xs:string"/>
          <xs:attribute name="_media-type" type="xs:string"/>
          <xs:attribute name="_normalization-form" type="xs:string"/>
          <xs:attribute name="_omit-xml-declaration" type="xs:string"/>
          <xs:attribute name="_parameter-document" type="xs:string"/>
          <xs:attribute name="_standalone" type="xs:string"/>
          <xs:attribute name="_suppress-indentation" type="xs:string"/>
          <xs:attribute name="_undeclare-prefixes" type="xs:string"/>
          <xs:attribute name="_use-character-maps" type="xs:string"/>
          <xs:attribute name="_output-version" type="xs:string"/>
          <xs:assert test="not(exists(@type | @_type) and exists(@validation | @_validation))">
            <xs:annotation>
              <xs:documentation>
                <p>The <code>type</code> and <code>validation</code> attributes are mutually exclusive
                  (if one is present, the other must be absent).</p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="sequence"
              substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="as" type="xsl:sequence-type"/>
          <xs:attribute name="_as" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="sort">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="lang" type="xsl:avt"/>
          <xs:attribute name="data-type" type="xsl:avt"/>
          <xs:attribute name="order" type="xsl:avt" default="ascending"/>
          <xs:attribute name="case-order" type="xsl:avt"/>
          <xs:attribute name="collation" type="xsl:avt"/>
          <xs:attribute name="stable" type="xsl:avt"/>
          <xs:attribute name="_lang" type="xs:string"/>
          <xs:attribute name="_data-type" type="xs:string"/>
          <xs:attribute name="_order" type="xs:string"/>
          <xs:attribute name="_case-order" type="xs:string"/>
          <xs:attribute name="_collation" type="xs:string"/>
          <xs:attribute name="_stable" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="source-document" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="href" type="xsl:avt"/>
          <xs:attribute name="streamable" type="xsl:yes-or-no" default="no"/>
          <xs:attribute name="use-accumulators" type="xsl:accumulator-names"/>
          <xs:attribute name="type" type="xsl:EQName"/>
          <xs:attribute name="validation" type="xsl:validation-type"/>
          <xs:attribute name="_href" type="xs:string"/>
          <xs:attribute name="_streamable" type="xs:string"/>
          <xs:attribute name="_use-accumulators" type="xs:string"/>
          <xs:attribute name="_type" type="xs:string"/>
          <xs:attribute name="_validation" type="xs:string"/>
          <xs:assert test="exists(@href | @_href)"/>
          <xs:assert test="not(exists(@type | @_type) and exists(@validation | @_validation))">
            <xs:annotation>
              <xs:documentation>
                <p>The <code>type</code> and <code>validation</code> attributes are mutually exclusive
                  (if one is present, the other must be absent).</p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="strip-space" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:attribute name="elements" type="xsl:nametests"/>
          <xs:attribute name="_elements" type="xs:string"/>
          <xs:assert test="exists(@elements | @_elements)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="stylesheet" substitutionGroup="xsl:transform"/>
  <xs:element name="switch" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:when" maxOccurs="unbounded"/>
            <xs:element ref="xsl:otherwise" minOccurs="0"/>
            <xs:element ref="xsl:fallback" minOccurs="0" maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="_select" type="xsl:avt"/>
          <xs:assert test="exists(@select | @_select)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="template" substitutionGroup="xsl:declaration">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:sequence>
            <xs:element ref="xsl:context-item" minOccurs="0" maxOccurs="1"/>
            <xs:element ref="xsl:param" minOccurs="0" maxOccurs="unbounded"/>
            <xs:group ref="xsl:sequence-constructor-group"
                      minOccurs="0"
                      maxOccurs="unbounded"/>
          </xs:sequence>
          <xs:attribute name="match" type="xsl:pattern"/>
          <xs:attribute name="priority" type="xs:decimal"/>
          <xs:attribute name="mode" type="xsl:modes"/>
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="as" type="xsl:sequence-type" default="item()*"/>
          <xs:attribute name="visibility" type="xsl:visibility-not-hidden-type"/>
          <xs:attribute name="_match" type="xs:string"/>
          <xs:attribute name="_priority" type="xs:string"/>
          <xs:attribute name="_mode" type="xs:string"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_visibility" type="xs:string"/>
          <xs:assert test="exists(@match | @_match) or exists(@name | @_name)">
            <xs:annotation>
              <xs:documentation>
                <p>
                   An <code>xsl:template</code> element must have either a <code>match</code> attribute or a
                   <code>name</code> attribute, or both.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="if (empty(@match | @_match)) 
                           then (empty(@mode | @_mode) and empty(@priority | @_priority)) 
                           else true()">
            <xs:annotation>
              <xs:documentation>
                <p>
                   An <code>xsl:template</code> element that has no <code>match</code> attribute must have no
                   <code>mode</code> attribute and no <code>priority</code> attribute.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="not(exists(@visibility | @_visibility) and empty(@name | @_name))">
            <xs:annotation>
              <xs:documentation>
                <p>
                   An <code>xsl:template</code> element that has no <code>name</code> attribute must have no
                   <code>visibility</code> attribute
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="if (normalize-space(@visibility) = 'abstract') 
                           then empty(* except (xsl:context-item, xsl:param)) 
                           else true()">
            <xs:annotation>
              <xs:documentation>
                <p>
                   If the <code>visibility</code> attribute is present with the value <code>abstract</code>
                   then (a) the sequence constructor defining the template body
                   must be empty: that is, the only permitted children are
                   <code>xsl:context-item</code> and <code>xsl:param</code>
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="not(normalize-space(@visibility) = 'abstract' and exists(@match))">
            <xs:annotation>
              <xs:documentation>
                <p>
                   If the <code>visibility</code> attribute is present with the value <code>abstract</code>
                   then there must be no <code>match</code> attribute.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="every $e in xsl:param satisfies empty($e/(@visibility | @_visibility))">
            <xs:annotation>
              <xs:documentation>
                <p>A parameter for a template must have no <code>visibility</code> attribute.</p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="text" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="separator" type="xsl:avt"/>
          <xs:attribute name="disable-output-escaping" type="xsl:yes-or-no" default="no"/>
          <xs:attribute name="_separator" type="xs:string"/>
          <xs:attribute name="_disable-output-escaping" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:complexType name="transform-element-base-type">
    <xs:complexContent>
      <xs:restriction base="xsl:element-only-versioned-element-type">
        <xs:attribute name="version" type="xs:decimal" use="optional"/>
        <xs:attribute name="_version" type="xs:string">
          <xs:annotation>
            <xs:documentation>
              <p>
                 The version attribute indicates the version of XSLT that the
                 stylesheet module requires. The attribute is required, unless the
                 <code>xsl:stylesheet</code> element is a child of an <code>xsl:package</code> element, in
                 which case it is optional: the default is then taken from the
                 parent <code>xsl:package</code> element.
              </p>
            </xs:documentation>
          </xs:annotation>
        </xs:attribute>
        <xs:anyAttribute namespace="##other" processContents="lax"/>
      </xs:restriction>
    </xs:complexContent>
  </xs:complexType>
  <xs:element name="transform">
    <xs:complexType>
      <xs:complexContent>
        <xs:extension base="xsl:transform-element-base-type">
          <xs:sequence>
            <xs:choice minOccurs="0" maxOccurs="unbounded">
              <xs:element ref="xsl:declaration"/>
              <xs:any namespace="##other" processContents="lax"/>
              <!-- weaker than XSLT 1.0 -->
            </xs:choice>
          </xs:sequence>
          <xs:attribute name="id" type="xs:ID"/>
          <xs:attribute name="input-type-annotations"
                        type="xsl:input-type-annotations-type"
                        default="unspecified"/>
          <xs:attribute name="fixed-namespaces"
                        type="xsl:fixed-namespaces-type"/>
          <xs:attribute name="_id" type="xs:string"/>
          <xs:attribute name="_input-type-annotations" type="xs:string"/>
          <xs:attribute name="_fixed-namespaces" type="xs:string"/>
          <!--* The 'static' attribute may be used on 'param' and 'variable'
              * only when they are top-level elements. *-->
          <xs:assert test="every $v in (.//xsl:param, .//xsl:variable)[exists(@static | @_static)] 
                           satisfies $v[parent::xsl:stylesheet or parent::xsl:transform or parent::xsl:override]">
            <xs:annotation>
              <xs:documentation>
                <p>
                   The static attribute must not be present on an <code>xsl:variable</code> or
                   <code>xsl:param</code> element unless it is a top-level element.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="every $prefix in (@exclude-result-prefixes[not(. = '#all')], 
                                             @extension-element-prefixes) 
                           satisfies ((if ($prefix = '#default') then '' else $prefix) = in-scope-prefixes(.))">
            <xs:annotation>
              <xs:documentation>
                <p>
                   XTSE0808: It is a static error if a namespace prefix is used
                   within the <code>[xsl:]exclude-result-prefixes</code> attribute and there is
                   no namespace binding in scope for that prefix.
                </p>
                <p>
                   XTSE0809: It is a static error if the value #default is used
                   within the <code>[xsl:]exclude-result-prefixes</code> attribute and the
                   parent element of the <code>[xsl:]exclude-result-prefixes</code> attribute
                   has no default namespace.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="try" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:versioned-element-type">
          <xs:sequence>
            <xs:group ref="xsl:sequence-constructor-group"
                      minOccurs="0"
                      maxOccurs="unbounded"/>
            <xs:element ref="xsl:catch" minOccurs="1" maxOccurs="1"/>
            <xs:choice minOccurs="0" maxOccurs="unbounded">
              <xs:element ref="xsl:catch"/>
              <xs:element ref="xsl:fallback"/>
            </xs:choice>
          </xs:sequence>
          <xs:attribute name="rollback-output" type="xsl:yes-or-no" default="yes"/>
          <xs:attribute name="select" type="xsl:expression" use="optional"/>
          <xs:attribute name="_rollback-output" type="xs:string"/>
          <xs:attribute name="_select" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="use-package" substitutionGroup="xsl:declaration">
    <xs:annotation>
      <xs:documentation>
        <p>This element appears as a child of <code>xsl:package</code> and defines a dependency
            of the containing package on another package, identified by URI in the <code>name</code>
            attribute. The <code>package-version</code> attribute indicates which version of the
            library package is required, or may indicate a range of versions.</p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:complexContent mixed="false">
        <xs:extension base="xsl:element-only-versioned-element-type">
          <xs:choice minOccurs="0" maxOccurs="unbounded">
            <xs:element ref="xsl:accept"/>
            <xs:element ref="xsl:override"/>
          </xs:choice>
          <xs:attribute name="name" type="xs:anyURI"/>
          <xs:attribute name="package-version" type="xs:string"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_package-version" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="value-of" substitutionGroup="xsl:instruction">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="separator" type="xsl:avt"/>
          <xs:attribute name="disable-output-escaping" type="xsl:yes-or-no" default="no"/>
          <xs:attribute name="_separator" type="xs:string"/>
          <xs:attribute name="_disable-output-escaping" type="xs:string"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="variable" substitutionGroup="xsl:declaration xsl:instruction">
    <xs:annotation>
      <xs:documentation>
        <p>Declaration of the <code>xsl:variable</code> element, used both for local
            and global variable bindings.</p>
        <p>
           This definition takes advantage of the ability in XSD 1.1 for an element
           to belong to more than one substitution group. A global variable is a
           declaration, while a local variable can appear as an instruction in a
           sequence constructor.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="as" type="xsl:sequence-type"/>
          <xs:attribute name="visibility" type="xsl:visibility-not-hidden-type"/>
          <xs:attribute name="static" type="xsl:yes-or-no"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_visibility" type="xs:string"/>
          <xs:attribute name="_static" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
          <xs:assert test="if (normalize-space(@static) = ('yes', 'true', '1')) 
                           then (exists(@_visibility) or normalize-space(@visibility) 
                                       = ('', 'private', 'final')) 
                           else true()">
            <xs:annotation>
              <xs:documentation>
                <p>
                   When the static attribute is present with the value yes, the
                   visibility attribute must not have a value other than private or
                   final.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
          <xs:assert test="if (normalize-space(@static) = ('yes', 'true', '1')) 
                           then (empty((*, text())) and exists(@select | @_select)) 
                           else true()">
            <xs:annotation>
              <xs:documentation>
                <p>
                   When the attribute <code>static="yes"</code> is specified, the <code>xsl:variable</code>
                   element must have empty content, and the <code>select</code> attribute must
                   be present to define the value of the variable.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assert>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <xs:element name="when">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor">
          <xs:attribute name="select" type="xsl:expression"/>
          <xs:attribute name="test" type="xsl:expression"/>
          <xs:attribute name="_select" type="xs:string"/>
          <xs:attribute name="_test" type="xs:string"/>
          <xs:assert test="exists(@test | @_test)"/>
          <xs:assert test="not(exists(@select | @_select) and 
            (exists(* except xsl:fallback) or exists(text()[normalize-space()])))"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  
  <xs:element name="where-populated"
              substitutionGroup="xsl:instruction"
              type="xsl:sequence-constructor"/>
  <xs:element name="with-param">
    <xs:complexType>
      <xs:complexContent mixed="true">
        <xs:extension base="xsl:sequence-constructor-or-select">
          <xs:attribute name="name" type="xsl:EQName"/>
          <xs:attribute name="as" type="xsl:sequence-type"/>
          <xs:attribute name="tunnel" type="xsl:yes-or-no"/>
          <xs:attribute name="_name" type="xs:string"/>
          <xs:attribute name="_as" type="xs:string"/>
          <xs:attribute name="_tunnel" type="xs:string"/>
          <xs:assert test="exists(@name | @_name)"/>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  <xs:annotation>
    <xs:documentation> PART C: definition of literal result elements There are three ways to define
      the literal result elements permissible in a stylesheet. (a) do nothing. This allows any
      element to be used as a literal result element, provided it is not in the XSLT namespace (b)
      declare all permitted literal result elements as members of the <code>xsl:literal-result-element</code>
      substitution group (c) redefine the model group xsl:result-elements to accommodate all
      permitted literal result elements. Literal result elements are allowed to take certain
      attributes in the XSLT namespace. These are defined in the attribute group
      <code>literal-result-element-attributes</code>, which can be included in the definition of any literal
      result element. </xs:documentation>
  </xs:annotation>
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  <xs:element name="literal-result-element" abstract="true" type="xs:anyType"/>
  <xs:attributeGroup name="literal-result-element-attributes">
    <xs:attribute name="default-collation" 
                  form="qualified" 
                  type="xsl:uri-list"/>
    <xs:attribute name="default-mode" 
                  form="qualified"  
                  type="xsl:default-mode-type"/>
    <xs:attribute name="default-validation" 
                  form="qualified" 
                  type="xsl:validation-strip-or-preserve"
                  default="strip"/>
    <xs:attribute name="expand-text" 
                  form="qualified"  
                  type="xsl:yes-or-no"/>
    <xs:attribute name="extension-element-prefixes" 
                  form="qualified" 
                  type="xsl:prefix-list"/>
    <xs:attribute name="exclude-result-prefixes" 
                  form="qualified" 
                  type="xsl:prefix-list-or-all"/>
    <xs:attribute name="xpath-default-namespace" 
                  form="qualified" 
                  type="xs:anyURI"/>
    <xs:attribute name="inherit-namespaces"
                  form="qualified"
                  type="xsl:yes-or-no"
                  default="yes"/>
    <xs:attribute name="use-attribute-sets"
                  form="qualified"
                  type="xsl:EQNames"
                  default=""/>
    <xs:attribute name="use-when" 
                  form="qualified" 
                  type="xsl:expression"/>
    <xs:attribute name="version" 
                  form="qualified" 
                  type="xs:decimal"/>
    <xs:attribute name="type" 
                  form="qualified" 
                  type="xsl:EQName"/>
    <xs:attribute name="validation" 
                  form="qualified" 
                  type="xsl:validation-type"/>
  </xs:attributeGroup>
  <xs:group name="result-elements">
    <xs:choice>
      <xs:element ref="xsl:literal-result-element"/>
      <xs:any namespace="##other" processContents="lax"/>
      <xs:any namespace="##local" processContents="lax"/>
    </xs:choice>
  </xs:group>
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  <xs:annotation>
    <xs:documentation>
      <p>
         PART D: definitions of simple types used in stylesheet attributes
      </p>
    </xs:documentation>
  </xs:annotation>
  <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  <xs:simpleType name="accumulator-names">
    <xs:annotation>
      <xs:documentation>
        <p>
           The <code>use-accumulators</code> attribute of <code>xsl:source-document</code>, 
           <code>xsl:merge-source</code>, or <code>xsl:global-context-item</code>: 
           either a list, each member being a QName; or the value <code>#all</code>
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:union>
      <xs:simpleType>
        <xs:list itemType="xsl:EQName"/>
      </xs:simpleType>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="#all"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType> 
  
  <xs:simpleType name="avt">
    <xs:annotation>
      <xs:documentation>
        <p>
           This type is used for all attributes that allow an attribute value
           template. The general rules for the syntax of attribute value templates,
           and the specific rules for each such attribute, are described in the
           XSLT 4.0 Recommendation.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:string"/>
  </xs:simpleType>
  
  <xs:simpleType name="char">
    <xs:annotation>
      <xs:documentation>
        <p>
           A string containing exactly one character.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:string">
      <xs:length value="1"/>
    </xs:restriction>
  </xs:simpleType>
           
  <xs:simpleType name="char-optionally-expanded">
    <xs:annotation>
      <xs:documentation>
        <p>
           A string containing either a single character, or a single character
           followed by a colon followed by an arbitrary string
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:string">
      <xs:pattern value=".(:.*)?"/>
    </xs:restriction>
  </xs:simpleType> 
           
  <xs:simpleType name="component-kind-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes a kind of component within a package.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="template"/>
      <xs:enumeration value="function"/>
      <xs:enumeration value="variable"/>
      <xs:enumeration value="attribute-set"/>
      <xs:enumeration value="mode"/>
      <xs:enumeration value="*"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="default-mode-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           The <code>default-mode</code> attribute of <code>xsl:stylesheet</code>, 
           <code>xsl:transform</code>, <code>xsl:package</code>
           (or any other xsl:* element): either a QName or #unnamed.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:union memberTypes="xsl:EQName">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="#unnamed"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
  
  <xs:simpleType name="component-test">
    <xs:annotation>
      <xs:documentation>
        <p> A NameTest or a named function reference. </p>
      </xs:documentation>
    </xs:annotation>
    <xs:union memberTypes="xsl:nametest xsl:named-function-reference"/>
  </xs:simpleType>
  <xs:simpleType name="component-tests">
    <xs:annotation>
      <xs:documentation>
        <p> A list of NameTests or named function references</p>
      </xs:documentation>
    </xs:annotation>
    <xs:list itemType="xsl:component-test"/>
  </xs:simpleType>
  <xs:simpleType name="expression">
    <xs:annotation>
      <xs:documentation>
        <p>
           An XPath 4.0 expression.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:pattern value=".+"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="fixed-namespaces-type">
    <xs:annotation>
      <xs:documentation>
        <p>
          A sequence of tokens, each of which may be one of #default, an NCName, a prefix=namespace binding, or a URI
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:list>
      <xs:simpleType>
        <xs:union memberTypes="xsl:fixed-namespaces-type-standard xs:NCName xsl:fixed-namespaces-type-prefix-binding xs:anyURI"/>
      </xs:simpleType>
    </xs:list>
 
  </xs:simpleType>
  
  <xs:simpleType name="fixed-namespaces-type-standard">
    <xs:restriction base="xs:token">
       <xs:enumeration value="#standard"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="fixed-namespaces-type-prefix-binding">
    <xs:restriction base="xs:string">
       <xs:pattern value="([\i-[:]][\c-[:]]*:)=.+"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="item-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           An XPath 4.0 ItemType
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:pattern value=".+"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="input-type-annotations-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes how type annotations in source documents are handled.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="preserve"/>
      <xs:enumeration value="strip"/>
      <xs:enumeration value="unspecified"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="level">
    <xs:annotation>
      <xs:documentation>
        <p>
           The <code>level</code> attribute of <code>xsl:number</code>: 
           one of <code>single</code>, <code>multiple</code>, or <code>any</code>.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="single"/>
      <xs:enumeration value="multiple"/>
      <xs:enumeration value="any"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="mode">
    <xs:annotation>
      <xs:documentation>
        <p>
           The <code>mode</code> attribute of <code>xsl:apply-templates</code>: 
           either a QName, or <code>#current</code>,
           or <code>#unnamed</code>, or <code>#default</code>.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:union memberTypes="xsl:EQName">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="#default"/>
          <xs:enumeration value="#unnamed"/>
          <xs:enumeration value="#current"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
  <xs:simpleType name="modes">
    <xs:annotation>
      <xs:documentation>
        <p>
           The <code>mode</code> attribute of <code>xsl:template</code>: either a list, each member being
           either a QName or <code>#default</code> or <code>#unnamed</code>; or the value <code>#all</code>
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:union>
      <xs:simpleType>
        <xs:restriction>
          <xs:simpleType>
            <xs:list>
              <xs:simpleType>
                <xs:union memberTypes="xsl:EQName">
                  <xs:simpleType>
                    <xs:restriction base="xs:token">
                      <xs:enumeration value="#default"/>
                      <xs:enumeration value="#unnamed"/>
                    </xs:restriction>
                  </xs:simpleType>
                </xs:union>
              </xs:simpleType>
            </xs:list>
          </xs:simpleType>
          <xs:assertion test="count($value) = count(distinct-values($value))">
            <xs:annotation>
              <xs:documentation>
                <p>
                   XTSE0550: It is a static error if the same token is included
                   more than once in the list.
                </p>
              </xs:documentation>
            </xs:annotation>
          </xs:assertion>
        </xs:restriction>
      </xs:simpleType>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="#all"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
   <xs:simpleType name="named-function-reference">
    <xs:annotation>
      <xs:documentation>
        <p> In simple terms, this is an EQName followed by "#arity" where "arity" is a non-negative integer. However,
          XSD doesn't allow us to reuse the definition of EQName in this way, so it has to be defined from scratch. The simplest
          way to do this is with an assertion. However, the assertion cannot exploit types such as <code>xsl:EQName</code> defined in this
        schema</p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:pattern value="((Q\{.*\})|([\i-[:]][\c-[:]]*:))?[\i-[:]][\c-[:]]*#[0-9]+"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="nametest">
    <xs:annotation>
      <xs:documentation>
        <p> A list of NameTests, as defined in the XPath 31 Recommendation. Each NameTest is either
          an EQName, or "*", or "prefix:*", or "*:localname", or the wildcard Q{uri}*. </p>
      </xs:documentation>
    </xs:annotation>
    <xs:union memberTypes="xsl:EQName">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="*"/>
        </xs:restriction>
      </xs:simpleType>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:pattern value="[\i-[:]][\c-[:]]*:\*"/>
          <xs:pattern value="\*:[\i-[:]][\c-[:]]*"/>
          <xs:pattern value="Q\{[^}]*\}\*"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
  <xs:simpleType name="nametests">
    <xs:annotation>
      <xs:documentation>
        <p> A list of NameTests, as defined in the XPath 4.0 Recommendation. Each NameTest is either
          a QName, or "*", or "prefix:*", or "*:localname" </p>
      </xs:documentation>
    </xs:annotation>
    <xs:list itemType="xsl:nametest"/>
  </xs:simpleType>
  
  <xs:simpleType name="on-multiple-match-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes the action to be taken when there are several template rules
           to match an item in a given mode.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="use-last"/>
      <xs:enumeration value="fail"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="on-no-match-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes the action to be taken when there is no template rule to match
           an item in a given mode.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="deep-copy"/>
      <xs:enumeration value="shallow-copy"/>
      <xs:enumeration value="shallow-copy-all"/>
      <xs:enumeration value="deep-skip"/>
      <xs:enumeration value="shallow-skip"/>
      <xs:enumeration value="text-only-copy"/>
      <xs:enumeration value="fail"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="prefix-list-or-all">
    <xs:union memberTypes="xsl:prefix-list">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="#all"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
  <xs:simpleType name="prefix-list">
    <xs:list itemType="xsl:prefix-or-default"/>
  </xs:simpleType>
  <xs:simpleType name="method">
    <xs:annotation>
      <xs:documentation>
        <p>
           The <code>method</code> attribute of <code>xsl:output</code>: Either one of the recognized names
           "xml", "xhtml", "html", "text", "json", or "adaptive",
            or an EQName that must include a prefix or namespace URI.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:union memberTypes="xsl:EQName-in-namespace">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="xml"/>
          <xs:enumeration value="xhtml"/>
          <xs:enumeration value="html"/>
          <xs:enumeration value="text"/>
          <xs:enumeration value="json"/>
          <xs:enumeration value="adaptive"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
  <xs:simpleType name="pattern">
    <xs:annotation>
      <xs:documentation>
        <p>
           A match pattern as defined in the XSLT 4.0 Recommendation. The syntax
           for patterns is a restricted form of the syntax for XPath 4.0
           expressions. 
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xsl:expression"/>
  </xs:simpleType>
  <xs:simpleType name="prefix-or-default">
    <xs:annotation>
      <xs:documentation>
        <p>
           Either a namespace prefix, or <code>#default</code>. Used in the <code>xsl:namespace-alias</code>
           element.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:union memberTypes="xs:NCName">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="#default"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
  <xs:simpleType name="EQNames">
    <xs:annotation>
      <xs:documentation>
        <p>
           A list of QNames. Used in the <code>[xsl:]use-attribute-sets</code> attribute of
           various elements, and in the <code>cdata-section-elements</code> attribute of
           <code>xsl:output</code>.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:list itemType="xsl:EQName"/>
  </xs:simpleType>
  <xs:simpleType name="EQName">
    <xs:annotation>
      <xs:documentation>
        <p>
           An extended QName. This schema does not use the built-in type <code>xs:QName</code>,
           but rather defines its own QName type. This may be either a local name,
           or a prefixed QName, or a name written using the extended QName notation
           <code>Q{uri}local</code>
        </p>
        <p>In XSLT 4.0, where a QName is used in the <code>name</code> attribute
        of (say) <code>xsl:template</code> or <code>xsl:call-template</code>, the prefix
        does not have to be bound in an XML namespace declaration; rather it can be bound
        in a <code>fixed-namespaces</code> attribute on the <code>xsl:stylesheet</code>
        element. Therefore, the built-in <code>xs:QName</code> type cannot be used.
        This schema does not attempt to verify that namespace prefixes have been
        properly declared.</p>
        
      </xs:documentation>
    </xs:annotation>
    <xs:union memberTypes="xs:NCName">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:pattern value="[\i-[:]][\c-[:]]*:[\i-[:]][\c-[:]]*"/>
        </xs:restriction>
      </xs:simpleType>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:pattern value="Q\{[^{}]*\}[\i-[:]][\c-[:]]*"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
  
  <xs:simpleType name="EQName-in-namespace">
    <xs:annotation>
      <xs:documentation>
        <p>
           A subtype of EQNames that excludes no-namespace names
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xsl:EQName">
      <xs:pattern value="Q\{.+\}.+|\i\c*:.+"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="sequence-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           The description of a datatype, conforming to the SequenceType production
           defined in the XPath 4.0 Recommendation
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:pattern value=".+"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="streamability-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes the category to which a function belongs, with regards to its
           streaming behavior.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:union memberTypes="xsl:EQName-in-namespace">
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="unclassified"/>
          <xs:enumeration value="absorbing"/>
          <xs:enumeration value="inspection"/>
          <xs:enumeration value="filter"/>
          <xs:enumeration value="shallow-descent"/>
          <xs:enumeration value="deep-descent"/>
          <xs:enumeration value="ascent"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
  
  <xs:simpleType name="tokens">
    <xs:list itemType="xs:token"/>
  </xs:simpleType>
  <xs:simpleType name="typed-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes whether a mode is designed to match typed or untyped nodes.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="yes"/>
      <xs:enumeration value="no"/>
      <xs:enumeration value="true"/>
      <xs:enumeration value="false"/>
      <xs:enumeration value="1"/>
      <xs:enumeration value="0"/>
      <xs:enumeration value="strict"/>
      <xs:enumeration value="lax"/>
      <xs:enumeration value="unspecified"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="uri-list">
    <xs:list itemType="xs:anyURI"/>
  </xs:simpleType>
  <xs:simpleType name="validation-strip-or-preserve">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes different ways of type-annotating an element or attribute.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xsl:validation-type">
      <xs:enumeration value="preserve"/>
      <xs:enumeration value="strip"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="validation-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes different ways of type-annotating an element or attribute.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="strict"/>
      <xs:enumeration value="lax"/>
      <xs:enumeration value="preserve"/>
      <xs:enumeration value="strip"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="visibility-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes the visibility of a component within a package.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="public"/>
      <xs:enumeration value="private"/>
      <xs:enumeration value="final"/>
      <xs:enumeration value="abstract"/>
      <xs:enumeration value="hidden"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="visibility-not-hidden-type">
    <xs:annotation>
      <xs:documentation>
        <p>
           Describes the visibility of a component within a package.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xsl:visibility-type">
      <xs:enumeration value="public"/>
      <xs:enumeration value="private"/>
      <xs:enumeration value="final"/>
      <xs:enumeration value="abstract"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="yes-or-no">
    <xs:annotation>
      <xs:documentation>
        <p>
           One of the values "yes" or "no": the values "true" or "false", or "1" or
           "0" are accepted as synonyms.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="yes"/>
      <xs:enumeration value="no"/>
      <xs:enumeration value="true"/>
      <xs:enumeration value="false"/>
      <xs:enumeration value="1"/>
      <xs:enumeration value="0"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="yes-or-no-or-maybe">
    <xs:annotation>
      <xs:documentation>
        <p>
           One of the values "yes" or "no" or "omit". The values "true" or "false",
           or "1" or "0" are accepted as synonyms of "yes" and "no" respectively.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="yes"/>
      <xs:enumeration value="no"/>
      <xs:enumeration value="true"/>
      <xs:enumeration value="false"/>
      <xs:enumeration value="1"/>
      <xs:enumeration value="0"/>
      <xs:enumeration value="maybe"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="yes-or-no-or-omit">
    <xs:annotation>
      <xs:documentation>
        <p>
           One of the values "yes" or "no" or "omit". The values "true" or "false",
           or "1" or "0" are accepted as synonyms of "yes" and "no" respectively.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:token">
      <xs:enumeration value="yes"/>
      <xs:enumeration value="no"/>
      <xs:enumeration value="true"/>
      <xs:enumeration value="false"/>
      <xs:enumeration value="1"/>
      <xs:enumeration value="0"/>
      <xs:enumeration value="omit"/>
    </xs:restriction>
  </xs:simpleType>
  
  <xs:simpleType name="zero-digit">
    <xs:annotation>
      <xs:documentation>
        <p>
           A digit that has the numerical value zero.
        </p>
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xsl:char">
      <xs:pattern value="\p{Nd}"/>
      <xs:assertion test="matches(string-join(codepoints-to-string(
           for $i in 0 to 9 return string-to-codepoints($value) + $i), ''), '\p{Nd}{10}')"/>
    </xs:restriction>
  </xs:simpleType>
</xs:schema>
            The following Relax-NG schema may be used to validate XSLT 4.0 stylesheet modules. Similar caveats apply as for the XSD 1.1 version.
A copy of this schema is available at schema-for-xslt30.rnc
TODO: Needs updating for 4.0.
# XSLT 4.0 Relax NG Schema
# 
# Copyright (c) 2010-2016, Mohamed ZERGAOUI (Innovimax)
# Portions © 2024, XQuery and XSLT Extensions Community Group
# 
# All rights reserved.
# 
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer. Redistributions in binary
# form must reproduce the above copyright notice, this list of conditions and
# the following disclaimer in the documentation and/or other materials provided
# with the distribution. Neither the name of the Mohamed ZERGAOUI or Innovimax
# nor the names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
# 
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# 
namespace local = ""
default namespace xsl = "http://www.w3.org/1999/XSL/Transform"
namespace xs = "http://www.w3.org/2001/XMLSchema"
start =
  stylesheet.element
  | transform.element
  | package.element  
  | literal-result-element-as-stylesheet
  
sequence-constructor.model = (instruction.category | literal-result-element | text)*
literal-result-element-as-stylesheet =
  element * - xsl:* {
    attribute xsl:version { decimal.datatype },
    literal-result-element-no-version.atts,
    sequence-constructor.model
  }
literal-result-element =
  element * - xsl:* {
     literal-result-element.atts,
     sequence-constructor.model
  }
literal-result-element.atts =
  literal-result-element-no-version.atts,
  attribute xsl:version { text }?
# These attributes may also appear on a literal result element, but in this case, to distinguish them from user-defined attributes, 
# the names of the attributes are in the XSLT namespace. They are thus typically written as 
# xsl:default-collation,
# xsl:default-mode,
# xsl:default-validation,
# xsl:exclude-result-prefixes,
# xsl:expand-text,
# xsl:extension-element-prefixes,
# xsl:use-when,
# xsl:version,
# or xsl:xpath-default-namespace.
literal-result-element-no-version.atts =
   attribute * - xsl:* { avt.datatype }*
 & attribute xsl:default-collation { uris.datatype }?
 & attribute xsl:default-mode { eqname.datatype | '#unnamed' }?
 & attribute xsl:default-validation  { "preserve" | "strip" }?
 & attribute xsl:exclude-result-prefixes { exclude.prefixes.datatype }? # or prefixes.datatype ?
 & attribute xsl:expand-text { boolean.datatype }?
 & attribute xsl:extension-element-prefixes { extension.prefixes.datatype }? # or prefixes.datatype ?
 & attribute xsl:inherit-namespaces { boolean.datatype }?
 & attribute xsl:on-empty { expression.datatype }?
 & attribute xsl:use-attribute-sets { eqnames.datatype }?
 & attribute xsl:use-when { expression.datatype }?
 & attribute xsl:xpath-default-namespace { xsd:anyURI }?
 & (attribute xsl:type { eqname.datatype }
    | attribute xsl:validation { "strict" | "lax" | "preserve" | "strip" })?
top-level-extension =
  element * - (xsl:* | local:*) {
     anyElement
  }
anyElement =
   grammar {
      start = any
      any =
        (attribute * { text }
         | text
         | element * { any })*
    }
    
extension.atts = attribute * - (xsl:* | local:*) { text }*
declarations.model = (declaration.category | top-level-extension)*
# [Definition: There are a number of standard attributes that may appear on any XSLT element: specifically 
# default-collation, 
# default-mode, 
# default-validation, 
# exclude-result-prefixes, 
# expand-text, 
# extension-element-prefixes, 
# use-when, 
# version, 
# and xpath-default-namespace.]
global.atts = 
   attribute default-collation { uris.datatype }?,
   attribute _default-collation { avt.datatype }?,
   attribute default-mode { eqname.datatype | '#unnamed' }?,
   attribute _default-mode { avt.datatype }?,
   attribute default-validation  { "preserve" | "strip" }?,
   attribute _default-validation { avt.datatype }?,   
   attribute exclude-result-prefixes { exclude.prefixes.datatype }?,
   attribute _exclude-result-prefixes { avt.datatype }?, # or prefixes.datatype ?
   attribute expand-text { boolean.datatype }?,
   attribute _expand-text { avt.datatype }?,
   attribute extension-element-prefixes { extension.prefixes.datatype }?,
   attribute _extension-element-prefixes { avt.datatype }?, # or prefixes.datatype ?
   attribute use-when { expression.datatype }?,
   attribute _use-when { avt.datatype }?,
   attribute version { decimal.datatype }?,
   attribute _version { avt.datatype }?,
   attribute xpath-default-namespace { uri.datatype }?,
   attribute _xpath-default-namespace { avt.datatype }?
   
global.atts.except.version = 
   attribute default-collation { uris.datatype }?,
   attribute _default-collation { avt.datatype }?,
   attribute exclude-result-prefixes { exclude.prefixes.datatype }?,
   attribute _exclude-result-prefixes { avt.datatype }?, # or prefixes.datatype ?
   attribute expand-text { boolean.datatype }?,
   attribute _expand-text { avt.datatype }?,
   attribute extension-element-prefixes { extension.prefixes.datatype }?,
   attribute _extension-element-prefixes { avt.datatype }?, # or prefixes.datatype ?
   attribute use-when { expression.datatype }?,
   attribute _use-when { avt.datatype }?,
   attribute xpath-default-namespace { uri.datatype }?,
   attribute _xpath-default-namespace { avt.datatype }?
   
# In XSLT 4.0, prefixes can be defined with the fixed-namespaces attribute
# on the xsl:stylesheet, so we can't rely on XML declarations for QNames.
qname.strict = xsd:token { pattern = "[\i-[:]][\c-[:]]*:[\i-[:]][\c-[:]]*" }
qname.datatype = xsd:NCName | qname.strict
# Extract from XPath 3.0
#[94]   EQName           ::= QName | URIQualifiedName
#[104]  QName            ::= [http://www.w3.org/TR/REC-xml-names/#NT-QName]Names
#[105]  NCName           ::= [http://www.w3.org/TR/REC-xml-names/#NT-NCName]Names
#[99]   URIQualifiedName ::= BracedURILiteral NCName
#[100]  BracedURILiteral ::= "Q" "{" [^{}]* "}"
uri.qualified.name = xsd:token { pattern = "Q\{[^\{\}]*\}[\i-[:]][\c-[:]]*" } 
eqname.datatype = qname.datatype | uri.qualified.name
qnames.datatype = list { qname.datatype* }
eqnames.datatype = list { eqname.datatype* }
ncname.datatype = xsd:NCName
prefix.datatype = xsd:NCName
boolean.datatype = "yes" | "no" | "true" | "false" | "0" | "1" 
expression.datatype = text
char.datatype = xsd:string { length = "1" }
string.datatype = text
id.datatype = xsd:NCName
tokens.datatype = list { token* }
prefixes.datatype = list { token* }
extension.prefixes.datatype = list { xsd:NCName* }
exclude.prefixes.datatype = list { "#all" | (xsd:NCName | "#default")* }
token.datatype = token
language.datatype = xsd:language
nmtoken.datatype = xsd:NMTOKEN
decimal.datatype = xsd:decimal
integer.datatype = xsd:integer
uri.datatype = xsd:anyURI
uris.datatype = list { xsd:anyURI* }
pattern.datatype = text
qname-but-not-ncname.datatype = xsd:QName { pattern = ".*:.*" }
xs_schema.element = element xs:schema { anyElement* }
item-type.datatype = text
sequence-type.datatype = text
# #standard or NCName or prefix=URI or URI
fixed-namespaces.datatype = xsd:string
select-or-sequence-constructor.model =
  ((attribute select { expression.datatype }
    | attribute _select { avt.datatype })+
   | sequence-constructor.model)
declaration.category =
   use-package.element
 | include.element
 | import.element
 | import-schema.element
 | strip-space.element
 | preserve-space.element
 | decimal-format.element
 | template.element
 | mode.element
 | global-context-item.element
 | variable.element
 | param.element
 | attribute-set.element
 | function.element
 | namespace-alias.element
 | accumulator.element
 | key.element
 | output.element
 | character-map.element
instruction.category =
   apply-templates.element
 | apply-imports.element
 | next-match.element
 | for-each.element
 | iterate.element
 | next-iteration.element
 | break.element
 | if.element
 | choose.element
 | switch.element
 | try.element
 | variable.element
 | call-template.element
 | evaluate.element
 | element.element
 | attribute.element
 | text.element
 | value-of.element
 | document.element
 | processing-instruction.element
 | namespace.element
 | comment.element
 | copy.element
 | copy-of.element
 | sequence.element
 | where-populated.element
 | on-empty.element
 | on-non-empty.element
 | number.element
 | perform-sort.element
 | for-each-group.element
 | merge.element
 | fork.element
 | analyze-string.element
 | source-document.element
 | map.element
 | map-entry.element
 | array.element
 | array-member.element
 | message.element
 | assert.element
 | fallback.element
 | result-document.element
package.element =
   element package {
      extension.atts,
      attribute id { id.datatype }?,
      attribute _id { avt.datatype }?,
      attribute name { uri.datatype }?,
      attribute _name { avt.datatype }?,
      attribute package-version { string.datatype }?,
      attribute _package-version { avt.datatype }?,
      attribute version { decimal.datatype }?,
      attribute _version { avt.datatype }?,
      attribute input-type-annotations { "preserve" | "strip" | "unspecified" }?,
      attribute _input-type-annotations { avt.datatype }?,
      attribute declared-modes { boolean.datatype }?,
      attribute _declared-modes { avt.datatype }?,
      attribute default-mode { eqname.datatype | "#unnamed" }?,
      attribute _default-mode { avt.datatype }?,
      attribute default-validation { "preserve" | "strip" }?,
      attribute _default-validation { avt.datatype }?,
      attribute default-collation { uris.datatype }?,
      attribute _default-collation { avt.datatype }?,
      attribute extension-element-prefixes { prefixes.datatype }?,
      attribute _extension-element-prefixes { avt.datatype }?,
      attribute exclude-result-prefixes { prefixes.datatype }?,
      attribute _exclude-result-prefixes { avt.datatype }?,
      attribute expand-text { boolean.datatype }?,
      attribute _expand-text { avt.datatype }?,
      attribute use-when { expression.datatype }?,
      attribute _use-when { avt.datatype }?,
      attribute xpath-default-namespace { uri.datatype }?,
      attribute _xpath-default-namespace { avt.datatype }?,
      attribute fixed-namespaces { fixed-namespaces.datatype }?,
      attribute _fixed-namespaces { fixed-namespaces.datatype }?,
      ((expose.element | declarations.model)*)
   }
use-package.element =
   element use-package {
      extension.atts,
      global.atts,
      attribute name { uri.datatype }?,
      attribute _name { avt.datatype }?,
      attribute package-version { string.datatype }?,
      attribute _package-version { avt.datatype }?,
      (accept.element | override.element)*
   }
expose.element =
   element expose {
      extension.atts,
      global.atts,
      attribute component { "template" | "function" | "attribute-set" | "variable" | "mode" | "*" }?,
      attribute _component { avt.datatype }?,
      attribute names { tokens.datatype }?,
      attribute _names { avt.datatype }?,
      attribute visibility { "public" | "private" | "final" | "abstract" }?,
      attribute _visibility { avt.datatype }?,
      empty
   }
accept.element =
   element accept {
      extension.atts,
      global.atts,
      (attribute component { "template" | "function" | "attribute-set" | "variable" | "mode" | "*" } |
      attribute _component { avt.datatype })+,
      (attribute names { tokens.datatype } |
      attribute _names { avt.datatype })+,
      (attribute visibility { "public" | "private" | "final" | "abstract" | "hidden" } |
      attribute _visibility { avt.datatype })+,
      empty
   }
override.element =
   element override {
      extension.atts,
      global.atts,
      (template.element | function.element | variable.element | param.element | attribute-set.element)*
   }
stylesheet.element =
   element stylesheet {
      extension.atts,
      attribute id { id.datatype }?,
      attribute _id { avt.datatype }?,
      attribute version { decimal.datatype }?,
      attribute _version { avt.datatype }?,
      attribute default-mode { eqname.datatype | "#unnamed" }?,
      attribute _default-mode { avt.datatype }?,
      attribute default-validation { "preserve" | "strip" }?,
      attribute _default-validation { avt.datatype }?,
      attribute input-type-annotations { "preserve" | "strip" | "unspecified" }?,
      attribute _input-type-annotations { avt.datatype }?,
      attribute default-collation { uris.datatype }?,
      attribute _default-collation { avt.datatype }?,
      attribute extension-element-prefixes { prefixes.datatype }?,
      attribute _extension-element-prefixes { avt.datatype }?,
      attribute exclude-result-prefixes { prefixes.datatype }?,
      attribute _exclude-result-prefixes { avt.datatype }?,
      attribute expand-text { boolean.datatype }?,
      attribute _expand-text { avt.datatype }?,
      attribute use-when { expression.datatype }?,
      attribute _use-when { avt.datatype }?,
      attribute xpath-default-namespace { uri.datatype }?,
      attribute _xpath-default-namespace { avt.datatype }?,
      attribute fixed-namespaces { fixed-namespaces.datatype }?,
      attribute _fixed-namespaces { fixed-namespaces.datatype }?,
      (declarations.model)
   }
transform.element =
   element transform {
      extension.atts,
      attribute id { id.datatype }?,
      attribute _id { avt.datatype }?,
      attribute version { decimal.datatype }?,
      attribute _version { avt.datatype }?,
      attribute default-mode { eqname.datatype | "#unnamed" }?,
      attribute _default-mode { avt.datatype }?,
      attribute default-validation { "preserve" | "strip" }?,
      attribute _default-validation { avt.datatype }?,
      attribute input-type-annotations { "preserve" | "strip" | "unspecified" }?,
      attribute _input-type-annotations { avt.datatype }?,
      attribute default-collation { uris.datatype }?,
      attribute _default-collation { avt.datatype }?,
      attribute extension-element-prefixes { prefixes.datatype }?,
      attribute _extension-element-prefixes { avt.datatype }?,
      attribute exclude-result-prefixes { prefixes.datatype }?,
      attribute _exclude-result-prefixes { avt.datatype }?,
      attribute expand-text { boolean.datatype }?,
      attribute _expand-text { avt.datatype }?,
      attribute use-when { expression.datatype }?,
      attribute _use-when { avt.datatype }?,
      attribute xpath-default-namespace { uri.datatype }?,
      attribute _xpath-default-namespace { avt.datatype }?,
      attribute fixed-namespaces { fixed-namespaces.datatype }?,
      attribute _fixed-namespaces { fixed-namespaces.datatype }?,
      (declarations.model)
   }
include.element =
   element include {
      extension.atts,
      global.atts,
      attribute href { uri.datatype }?,
      attribute _href { avt.datatype }?,
      empty
   }
import.element =
   element import {
      extension.atts,
      global.atts,
      (attribute href { uri.datatype }
      | attribute _href { avt.datatype })+,
      empty
   }
import-schema.element =
   element import-schema {
      extension.atts,
      global.atts,
      attribute namespace { uri.datatype }?,
      attribute _namespace { avt.datatype }?,
      attribute schema-location { uri.datatype }?,
      attribute _schema-location { avt.datatype }?,
      xs_schema.element?
   }
strip-space.element =
   element strip-space {
      extension.atts,
      global.atts,
      (attribute elements { tokens.datatype }
      | attribute _elements { avt.datatype })+,
      empty
   }
preserve-space.element =
   element preserve-space {
      extension.atts,
      global.atts,
      (attribute elements { tokens.datatype }
      | attribute _elements { avt.datatype })+,
      empty
   }
decimal-format.element =
   element decimal-format {
      extension.atts,
      global.atts,
      attribute name { eqname.datatype }?,
      attribute _name { avt.datatype }?,
      attribute decimal-separator { char.datatype }?,
      attribute _decimal-separator { avt.datatype }?,
      attribute grouping-separator { char.datatype }?,
      attribute _grouping-separator { avt.datatype }?,
      attribute infinity { string.datatype }?,
      attribute _infinity { avt.datatype }?,
      attribute minus-sign { char.datatype }?,
      attribute _minus-sign { avt.datatype }?,
      attribute exponent-separator { char.datatype }?,
      attribute _exponent-separator { avt.datatype }?,
      attribute NaN { string.datatype }?,
      attribute _NaN { avt.datatype }?,
      attribute percent { char.datatype }?,
      attribute _percent { avt.datatype }?,
      attribute per-mille { char.datatype }?,
      attribute _per-mille { avt.datatype }?,
      attribute zero-digit { char.datatype }?,
      attribute _zero-digit { avt.datatype }?,
      attribute digit { char.datatype }?,
      attribute _digit { avt.datatype }?,
      attribute pattern-separator { char.datatype }?,
      attribute _pattern-separator { avt.datatype }?,
      empty
   }
template.element =
   element template {
      extension.atts,
      global.atts,
      (attribute match { pattern.datatype }
      | attribute _match { avt.datatype }
      | attribute name { eqname.datatype }
      | attribute _name { avt.datatype })+,
      attribute priority { decimal.datatype }?,
      attribute _priority { avt.datatype }?,
      attribute mode { list { '#all' | ('#default' | '#unnamed' | eqname.datatype)* } }?,
      attribute _mode { avt.datatype }?,
      attribute as { sequence-type.datatype }?,
      attribute _as { avt.datatype }?,
      attribute visibility { "public" | "private" | "final" | "abstract" }?,
      attribute _visibility { avt.datatype }?,
      (context-item.element?, param.element*, sequence-constructor.model)
   }
apply-templates.element =
   element apply-templates {
      extension.atts,
      global.atts,
      attribute select { expression.datatype }?,
      attribute _select { avt.datatype }?,
      attribute mode { (eqname.datatype | '#unnamed' | '#default' | '#current') }?,
      attribute _mode { avt.datatype }?,
      attribute separator { avt.datatype }?,
      attribute _separator { avt.datatype }?,
      (sort.element | with-param.element)*
   }
mode.element =
   element mode {
      extension.atts,
      global.atts,
      attribute name { eqname.datatype }?,
      attribute _name { avt.datatype }?,
      attribute streamable { boolean.datatype }?,
      attribute _streamable { avt.datatype }?,
      attribute on-no-match { "deep-copy" | "shallow-copy" | "shallow-copy-all" | "deep-skip" | "shallow-skip" | "text-only-copy" | "fail" }?,
      attribute _on-no-match { avt.datatype }?,
      attribute on-multiple-match { "use-last" | "fail" }?,
      attribute _on-multiple-match { avt.datatype }?,
      attribute warning-on-no-match { boolean.datatype }?,
      attribute _warning-on-no-match { avt.datatype }?,
      attribute warning-on-multiple-match { boolean.datatype }?,
      attribute _warning-on-multiple-match { avt.datatype }?,
      attribute typed { boolean.datatype | "strict" | "lax" | "unspecified" }?,
      attribute _typed { avt.datatype }?,
      attribute visibility { "public" | "private" | "final" }?,
      attribute _visibility { avt.datatype }?,
      attribute use-accumulators { tokens.datatype }?,
      attribute _use-accumulators { avt.datatype }?,
      empty
   }
context-item.element =
   element context-item {
      extension.atts,
      global.atts,
      attribute as { item-type.datatype }?,
      attribute _as { avt.datatype }?,
      attribute use { "required" | "optional" | "absent" }?,
      attribute _use { avt.datatype }?,
      empty
   }
global-context-item.element =
   element global-context-item {
      extension.atts,
      global.atts,
      attribute as { item-type.datatype }?,
      attribute _as { avt.datatype }?,
      attribute use { "required" | "optional" | "absent" }?,
      attribute _use { avt.datatype }?,
      empty
   }
apply-imports.element =
   element apply-imports {
      extension.atts,
      global.atts,
      with-param.element*
   }
next-match.element =
   element next-match {
      extension.atts,
      global.atts,
      (with-param.element | fallback.element)*
   }
for-each.element =
   element for-each {
      extension.atts,
      global.atts,
      (attribute select { expression.datatype }
      | attribute _select { avt.datatype })+,
      (sort.element*, sequence-constructor.model)
   }
iterate.element =
   element iterate {
      extension.atts,
      global.atts,
      (attribute select { expression.datatype }
      | attribute _select { avt.datatype })+,
      (param.element*, on-completion.element?, sequence-constructor.model)
   }
next-iteration.element =
   element next-iteration {
      extension.atts,
      global.atts,
      (with-param.element*)
   }
break.element =
   element break {
      extension.atts,
      global.atts,
      (attribute select { expression.datatype }
      | attribute _select { avt.datatype })?,
      sequence-constructor.model
   }
on-completion.element =
   element on-completion {
      extension.atts,
      global.atts,
      attribute select { expression.datatype }?,
      attribute _select { avt.datatype }?,
      sequence-constructor.model
   }
if.element =
   element if {
      extension.atts,
      global.atts,
      (attribute test { expression.datatype }
      | attribute _test { avt.datatype })+,
      sequence-constructor.model
   }
choose.element =
   element choose {
      extension.atts,
      global.atts,
      (when.element+, otherwise.element?)
   }
when.element =
   element when {
      extension.atts,
      global.atts,
      (attribute test { expression.datatype }
      | attribute _test { avt.datatype })+,
      select-or-sequence-constructor.model
   }
otherwise.element =
   element otherwise {
      extension.atts,
      global.atts,
      select-or-sequence-constructor.model
   }
switch.element =
  element switch {
    extension.atts,
    global.atts,
    (attribute select { expression.datatype }
    | attribute _select { avt.datatype })+,
    (when.element+, otherwise.element?, fallback.element*)
  }
try.element =
   element try {
      extension.atts,
      global.atts,
      attribute select { expression.datatype }?,
      attribute _select { avt.datatype }?,
      attribute rollback-output { boolean.datatype }?,
      attribute _rollback-output { avt.datatype }?,
      (sequence-constructor.model, catch.element, (catch.element | fallback.element)*)
   }
catch.element =
   element catch {
      extension.atts,
      global.atts,
      attribute errors { tokens.datatype }?,
      attribute _errors { avt.datatype }?,
      select-or-sequence-constructor.model
   }
variable.element =
   element variable {
      extension.atts,
      global.atts,
      (attribute name { eqname.datatype }
      | attribute _name { avt.datatype })+,
      attribute as { sequence-type.datatype }?,
      attribute _as { avt.datatype }?,
      attribute static { boolean.datatype }?,
      attribute _static { avt.datatype }?,
      attribute visibility { "public" | "private" | "final" | "abstract" }?,
      attribute _visibility { avt.datatype }?,
      select-or-sequence-constructor.model
   }
param.element =
   element param {
      extension.atts,
      global.atts,
      (attribute name { eqname.datatype }
      | attribute _name { avt.datatype })+,
      attribute as { sequence-type.datatype }?,
      attribute _as { avt.datatype }?,
      attribute required { boolean.datatype }?,
      attribute _required { avt.datatype }?,
      attribute tunnel { boolean.datatype }?,
      attribute _tunnel { avt.datatype }?,
      attribute static { boolean.datatype }?,
      attribute _static { avt.datatype }?,
      select-or-sequence-constructor.model
   }
with-param.element =
   element with-param {
      extension.atts,
      global.atts,
      (attribute name { eqname.datatype }
      | attribute _name { avt.datatype })+,
      attribute as { sequence-type.datatype }?,
      attribute _as { avt.datatype }?,
      attribute tunnel { boolean.datatype }?,
      attribute _tunnel { avt.datatype }?,
      select-or-sequence-constructor.model
   }
call-template.element =
   element call-template {
      extension.atts,
      global.atts,
      (attribute name { eqname.datatype }
      | attribute _name { avt.datatype })+,
      with-param.element*
   }
attribute-set.element =
   element attribute-set {
      extension.atts,
      global.atts,
      (attribute name { eqname.datatype }
      | attribute _name { avt.datatype })+,
      attribute use-attribute-sets { eqnames.datatype }?,
      attribute _use-attribute-sets { avt.datatype }?,
      attribute visibility { "public" | "private" | "final" | "abstract" }?,
      attribute _visibility { avt.datatype }?,
      attribute streamable { boolean.datatype }?,
      attribute _streamable { avt.datatype }?,
      attribute.element*
   }
function.element =
   element function {
      extension.atts,
      global.atts,
      (attribute name { eqname.datatype }
      | attribute _name { avt.datatype })+,
      attribute as { sequence-type.datatype }?,
      attribute _as { avt.datatype }?,
      attribute visibility { "public" | "private" | "final" | "abstract" }?,
      attribute _visibility { avt.datatype }?,
      attribute streamability { "unclassified" | "absorbing" | "inspection" | "filter" | "shallow-descent" | "deep-descent" | "ascent" | eqname.datatype }?,
      attribute _streamability { avt.datatype }?,
      attribute override-extension-function { boolean.datatype }?,
      attribute _override-extension-function { avt.datatype }?,
      attribute override { boolean.datatype }?,
      attribute _override { avt.datatype }?,
      attribute new-each-time { "yes" | "true" | "1" | "no" | "false" | "0" | "maybe" }?,
      attribute _new-each-time { avt.datatype }?,
      attribute cache { boolean.datatype }?,
      attribute _cache { avt.datatype }?,
      (param.element*, sequence-constructor.model)
   }
evaluate.element =
   element evaluate {
      extension.atts,
      global.atts,
      (attribute xpath { expression.datatype }
      | attribute _xpath { avt.datatype })+,
      attribute as { sequence-type.datatype }?,
      attribute _as { avt.datatype }?,
      attribute base-uri { uri.datatype | avt.datatype }?,
      attribute _base-uri { avt.datatype }?,
      attribute with-params { expression.datatype }?,
      attribute _with-params { avt.datatype }?,
      attribute context-item { expression.datatype }?,
      attribute _context-item { avt.datatype }?,
      attribute namespace-context { expression.datatype }?,
      attribute _namespace-context { avt.datatype }?,
      attribute schema-aware { boolean.datatype | avt.datatype }?,
      attribute _schema-aware { avt.datatype }?,
      (with-param.element | fallback.element)*
   }
namespace-alias.element =
   element namespace-alias {
      extension.atts,
      global.atts,
      (attribute stylesheet-prefix { prefix.datatype | "#default" }
      | attribute _stylesheet-prefix { avt.datatype })+,
      (attribute result-prefix { prefix.datatype | "#default" }
      | attribute _result-prefix { avt.datatype })+,
      empty
   }
element.element =
   element element {
      extension.atts,
      global.atts,
      (attribute name { qname.datatype | avt.datatype }
      | attribute _name { avt.datatype })+,
      attribute namespace { uri.datatype | avt.datatype }?,
      attribute _namespace { avt.datatype }?,
      attribute inherit-namespaces { boolean.datatype }?,
      attribute _inherit-namespaces { avt.datatype }?,
      attribute use-attribute-sets { eqnames.datatype }?,
      attribute _use-attribute-sets { avt.datatype }?,
      ((attribute type { eqname.datatype }?,
      attribute _type { avt.datatype }?) |
      (attribute validation { "strict" | "lax" | "preserve" | "strip" }?,
      attribute _validation { avt.datatype }? )), # type and validation are mutually exclusive
      sequence-constructor.model
   }
attribute.element =
   element attribute {
      extension.atts,
      global.atts,
      (attribute name { qname.datatype | avt.datatype }
      | attribute _name { avt.datatype })+,
      attribute namespace { uri.datatype | avt.datatype }?,
      attribute _namespace { avt.datatype }?,
      attribute separator { string.datatype | avt.datatype }?,
      attribute _separator { avt.datatype }?,
      ((attribute type { eqname.datatype }?,
      attribute _type { avt.datatype }?) |
      (attribute validation { "strict" | "lax" | "preserve" | "strip" }?,
      attribute _validation { avt.datatype }? )), # type and validation are mutually exclusive
      select-or-sequence-constructor.model
   }
text.element =
   element text {
      extension.atts,
      global.atts,
      attribute disable-output-escaping { boolean.datatype }?,
      attribute _disable-output-escaping { avt.datatype }?,
      text
   }
value-of.element =
   element value-of {
      extension.atts,
      global.atts,
      attribute separator { string.datatype | avt.datatype }?,
      attribute _separator { avt.datatype }?,
      attribute disable-output-escaping { boolean.datatype }?,
      attribute _disable-output-escaping { avt.datatype }?,
      select-or-sequence-constructor.model
   }
document.element =
   element document {
      extension.atts,
      global.atts,
      ((attribute type { eqname.datatype }?,
      attribute _type { avt.datatype }?) |
      (attribute validation { "strict" | "lax" | "preserve" | "strip" }?,
      attribute _validation { avt.datatype }? )), # type and validation are mutually exclusive
      sequence-constructor.model
   }
processing-instruction.element =
   element processing-instruction {
      extension.atts,
      global.atts,
      (attribute name { ncname.datatype | avt.datatype }
      | attribute _name { avt.datatype })+,
      select-or-sequence-constructor.model
   }
namespace.element =
   element namespace {
      extension.atts,
      global.atts,
      (attribute name { ncname.datatype | avt.datatype }
      | attribute _name { avt.datatype })+,
      select-or-sequence-constructor.model
   }
comment.element =
   element comment {
      extension.atts,
      global.atts,
      select-or-sequence-constructor.model
   }
copy.element =
   element copy {
      extension.atts,
      global.atts,
      attribute copy-namespaces { boolean.datatype }?,
      attribute _copy-namespaces { avt.datatype }?,
      attribute inherit-namespaces { boolean.datatype }?,
      attribute _inherit-namespaces { avt.datatype }?,
      attribute use-attribute-sets { eqnames.datatype }?,
      attribute _use-attribute-sets { avt.datatype }?,
      ((attribute type { eqname.datatype }?,
      attribute _type { avt.datatype }?) |
      (attribute validation { "strict" | "lax" | "preserve" | "strip" }?,
      attribute _validation { avt.datatype }? )), # type and validation are mutually exclusive
      sequence-constructor.model
   }
copy-of.element =
   element copy-of {
      extension.atts,
      global.atts,
      (attribute select { expression.datatype }
      | attribute _select { avt.datatype })+,
      attribute copy-accumulators { boolean.datatype }?,
      attribute _copy-accumulators { avt.datatype }?,
      attribute copy-namespaces { boolean.datatype }?,
      attribute _copy-namespaces { avt.datatype }?,
      ((attribute type { eqname.datatype }?,
      attribute _type { avt.datatype }?) |
      (attribute validation { "strict" | "lax" | "preserve" | "strip" }?,
      attribute _validation { avt.datatype }? )), # type and validation are mutually exclusive
      empty
   }
sequence.element =
   element sequence {
      extension.atts,
      global.atts,
      attribute as { sequence-type.datatype }?,
      attribute _as { avt.datatype }?,
      select-or-sequence-constructor.model
   }
where-populated.element =
   element where-populated {
      extension.atts,
      global.atts,
      sequence-constructor.model
   }
on-empty.element =
   element on-empty {
      extension.atts,
      global.atts,
      select-or-sequence-constructor.model
   }
on-non-empty.element =
   element on-non-empty {
      extension.atts,
      global.atts,
      select-or-sequence-constructor.model
   }
number.element =
   element number {
      extension.atts,
      global.atts,
      attribute value { expression.datatype }?,
      attribute _value { avt.datatype }?,
      attribute select { expression.datatype }?,
      attribute _select { avt.datatype }?,
      attribute level { "single" | "multiple" | "any" }?,
      attribute _level { avt.datatype }?,
      attribute count { pattern.datatype }?,
      attribute _count { avt.datatype }?,
      attribute from { pattern.datatype }?,
      attribute _from { avt.datatype }?,
      attribute format { string.datatype | avt.datatype }?,
      attribute _format { avt.datatype }?,
      attribute lang { language.datatype | avt.datatype }?,
      attribute _lang { avt.datatype }?,
      attribute letter-value { "alphabetic" | "traditional" | avt.datatype }?,
      attribute _letter-value { avt.datatype }?,
      attribute ordinal { string.datatype | avt.datatype }?,
      attribute _ordinal { avt.datatype }?,
      attribute start-at { integer.datatype | avt.datatype }?,
      attribute _start-at { avt.datatype }?,
      attribute grouping-separator { char.datatype | avt.datatype }?,
      attribute _grouping-separator { avt.datatype }?,
      attribute grouping-size { integer.datatype | avt.datatype }?,
      attribute _grouping-size { avt.datatype }?,
      empty
   }
sort.element =
   element sort {
      extension.atts,
      global.atts,
      attribute lang { language.datatype | avt.datatype }?,
      attribute _lang { avt.datatype }?,
      attribute order { "ascending" | "descending" | avt.datatype }?,
      attribute _order { avt.datatype }?,
      attribute collation { uri.datatype | avt.datatype }?,
      attribute _collation { avt.datatype }?,
      attribute stable { boolean.datatype | avt.datatype }?,
      attribute _stable { avt.datatype }?,
      attribute case-order { "upper-first" | "lower-first" | avt.datatype }?,
      attribute _case-order { avt.datatype }?,
      attribute data-type { "text" | "number" | eqname.datatype | avt.datatype }?,
      attribute _data-type { avt.datatype }?,
      select-or-sequence-constructor.model
   }
perform-sort.element =
   element perform-sort {
      extension.atts,
      global.atts,
      attribute select { expression.datatype }?,
      attribute _select { avt.datatype }?,
      (sort.element+, sequence-constructor.model)
   }
for-each-group.element =
   element for-each-group {
      extension.atts,
      global.atts,
      (attribute select { expression.datatype }
      | attribute _select { avt.datatype })+,
      ((attribute group-by { expression.datatype }?,
      attribute _group-by { avt.datatype }?) |
      (attribute group-adjacent { expression.datatype }?,
      attribute _group-adjacent { avt.datatype }?) |
      (attribute group-starting-with { pattern.datatype }?,
      attribute _group-starting-with { avt.datatype }?) |
      (attribute group-ending-with { pattern.datatype }?,
      attribute _group-ending-with { avt.datatype }?)),
      attribute composite { boolean.datatype }?,
      attribute _composite { avt.datatype }?,
      attribute collation { uri.datatype | avt.datatype }?,
      attribute _collation { avt.datatype }?,
      (sort.element*, sequence-constructor.model)
   }
merge.element =
   element merge {
      extension.atts,
      global.atts,
      (merge-source.element+, merge-action.element, fallback.element*)
   }
merge-source.element =
   element merge-source {
      extension.atts,
      global.atts,
      attribute name { ncname.datatype }?,
      attribute _name { avt.datatype }?,
      attribute for-each-item { expression.datatype }?,
      attribute _for-each-item { avt.datatype }?,
      attribute for-each-stream { expression.datatype }?,
      attribute _for-each-stream { avt.datatype }?,
      (attribute select { expression.datatype }
      | attribute _select { avt.datatype })+,
      attribute streamable { boolean.datatype }?,
      attribute _streamable { avt.datatype }?,
      attribute use-accumulators { tokens.datatype }?,
      attribute _use-accumulators { avt.datatype }?,
      attribute sort-before-merge { boolean.datatype }?,
      attribute _sort-before-merge { avt.datatype }?,
      attribute validation { "strict" | "lax" | "preserve" | "strip" }?,
      attribute _validation { avt.datatype }?,
      attribute type { eqname.datatype }?,
      attribute _type { avt.datatype }?,
      attribute for-each-source { expression.datatype }?,
      attribute _for-each-source { avt.datatype }?,
      merge-key.element+
   }
merge-key.element =
   element merge-key {
      extension.atts,
      global.atts,
      attribute select { expression.datatype }?,
      attribute _select { avt.datatype }?,
      attribute lang { language.datatype | avt.datatype }?,
      attribute _lang { avt.datatype }?,
      attribute order { "ascending" | "descending" | avt.datatype }?,
      attribute _order { avt.datatype }?,
      attribute collation { uri.datatype | avt.datatype }?,
      attribute _collation { avt.datatype }?,
      attribute case-order { "upper-first" | "lower-first" | avt.datatype }?,
      attribute _case-order { avt.datatype }?,
      attribute data-type { "text" | "number" | eqname.datatype | avt.datatype }?,
      attribute _data-type { avt.datatype }?,
      sequence-constructor.model
   }
merge-action.element =
   element merge-action {
      extension.atts,
      global.atts,
      sequence-constructor.model
   }
fork.element =
   element fork {
      extension.atts,
      global.atts,
      (fallback.element*, ((sequence.element, fallback.element*)* | (for-each-group.element, fallback.element*)))
   }
analyze-string.element =
   element analyze-string {
      extension.atts,
      global.atts,
      (attribute select { expression.datatype }
      | attribute _select { avt.datatype })+,
      (attribute regex { string.datatype | avt.datatype }
      | attribute _regex { avt.datatype })+,
      attribute flags { string.datatype | avt.datatype }?,
      attribute _flags { avt.datatype }?,
      (matching-substring.element?, non-matching-substring.element?, fallback.element*)
   }
matching-substring.element =
   element matching-substring {
      extension.atts,
      global.atts,
      select-or-sequence-constructor.model
   }
non-matching-substring.element =
   element non-matching-substring {
      extension.atts,
      global.atts,
      select-or-sequence-constructor.model
   }
source-document.element =
   element source-document {
      extension.atts,
      global.atts,
      (attribute href { uri.datatype | avt.datatype }
      | attribute _href { avt.datatype })+,
      attribute use-accumulators { tokens.datatype }?,
      attribute _use-accumulators { avt.datatype }?,
      ((attribute type { eqname.datatype }?,
      attribute _type { avt.datatype }?) |
      (attribute validation { "strict" | "lax" | "preserve" | "strip" }?,
      attribute _validation { avt.datatype }? )), # type and validation are mutually exclusive
      attribute streamable { boolean.datatype }?,
      attribute _streamable { avt.datatype }?,
      sequence-constructor.model
   }
accumulator.element =
   element accumulator {
      extension.atts,
      global.atts,
      (attribute name { eqname.datatype }
      | attribute _name { avt.datatype }),
      (attribute initial-value { expression.datatype }
      | attribute _initial-value { avt.datatype }),
      attribute as { sequence-type.datatype }?,
      attribute _as { avt.datatype }?,
      attribute streamable { boolean.datatype }?,
      attribute _streamable { avt.datatype }?,
      accumulator-rule.element+
   }
accumulator-rule.element =
   element accumulator-rule {
      extension.atts,
      global.atts,
      (attribute match { pattern.datatype } |
      attribute _match { avt.datatype })+,
      attribute phase { "start" | "end" }?,
      attribute _phase { avt.datatype }?,
      select-or-sequence-constructor.model
   }
key.element =
   element key {
      extension.atts,
      global.atts,
      (attribute name { eqname.datatype }
      | attribute _name { avt.datatype })+,
      (attribute match { pattern.datatype }
      | attribute _match { avt.datatype })+,
      attribute use { expression.datatype }?,
      attribute _use { avt.datatype }?,
      attribute composite { boolean.datatype }?,
      attribute _composite { avt.datatype }?,
      attribute collation { uri.datatype }?,
      attribute _collation { avt.datatype }?,
      sequence-constructor.model
   }
map.element =
   element map {
      extension.atts,
      global.atts,
      select-or-sequence-constructor.model
   }
# TODO: add @duplicates
map-entry.element =
   element map-entry {
      extension.atts,
      global.atts,
      (attribute key { expression.datatype }
      | attribute _key { avt.datatype }),
      select-or-sequence-constructor.model
   }
array.element =
  element array {
    extension.atts,
    global.atts,
    select-or-sequence-constructor.model
  }
array-member.element =
  element array-member {
    extension.atts,
    global.atts,
    select-or-sequence-constructor.model
  }
message.element =
   element message {
      extension.atts,
      global.atts,
      attribute terminate { boolean.datatype | avt.datatype }?,
      attribute _terminate { avt.datatype }?,
      attribute error-code { eqname.datatype | avt.datatype }?,
      attribute _error-code { avt.datatype }?,
      select-or-sequence-constructor.model
   }
assert.element =
   element assert {
      extension.atts,
      global.atts,
      (attribute test { expression.datatype }
      | attribute _test { avt.datatype })+,
      attribute select { expression.datatype }?,
      attribute _select { avt.datatype }?,
      attribute error-code { eqname.datatype | avt.datatype }?,
      attribute _error-code { avt.datatype }?,
      sequence-constructor.model
   }
fallback.element =
   element fallback {
      extension.atts,
      global.atts,
      sequence-constructor.model
   }
result-document.element =
   element result-document {
      extension.atts,
      global.atts,
      attribute format { eqname.datatype | avt.datatype }?,
      attribute _format { avt.datatype }?,
      attribute href { uri.datatype | avt.datatype }?,
      attribute _href { avt.datatype }?,
      ((attribute type { eqname.datatype }?,
      attribute _type { avt.datatype }?) |
      (attribute validation { "strict" | "lax" | "preserve" | "strip" }?,
      attribute _validation { avt.datatype }? )), # type and validation are mutually exclusive      
      attribute method { "xml" | "html" | "xhtml" | "text" | "json" | "adaptive" | eqname.datatype | avt.datatype }?,
      attribute _method { avt.datatype }?,
      attribute allow-duplicate-names { boolean.datatype | avt.datatype }?,
      attribute _allow-duplicate-names { avt.datatype }?,
      attribute build-tree { boolean.datatype | avt.datatype }?,
      attribute _build-tree { avt.datatype }?,
      attribute byte-order-mark { boolean.datatype | avt.datatype }?,
      attribute _byte-order-mark { avt.datatype }?,
      attribute cdata-section-elements { eqnames.datatype | avt.datatype }?,
      attribute _cdata-section-elements { avt.datatype }?,
      attribute doctype-public { string.datatype | avt.datatype }?,
      attribute _doctype-public { avt.datatype }?,
      attribute doctype-system { string.datatype | avt.datatype }?,
      attribute _doctype-system { avt.datatype }?,
      attribute encoding { string.datatype | avt.datatype }?,
      attribute _encoding { avt.datatype }?,
      attribute escape-uri-attributes { boolean.datatype | avt.datatype }?,
      attribute _escape-uri-attributes { avt.datatype }?,
      attribute html-version { decimal.datatype | avt.datatype }?,
      attribute _html-version { avt.datatype }?,
      attribute include-content-type { boolean.datatype | avt.datatype }?,
      attribute _include-content-type { avt.datatype }?,
      attribute indent { boolean.datatype | avt.datatype }?,
      attribute _indent { avt.datatype }?,
      attribute item-separator { string.datatype | avt.datatype }?,
      attribute _item-separator { avt.datatype }?,
      attribute json-node-output-method { "xml" | "html" | "xhtml" | "text" | eqname.datatype | avt.datatype }?,
      attribute _json-node-output-method { avt.datatype }?,
      attribute media-type { string.datatype | avt.datatype }?,
      attribute _media-type { avt.datatype }?,
      attribute normalization-form { "NFC" | "NFD" | "NFKC" | "NFKD" | "fully-normalized" | "none" | nmtoken.datatype | avt.datatype }?,
      attribute _normalization-form { avt.datatype }?,
      attribute omit-xml-declaration { boolean.datatype | avt.datatype }?,
      attribute _omit-xml-declaration { avt.datatype }?,
      attribute parameter-document { uri.datatype | avt.datatype }?,
      attribute _parameter-document { avt.datatype }?,
      attribute standalone { boolean.datatype | "omit" | avt.datatype }?,
      attribute _standalone { avt.datatype }?,
      attribute suppress-indentation { eqnames.datatype | avt.datatype }?,
      attribute _suppress-indentation { avt.datatype }?,
      attribute undeclare-prefixes { boolean.datatype | avt.datatype }?,
      attribute _undeclare-prefixes { avt.datatype }?,
      attribute use-character-maps { eqnames.datatype }?,
      attribute _use-character-maps { avt.datatype }?,
      attribute output-version { nmtoken.datatype | avt.datatype }?,
      attribute _output-version { avt.datatype }?,
      sequence-constructor.model
   }
output.element =
   element output {
      extension.atts,
      global.atts.except.version,
      attribute name { eqname.datatype }?,
      attribute _name { avt.datatype }?,
      attribute method { "xml" | "html" | "xhtml" | "text" | "json" | "adaptive" | eqname.datatype }?,
      attribute _method { avt.datatype }?,
      attribute allow-duplicate-names { boolean.datatype }?,
      attribute _allow-duplicate-names { avt.datatype }?,
      attribute build-tree { boolean.datatype }?,
      attribute _build-tree { avt.datatype }?,
      attribute byte-order-mark { boolean.datatype }?,
      attribute _byte-order-mark { avt.datatype }?,
      attribute cdata-section-elements { eqnames.datatype }?,
      attribute _cdata-section-elements { avt.datatype }?,
      attribute doctype-public { string.datatype }?,
      attribute _doctype-public { avt.datatype }?,
      attribute doctype-system { string.datatype }?,
      attribute _doctype-system { avt.datatype }?,
      attribute encoding { string.datatype }?,
      attribute _encoding { avt.datatype }?,
      attribute escape-uri-attributes { boolean.datatype }?,
      attribute _escape-uri-attributes { avt.datatype }?,
      attribute html-version { decimal.datatype }?,
      attribute _html-version { avt.datatype }?,
      attribute include-content-type { boolean.datatype }?,
      attribute _include-content-type { avt.datatype }?,
      attribute indent { boolean.datatype }?,
      attribute _indent { avt.datatype }?,
      attribute item-separator { string.datatype }?,
      attribute _item-separator { avt.datatype }?,
      attribute json-node-output-method { "xml" | "html" | "xhtml" | "text" | eqname.datatype }?,
      attribute _json-node-output-method { avt.datatype }?,
      attribute media-type { string.datatype }?,
      attribute _media-type { avt.datatype }?,
      attribute normalization-form { "NFC" | "NFD" | "NFKC" | "NFKD" | "fully-normalized" | "none" | nmtoken.datatype }?,
      attribute _normalization-form { avt.datatype }?,
      attribute omit-xml-declaration { boolean.datatype }?,
      attribute _omit-xml-declaration { avt.datatype }?,
      attribute parameter-document { uri.datatype }?,
      attribute _parameter-document { avt.datatype }?,
      attribute standalone { boolean.datatype | "omit" }?,
      attribute _standalone { avt.datatype }?,
      attribute suppress-indentation { eqnames.datatype }?,
      attribute _suppress-indentation { avt.datatype }?,
      attribute undeclare-prefixes { boolean.datatype }?,
      attribute _undeclare-prefixes { avt.datatype }?,
      attribute use-character-maps { eqnames.datatype }?,
      attribute _use-character-maps { avt.datatype }?,
      attribute version { nmtoken.datatype }?,
      attribute _version { avt.datatype }?,
      empty
   }
character-map.element =
   element character-map {
      extension.atts,
      global.atts,
      (attribute name { eqname.datatype }
      | attribute _name { avt.datatype })+,
      attribute use-character-maps { eqnames.datatype }?,
      attribute _use-character-maps { avt.datatype }?,
      (output-character.element*)
   }
output-character.element =
   element output-character {
      extension.atts,
      global.atts,
      (attribute character { char.datatype }
      | attribute _character { avt.datatype })+,
      (attribute string { string.datatype }
      | attribute _string { avt.datatype })+,
      empty
   }
avt.datatype =
  xsd:string
# {
#    pattern =
#      """([^\{\}]|\{\{|\}\}|\{([^"'\{\}]|"[^"]*"|'[^']*')+\})*""" # this regexp will not work in all the case.
#      }
            Use the arrows to browse significant changes since the 3.0 version of this specification.
Sections with significant changes are marked Δ in the table of contents.
                     Named item types can be declared using the new xsl:item-type
                     element. This is designed to avoid repeating lengthy type definitions (for example
                     function types) every time they are used. [This feature was
                     present in the editor's draft presented to the WG when it started work.]
                  
                  The xsl:for-each and xsl:apply-templates
                  instructions acquire an attribute separator that can be
                  used to insert content between adjacent items. [This change was in the
                  editor's draft adopted as a baseline when the WG commenced work.]
               
PR 751 1386
                     The result type of a mode can be declared using an as attribute. The result type
                  of all template rules in this mode must be consistent with this, as must the values returned
                  by any built-in template rules for the mode.
                  
                  The xsl:for-each and xsl:apply-templates
                  instructions acquire an attribute separator that can be
                  used to insert content between adjacent items. [This change was in the
                  editor's draft adopted as a baseline when the WG commenced work.]
               
PR 2200 2236
Stylesheet functions may now be in no namespace, and may be invoked without use of a namespace prefix, provided they are private to a package.
                     Numeric values of type xs:decimal are compared
                     as decimals, without first converting to xs:double.
                  
               Functions that accept a lexical QName as an argument, such as key,
               function-available, element-available,
               type-available, system-property,
               accumulator-before, and accumulator-after,
               now have the option of supplying an xs:QName value instead.
               [This change was in the editor's draft accepted by the WG as its baseline when
               it started work.]
            
               Functions that accept a lexical QName as an argument, such as key,
               function-available, element-available,
               type-available, system-property,
               accumulator-before, and accumulator-after,
               now have the option of supplying an xs:QName value instead.
               [This change was in the editor's draft accepted by the WG as its baseline when
               it started work.]
            
It is possible to invoke a named template using an extension instruction, specifically, an element whose name matches the name of the named template.
See 10.1.3 Invoking Named Templates using Extension Instructions
                     A new attribute xsl:map/@duplicates is available,
                  allowing control over how duplicate keys are handled by the xsl:map
                  instruction.
                  
                        The semantics of patterns using the intersect and except
                        operators have been changed to reflect the intuitive meaning: for example
                        a node now matches A except B if it matches A
                        and does not match B.
                     
               A new attribute xsl:for-each-group/@split-when is available to
               give applications more complete control over how a sequence is partitioned
            
See 14 Grouping
User-defined functions can now have names that are in
               no namespace. An unprefixed name appearing in a function call is resolved
               to a no-namespace function with matching local name in preference to
               a function in the standard fn namespace.
                     Duplicate xsl:include declarations within a stylesheet level are
                     now ignored, preventing spurious errors caused by the presence of duplicate named components.
                  
Named record types are introduced.
                  The contents of a character map declared using xsl:character-map are now
                  available dynamically via a new character-map function.
               
                  New variables err:stack-trace, err:additional, 
                  and err:map are available within an xsl:catch clause.
               
See 8.4 Try/Catch
                  The input to the serializer can be defined using the select attribute
                  of xsl:result-document as an alternative to using a sequence constructor.
               
It is no longer an intrinsic error for a global variable to refer to itself; this is now permitted, for example in cases where the value of the global variable is a recursive inline function. Cases where self-reference would not make sense are covered by the existing rules on circularities: see 9.11 Circular Definitions.
                  The default value for the indent parameter is now defined to be
                  no for all output methods other than html and xhtml.
               
                  The xsl:map instruction allows a select attribute
                  as an alternative to the contained sequence constructor.
               
                  The xsl:map-entry instruction, in common with other instructions,
                  now raises error XTSE3185 (rather than XTSE3280) if both a select
                  attribute and a sequence constructor are present.
               
                     Composite sort keys are allowed in xsl:sort.
                  
                     The xsl:mode declaration acquires an attribute
                     copy-namespaces which determines whether or not the built-in
                     template rule copies unused namespace bindings.
                  
The default priority for a template rule using a union pattern has changed. This change may cause incompatible behavior.
                  The xsl:apply-imports and xsl:next-match instructions automatically
                  pass supplied parameters to the overridden template rule.
               
               A new attribute xsl:for-each-group/@merge-when is available to
               give applications control to create groups based on clustering, overlap, and networks.
            
See 14 Grouping
JNode Patterns are new in 4.0.
PR 159
Parameters on functions
                     declared using xsl:function can now be defined as optional,
                     with a default value supplied.
PR 237
                  The xsl:if instruction now allows then and else
                  attributes.
               
See 8.1 Conditional Processing with xsl:if
                  In xsl:choose, the xsl:when and
                  xsl:otherwise elements can take a select attribute
                  in place of a sequence constructor. 
               
See 8.2 Conditional Processing with xsl:choose
                  A new xsl:switch instruction is introduced.
               
PR 326
The higher-order-function feature no longer exists; higher-order functions are now a core part of XSLT, no longer an optional extra.
See 27 Conformance
PR 353
                  A new attribute, main-module, is added to the xsl:stylesheet
                  element. The attribute is provided for the benefit of development tools such as syntax-directed
                  editors to provide information about all the components (variables, functions, etc) visible
                  within a stylesheet module.
               
                     A new element xsl:note is available for documentation and similar purposes:
                     it can appear anywhere in the stylesheet and is ignored by the XSLT processor.
                  
PR 401
                        Patterns (especially those used in template rules) can now be defined
                        by reference to item types, so any item type can be used as a match
                        pattern. For example match="record(longitude, latitude, *)"
                        matches any map that includes the key values "longitude"
                        and "latitude".
                     
PR 406
                  The new instruction xsl:array is introduced
                  to allow construction of arrays.
               
PR 470
                     The xsl:stylesheet, xsl:transform, or xsl:package
                     element may have a fixed-namespaces attribute making it easier to have the same
                     namespace declarations in force throughout a stylesheet.
                  
PR 489
                  The xsl:matching-substring and xsl:non-matching-substring
                  elements within xsl:analyze-string may now take a select attribute
                  in place of a contained sequence constructor.
               
PR 534
                  A new serialization parameter escape-solidus is provided to control
                  whether the character / is escaped as \/ by the
                  JSON serialization method.
               
PR 542
                     A mode (called an enclosing mode) can be defined in which all the relevant 
                     template rules are children of the xsl:mode element.
                     This is intended to allow a stylesheet design in which it is easier to
                     determine which rules might apply to a given xsl:apply-templates
                     call.
                  
PR 599
                  Simplified stylesheets no longer require an xsl:version attribute
                  (which means they might not need a declaration of the XSLT namespace). Unless otherwise
                  specified, a 4.0 simplified stylesheet defaults expand-text to true.
               
PR 635
The rules concerning the compatibility of schemas imported by different packages have been clarified. It is now explicitly stated that instructions that trigger validation must use the imported schema of the package in which validation is invoked. This differs from the current practice of some XSLT 3.0 processors, which may use (for example) a schema formed from the union of the imported schemas in all packages.
See 3.15 Importing Schema Components
See 25.4 Validation
PR 717
                     Capturing accumulators have been added; when streaming with a capturing accumulator,
                     the accumulator-after has full access to a snapshot of the matched
                     element node.
                  
PR 718
                  To allow recursive-descent transformation on a tree of maps and arrays, a new
                  set of built-in templates rules shallow-copy-all is introduced.
               
PR 751
                     The xsl:mode declaration acquires an attribute
                     as="sequence-type" which declares the return type of 
                     all template rules in that mode.
                  
PR 1181
                     The [xsl:]xpath-default-namespace attribute can be set to the value
                     ##any, which causes unprefixed element names to match in any namespace
                     or none.
                  
See 5.1.2 Unprefixed Lexical QNames in Expressions and Patterns
PR 1250
The strings used in the formatted number to represent a decimal separator, grouping separator, exponent separator, percent sign, per mille sign, or minus sign, are no longer constrained to be single characters.
PR 1254
                  The rules concerning the interpretation of xsi:schemaLocation
                  and xsi:noNamespaceSchemaLocation attributes have been tightened up.
               
See 25.4 Validation
See 25.4 Validation
PR 1306
                  An as attribute is available on the xsl:sequence instruction.
               
PR 1361
The term atomic value has been replaced by atomic item.
See 2.1 Terminology
PR 1378
                        A function call at the outermost level can now be named using any valid EQName
                        (for example fn:doc) provided it binds to one of the permitted functions
                        fn:doc, fn:id, fn:element-with-id, 
                        fn:key, or fn:root. 
                        If two functions are called, for example doc('a.xml')/id('abc'),
                        it is no longer necessary to put the second call in parentheses.
                     
PR 1442
                  Default priorities are added for new forms of ElementTest and AttributeTest,
                  for example element(p:*) and element(a|b).
               
PR 1622
The rules for equality comparison have changed to bring keys into line with maps.
See 20.2.2 fn:key
New in 4.0.
PR 1689
Composite merge keys are now allowed.
See 15 Merging
PR 1703
Ordered maps are introduced.
PR 1819
Different parts of a stylesheet may now use different imported schemas.
See 2.10 Stylesheets and XML Schemas
                  The standard attribute [xsl:]schema-role is introduced, to allow 
                  different parts of a stylesheet to use different schemas.
               
Different parts of a stylesheet may now use different imported schemas.
See 3.15 Importing Schema Components
A stylesheet can import multiple schemas with different schema role names.
PR 1856
The rules have been adjusted to allow for new capabilities in regular expressions, such as zero-width assertions.
PR 1858
 The xsl:record instruction is introduced
                     to make construction of record maps simpler. 
                       Attribute xsl:record/@xsl:duplicates is added to control duplicate keys handling in the xsl:record
                       instruction.
                   
PR 1888
A new XSLT element, xsl:package-location is provide
                      to indicate to the processor where the required package is to be found.
PR 2006
A new function fn:apply-templates is introduced.
PR 2008
                  The xsl:select instruction is new in 4.0.
               
PR 2015
                  A variable-binding with no as or select attribute no longer
                  attempts to create an implicit document node if the sequence constructor contains
                  an xsl:map, xsl:array, or xsl:select
                  child instruction.
               
PR 2030
In order to reduce duplication between the XSLT and XQuery specifications, description of the validation process has been moved to the Functions and Operators specification.
See 25.4 Validation
PR 2251
                  The xsl:text instruction can now have a select attribute,
                  and it can take a sequence constructor as its content. The only remaining distinction
                  between the xsl:text and xsl:value-of instructions
                  is that whitespace text node children of xsl:text are treated
                  as significant, rather than being stripped during stylesheet preprocessing.
               
A number of changes affecting XSLT 4.0 have been made in other related specifications. Some of the more significant changes are as follows:
A number of new kinds of ItemType are introduced, for example choice item types, record types, and enumeration types.
The coercion rules (previously “function conversion rules”) allow atomic items
                  of primitive types to be supplied where a restricted type is required: for example
                  if the required type is xs:positiveInteger, it is now acceptable to supply the
                  value 42.
XPath 4.0 introduces abbreviated syntax for  inline functions
                  (for example fn($x, $y) { $x + $y }).
This section lists all known incompatibilities with XSLT 3.0, that is, situations
               where a stylesheet that is error-free
            according to the XSLT 3.0 specification and where all elements have an effective version
            of 3.0 or less, will produce different results depending on whether it is
            run under an XSLT 3.0 processor or an XSLT 4.0 processor.
The rules for comparing values in xsl:for-each-group now reference
               the rules for distinct-values, which have themselves changed
               to be compatible with fn:atomic-equal. This change eliminates the intransitivity
               in the previous specification, which meant that in edge cases involving rounding of numeric values
               of different types, two items in different groups could compare equal. Any change in behavior
               is confined to this edge case.
The rules for matching nodes against patterns using the intersect
               and except operators have changed to deliver a more intuitive result.
The rules for comparing values in keys have changed, to align with the rules for maps. The changes affect edge cases involving rounding of numeric values of different types, and the comparison of date/time values with and without timezones.
In previous versions, a template rule whose match pattern was a union pattern and that had no explicity priority was treated as equivalent to a set of template rules, one for each alternative in the union, each potentially with different default priority. This rule has not been carried forward into XSLT 4.0: instead, the priority of the rule is taken as being the highest priority of any of the alternatives.
In XSLT 4.0, an xsl:apply-imports or xsl:next-match
               instruction automatically passes on the values of any non-tunnel parameters that were
               present in its own invocation. This means that the template rule invoked by 
               xsl:apply-imports or xsl:next-match, if it declares
               a default value for such a parameter, will take the implicitly-supplied value in 
               preference to the default value.
This change in the specification applies only if the effective version
               of the xsl:apply-imports or xsl:next-match is 4.0 or greater.
               This means that 3.0 behavior can be retained by adding the attribute version="3.0"
               to the instruction, or to some ancestor element (for example, the xsl:stylesheet
               or xsl:transform element).
This specification also corrects a number of errors and omissions in XSLT 3.0, in a way that might create incompatibilities for some processors, depending on how they interpreted the XSLT 3.0 specification:
XSLT 3.0 (and earlier releases) did not fully define the evaluation context for the
            default values of template parameters. For example, if the default value of a parameter of a 
            template rule invoked xsl:next-match, it was not specified whether the
            current template rule should be the calling template or the called template. This omission has
            been corrected.
Where different packages import different schemas, the specification is now more prescriptive about which schema is used for validation. The rules may differ from the conventions adopted by implementations of XSLT 3.0.
XSLT 3.0 failed to specify a default value for the serialization parameter indent
               where the serialization method is json or adaptive. XSLT 4.0 specifies
               a default value of no.
See also [XPath 4.0], [Functions and Operators 4.0], and [Serialization 4.0] for incompatibilities in other related specifications that may affect XSLT stylesheets.