blob: a986b3e45202b6f8f82f2250126875f8576947a7 [file] [log] [blame]
<?xml version="1.0"?>
<!--
Copyright 2002,2004 The Apache Software Foundation.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:x="jelly:xml" xmlns:jsl="jelly:jsl">
<html>
<body>
<x:parse var="doc">
<simpleDocument author="James Elson">
<title>I am a title!</title>
<synopsis>Twas a dark, rainy night...</synopsis>
<para>dfjsdfjsdf</para>
<para>fdsfsdfhdsff gyuf uysgf ds</para>
</simpleDocument>
</x:parse>
<h1>Output of first stylesheet1</h1>
<jsl:stylesheet select="$doc">
<jsl:template match="/">
<jsl:applyTemplates/>
</jsl:template>
<jsl:template match="title">
<h2><jsl:applyTemplates/></h2>
</jsl:template>
<jsl:template match="para">
<p><jsl:applyTemplates/></p>
</jsl:template>
<jsl:template match="*">
<small><jsl:applyTemplates/></small>
</jsl:template>
</jsl:stylesheet>
<hr />
<h1>Output of stylesheet2</h1>
<jsl:stylesheet select="$doc">
<jsl:template match="/">
<jsl:applyTemplates/>
</jsl:template>
<jsl:template match="*">
<small><jsl:applyTemplates/></small>
</jsl:template>
<jsl:template match="title">
<h2><jsl:applyTemplates/></h2>
</jsl:template>
<jsl:template match="para">
<p><jsl:applyTemplates/></p>
</jsl:template>
</jsl:stylesheet>
<hr />
<h1>Output of stylesheet3</h1>
<jsl:stylesheet select="$doc">
<jsl:template match="/simpleDocument">
<h2>Book review</h2>
<b>Title:</b> <jsl:applyTemplates select="title"/><br />
<b>Author:</b> <jsl:applyTemplates select="@author"/><br />
<b>Summary:</b> <em><jsl:applyTemplates select="synopsis"/></em><br />
</jsl:template>
<jsl:template match="title">
<span style="color:blue"><jsl:applyTemplates/></span>
</jsl:template>
<jsl:template match="para">
<p><jsl:applyTemplates/></p>
</jsl:template>
</jsl:stylesheet>
<h1>Output of stylesheet4</h1>
<jsl:stylesheet select="$doc">
<jsl:template match="/simpleDocument">
<h2>Book review</h2>
<jsl:applyTemplates/>
</jsl:template>
<jsl:template match="*">
<jsl:copy>
<jsl:applyTemplates/>
</jsl:copy>
</jsl:template>
</jsl:stylesheet>
</body>
</html>
</j:jelly>