blob: 94a7be5a8226b3340795e2f058ec5a9054c69edc [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:help="xsl.lotus.com/help">
<!-- FileName: namespace15 -->
<!-- Document: http://www.w3.org/TR/xpath -->
<!-- DocVersion: 19991116 -->
<!-- Section: 2.2 Stylesheet Element. -->
<!-- Creator: Paul Dick -->
<!-- Purpose: Stylesheet elements may contain any element not from the
XSLT namespace, provided that the expanded name of the element has
a non-null namespace URI. -->
<help:Header comment="Header would go here"/>
<help:TOC comment="Table of Contents"/>
<help:Template comment="This is the main template" match="doc" process="children"/>
<xsl:template match="doc">
<out>
<xsl:text>&#010;</xsl:text>
<xsl:value-of select="'Testing '"/>
<xsl:for-each select="*">
<xsl:value-of select="."/><xsl:text> </xsl:text>
</xsl:for-each>
<xsl:call-template name="ThatTemp">
<xsl:with-param name="sam">quos</xsl:with-param>
</xsl:call-template>
</out>
</xsl:template>
<help:Template comment="Named template" match="*" process="children"/>
<xsl:template name="ThatTemp">
<xsl:param name="sam">bo</xsl:param>
<xsl:copy-of select="$sam"/>
</xsl:template>
<help:Footer comment="Footer would go here"/>
<!--
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
-->
</xsl:stylesheet>