<html>
<head>
<title>system-property() ֐</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div id="">
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
<tr>
<td valign="top" class="NAME">system-property() ֐</td>
<td valign="top" class="COMPATIBILITY">&nbsp;</td>
</tr>
<tr>
<td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
</tr>
<tr>
<td valign="top" colspan="2" class="description">
֐̃p[^ɂĖOtVXevpeB̒lԂ܂B</td></tr>
<tr>
<td colspan="2" class="CLEARSEPARATION">&nbsp;</td>
</tr>
<tr>
<td colspan="2" class="TITLE"></td>
</tr>
<tr>
<td colspan="2" class="description">
<p>
`ɂAׂĂ XSLT vZbT͎ 3 ̃VXevpeBT|[gKv܂B
</p>
<dl>
<dt>
<span class="LITERAL"> xsl:version </span>
</dt>
<dd>
 XSLT vZbTɂĎꂽ XSLT ̃o[W\_B_ł́AXSLT vZbTɂăT|[gĂ XSLT ̗B̐ȃo[W <span class="LITERAL"> 1.0 </span> łB
<P></p>
<dt>
<span class="LITERAL"> xsl:vendor </span>
</dt>
<dd>
 XSLT vZbT̃x_[ʂ镶B
<P></p>
<dt>
<span class="LITERAL"> xsl:vendor-url </span>
</dt>
<dd>
XSLT vZbT̃x_[ʂ URL ܂ޕB́̕Aʏ̓x_[ Web TCg̃z[y[WɂȂ܂B
<P></p>
</dl>
</td>
</tr>
<tr>
<td colspan="2" class="CLEARSEPARATION">&nbsp;</td>
</tr>
<tr>
<td colspan="2" class="TITLE"></td>
</tr>
<tr>
<td colspan="2" class="description">
<!--<?troff .hw vendor?>-->
<p>  
XSLT 1.0 dlł́A<span class="LITERAL">xsl:version</span>A<span class="LITERAL">xsl:vendor</span>A <span class="LITERAL">xsl:vendor-url</span>  3 ̃vpeB`Ă܂B̃vpeB́AׂĂ XSLT vZbTT|[gKv܂B̑̃vpeB͌ʂ̃vZbTŃT|[gĂꍇ܂BڍׂɂẮAvZbT̃}jAQƂĂB</p>
</td>
</tr>
<tr>
<td colspan="2" class="CLEARSEPARATION">&nbsp;</td>
</tr>
<tr>
<td colspan="2" class="TITLE">o</td>
</tr>
<tr>
<td colspan="2" class="description">
<p>NG[vpeB̒lB </p>
</td>
</tr>
<tr>
<td colspan="2" class="CLEARSEPARATION">&nbsp;</td>
</tr>
<tr>
<td colspan="2" class="TITLE">`</td>
</tr>
<tr>
<td colspan="2" class="description">
<p>XSLT 12.4 ߁uMiscellaneous Additional Functionsv </p>
</td>
</tr>
<tr>
<td colspan="2" class="CLEARSEPARATION">&nbsp;</td>
</tr>
<tr>
<td colspan="2" class="TITLE"></td>
</tr>
<tr>
<td colspan="2" class="description">
<p>XSLT vZbT̈قȂvpeBNG[X^CV[gɎ܂B</p>
<span class="PROGRAMLISTING"><pre>
&lt;?xml version="1.0"?&gt;
&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;
  
  &lt;xsl:output method="text"/&gt;

  &lt;xsl:variable name="newline"&gt;
&lt;xsl:text&gt;
&lt;/xsl:text&gt;
  &lt;/xsl:variable&gt;

  &lt;xsl:template match="/"&gt;
    &lt;xsl:text&gt;xsl:version = "&lt;/xsl:text&gt;
    &lt;xsl:value-of select="system-property('xsl:version')"/&gt;
    &lt;xsl:text&gt;"&lt;/xsl:text&gt;&lt;xsl:value-of select="$newline"/&gt;
    &lt;xsl:text&gt;xsl:vendor = "&lt;/xsl:text&gt;
    &lt;xsl:value-of select="system-property('xsl:vendor')"/&gt;
    &lt;xsl:text&gt;"&lt;/xsl:text&gt;&lt;xsl:value-of select="$newline"/&gt;
    &lt;xsl:text&gt;xsl:vendor-url = "&lt;/xsl:text&gt;
<!--<?troff .Nd 10?>-->
    &lt;xsl:value-of select="system-property('xsl:vendor-url')"/&gt;
    &lt;xsl:text&gt;"&lt;/xsl:text&gt;&lt;xsl:value-of select="$newline"/&gt;
  &lt;/xsl:template&gt;

&lt;/xsl:stylesheet&gt;</pre></span>

<p>Xalan XSLT vZbTgpĔCӂ XML hLgɑ΂ăX^CV[gKpꍇ (̃R}hɂČĂяo) ̗Ɏ܂B</p>

<span class="PROGRAMLISTING"><pre>
java org.apache.xalan.xslt.Process -in test1.xml -xsl systemproperties.xsl</pre></span>

<p>ʂ͎̂ƂłB</p>
<span class="PROGRAMLISTING"><pre>
xsl:version = "1"
xsl:vendor = "Apache Software Foundation"
xsl:vendor-url = "http://xml.apache.org/xalan"
</pre></span>

<p>̃R}h́AMichael Kay  Saxon vZbTɂ錋ʂĂяo܂B</p>

<span class="PROGRAMLISTING"><pre>
java com.icl.saxon.StyleSheet test1.xml systemproperties.xsl</pre></span>

<p>ʂ͎̂ƂłB</p>

<span class="PROGRAMLISTING"><pre>
xsl:version = "1"                                                      
xsl:vendor = "SAXON 6.4.3 from Michael Kay"                     
xsl:vendor-url = "http://saxon.sourceforge.net"</pre></span>

<p>Oracle  XML p[T[̂悤ɌĂяo܂B</p>

<span class="PROGRAMLISTING"><pre>
java oracle.xml.parser.v2.oraxsl test1.xml systemproperties.xsl</pre></span>

<p>ʂ͎̂ƂłB</p>
<span class="PROGRAMLISTING"><pre>
xsl:version = "1"
xsl:vendor = "Oracle Corporation."
xsl:vendor-url = "http://www.oracle.com"</pre></span>
<p>James Clark  XT vZbT̂悤ɌĂяo܂B</p> 

<span class="PROGRAMLISTING"><pre>
java com.jclark.xsl.sax.Driver test1.xml systemproperties.xsl</pre></span>

<p>ʂ͎̂ƂłB</p>
<span class="PROGRAMLISTING"><pre>
xsl:version = "1"
xsl:vendor = "James Clark"
xsl:vendor-url = "http://www.jclark.com/"
</pre></span>
<p>ŌɁAMicrosoft  XSLT vZbT̂悤ɌĂяo܂B</p>

<span class="PROGRAMLISTING"><pre>msxsl test1.xml systemproperties.xsl</pre></span>
<!--<?troff .Nd 10?>-->
<p>ʂ͎̂ƂłB</p>
<span class="PROGRAMLISTING"><pre>
xsl:version = "1"
xsl:vendor = "Microsoft"
xsl:vendor-url = "http://www.microsoft.com"</pre></span>

</td>
</tr>
</table>
</div>
</body>
</html>
