XML Tutorial/XSLT stylesheet/system property

Материал из Web эксперт
Версия от 18:22, 25 мая 2010; (обсуждение)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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.ru/"
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"


Get system property with system-property() function

File: Data.xml

File: Transform.xslt
<?xml version="1.0"?>
<!-- system-property1.xsl -->
<xsl:stylesheet version="1.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>"</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.ru/"


Getting Java system properties with system-property()

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;Getting Java system properties with system-property():</xsl:text>
    <xsl:text>&#xA;&#xA;  java.version = "</xsl:text>
    <xsl:value-of select="system-property("java.version")"/>
    <xsl:text>"&#xA;  path.separator = "</xsl:text>
    <xsl:value-of select="system-property("path.separator")"/>
    <xsl:text>"&#xA;  file.separator = "</xsl:text>
    <xsl:value-of select="system-property("file.separator")"/>
    <xsl:text>"&#xA;  user.name = "</xsl:text>
    <xsl:value-of select="system-property("user.name")"/>
    <xsl:text>"&#xA;  user.country = "</xsl:text>
    <xsl:value-of select="system-property("user.country")"/>
    <xsl:text>"</xsl:text>
  </xsl:template>
</xsl:stylesheet>
Output:

Getting Java system properties with system-property():
  java.version = "1.6.0_02"
  path.separator = ";"
  file.separator = "\"
  user.name = "Joe"
  user.country = "US"