XSLT StyleSheet XML Tutorial

File: Transform.xslt

  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  
  
     A test of the system-property() function:
       xsl:version = "
    
    "
      xsl:vendor = "
    
    "
      xsl:vendor-url = "
    
    " XSLT 2.0 properties:
      xsl:product-name = "
    
    "
      xsl:product-version = "
    
    "
      xsl:is-schema-aware = "
    
    "
      xsl:supports-serialization = "
          select="system-property('xsl:supports-serialization')"/>
    "
      xsl:supports-backwards-compatibility = "
          select="system-property('xsl:supports-backwards-compatibility')"/>
    "
  

Output:
A test of the system-property() function:
  xsl:version = "2.0"
  xsl:vendor = "SAXON 9.1.0.2 from Saxonica"
  xsl:vendor-url = "http://www.saxonica.com/"
XSLT 2.0 properties:
  xsl:product-name = "SAXON"
  xsl:product-version = "9.1.0.2"
  xsl:is-schema-aware = "no"
  xsl:supports-serialization = "yes"
  xsl:supports-backwards-compatibility = "yes"