|  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
 | | 
 
 
 
 |  |  |  | 
        XSLT NamespaceThe XML namespace for XSLT. An XML namespace is a 
        collection of element and attribute names, identified by a Unique Resource Identifier (URI), which often takes the form of
        a URL, but is really just a unique string, not a pointer to a web page. The XSLT namespace URI is
        https://www.w3.org/1999/XSL/Transform. In each XSLT stylesheet, you must declare this namespace in the stylesheet element
        tag and bind it to a local prefix. Like the XSLT specification, we always use xsl as the XSLT namespace prefix in our
        descriptions and examples, although you are free to bind any prefix to this namespace.
 
XSL InstructionAny tag associated with the XSLT namespace.
 
TemplateAn element, usually with child elements, that specifies a "rule" or set of 
        instructions to perform when a particular kind of node is encountered in the source tree.
 
XSL Template InstructionAny tag that occurs inside an xsl:template element and is associated with the XSLT namespace.
 
Source TreeThe XML tree input to the XSL process.
 
Result TreeThe tree that is output by the XSL process.
 
Stylesheet TreeThe stylesheet tree produced from the XSL file.
 
Match PatternThe part of a template that defines the kind(s) of nodes to which the template applies.
 
 For more definitions of XSLT terminology, see Dave Pawson's 
      XSLT Terminology
      Clarification and the Glossary in Michael Kay's 
      XSLT Programmer's Reference. | 
 
 | 
 |