A test of the system-property() function : system property « XSLT stylesheet « XML Tutorial

XML Tutorial
1. Introduction
2. Namespace
3. XML Schema
4. XPath
5. XSLT stylesheet
Java
XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML Tutorial » XSLT stylesheet » system property 
5. 75. 2. A test of the system-property() function
File: Transform.xslt

<?xml version="1.0"?>
<xsl:stylesheet version="2.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  <xsl:output method="text"/>

  <xsl:template match="/">
    <xsl:text>&#xA;A test of the system-property() function:</xsl:text>
    <xsl:text>&#xA;&#xA;  xsl:version = "</xsl:text>
    <xsl:value-of select="system-property('xsl:version')"/>
    <xsl:text>"&#xA;</xsl:text>
    <xsl:text>  xsl:vendor = "</xsl:text>
    <xsl:value-of select="system-property('xsl:vendor')"/>
    <xsl:text>"&#xA;</xsl:text>
    <xsl:text>  xsl:vendor-url = "</xsl:text>
    <xsl:value-of select="system-property('xsl:vendor-url')"/>
    <xsl:text>"&#xA;&#xA;XSLT 2.0 properties:&#xA;&#xA;</xsl:text>
    <xsl:text>  xsl:product-name = "</xsl:text>
    <xsl:value-of select="system-property('xsl:product-name')"/>
    <xsl:text>"&#xA;</xsl:text>
    <xsl:text>  xsl:product-version = "</xsl:text>
    <xsl:value-of select="system-property('xsl:product-version')"/>
    <xsl:text>"&#xA;</xsl:text>
    <xsl:text>  xsl:is-schema-aware = "</xsl:text>
    <xsl:value-of select="system-property('xsl:is-schema-aware')"/>
    <xsl:text>"&#xA;</xsl:text>
    <xsl:text>  xsl:supports-serialization = "</xsl:text>
    <xsl:value-of 
      select="system-property('xsl:supports-serialization')"/>
    <xsl:text>"&#xA;</xsl:text>
    <xsl:text>  xsl:supports-backwards-compatibility = "</xsl:text>
    <xsl:value-of 
      select="system-property('xsl:supports-backwards-compatibility')"/>
    <xsl:text>"</xsl:text>
  </xsl:template>

</xsl:stylesheet>

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"
5. 75. system property
5. 75. 1. Get system property with system-property() function
5. 75. 2. A test of the system-property() function
5. 75. 3. Getting Java system properties with system-property()
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.