XSLT は、テンプレート エンジンとして使用されます。パラメータを使用してデータを相互に転送するテンプレートの構造があります。
<xsl:template match="/" mode="common-page">
<xsl:param name="page-content"/>
…
<xsl:copy-of select="$page-content"/>
…
</xsl:template>
そのテンプレートを呼び出します:
<xsl:template match="/">
<xsl:apply-templates select="." mode="common-page">
<xsl:with-param name="page-content">
<!--some html content with formatting-->
<html>
<body>
<h1>Header</h1>
<div>
<p>Text</p>
</div>
</body>
</html>
</xsl:with-param>
</xsl:apply-templates>
</xsl:template>
この場合、html コンテンツのフォーマットはそのままで、出力は次のようになります。
<html>
<body>
<h1>Header</h1>
<div>
<p>Text</p>
</div>
</body>
</html>
しかし、match
or select
in <xsl:apply-templates>
(/result/page
の代わりに/
) を指定しようとすると、フォーマットが消去されます。パラメータpage-content
は同じです:
<html><body><h1>Header</h1><div><p>Text</p></div></body></html>
XML の例:
<result xmlns:xlink="http://www.w3.org/TR/xlink" module="content" method="content" system-build="21199" lang="ru" header="Main page" title="Main page" request-uri="/.xml" pageId="2">
<meta>
<keywords/>
<description/>
</meta>
<user id="42" status="auth" login="admin" xlink:href="uobject://42" type="sv"/>
<parents/>
<page id="2" parentId="0" link="/" is-default="1" is-active="1" object-id="313" type-id="50" type-guid="content-page" update-time="1364964725" alt-name="index">
<basetype id="27" module="content">Content page</basetype>
<name>Main page</name>
<properties>
<group id="65" name="common">
<title>Params</title>
<property id="117" name="h1" type="string">
<title>H1</title>
<value>Main page</value>
</property>
</group>
</properties>
</page>
</result>