blob: 2a9f08475812c273a849b4d006f9a44a210d4ae8 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:xalan="http://xml.apache.org/xalan"
exclude-result-prefixes="xalan">
<!-- FileName: libraryEvaluate01.xsl -->
<!-- Document: http://www.w3.org/TR/xslt -->
<!-- DocVersion: 19991116 -->
<!-- Creator: Shane Curcuru -->
<!-- Purpose: Basic test of evaluate() extension function -->
<xsl:param name="param1">sum(item)</xsl:param>
<xsl:template match="doc">
<out>
<sum-expr>
<xsl:value-of select="$param1"/>
</sum-expr>
<xsl:apply-templates select="list"/>
</out>
</xsl:template>
<xsl:template match="list">
<xsl:element name="listout">
<xsl:attribute name="sum-function">
<xsl:value-of select="sum(item)"/>
</xsl:attribute>
<xsl:attribute name="sum-evaluate">
<!-- Use string() to force the variable to be a string to be evaluated -->
<xsl:value-of select="xalan:evaluate( string($param1) )"/>
</xsl:attribute>
<xsl:apply-templates select="list"/>
</xsl:element>
</xsl:template>
<!--
* 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>