1<?xml version="1.0"?> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 3 4 <!-- FileName: namedtemplate07 --> 5 <!-- Document: http://www.w3.org/TR/xslt --> 6 <!-- DocVersion: 19991116 --> 7 <!-- Section: 6 Named Templates --> 8 <!-- Creator: Paul Dick --> 9 <!-- Purpose: Tests the ability to reset and evaluate a parameter. --> 10 11 <xsl:template match="todo"> 12 <out> 13 <xsl:call-template name="section"> 14 <xsl:with-param name="x">showstopper</xsl:with-param> 15 </xsl:call-template> 16 17 <xsl:call-template name="section"> 18 <xsl:with-param name="x">high</xsl:with-param> 19 </xsl:call-template> 20 21 <xsl:call-template name="section"> 22 <xsl:with-param name="x">medium</xsl:with-param> 23 </xsl:call-template> 24 25 <xsl:call-template name="section"> 26 <xsl:with-param name="x">low</xsl:with-param> 27 </xsl:call-template> 28</out> 29</xsl:template> 30 31<xsl:template name="section"> 32 <xsl:param name="x">other</xsl:param> 33 34 1.<xsl:value-of select="$x"/> 35 <xsl:if test="./action[@priority=string($x)]"> 36 2.<xsl:value-of select="$x"/> 37 </xsl:if> 38 39</xsl:template> 40 41 42 <!-- 43 * Licensed to the Apache Software Foundation (ASF) under one 44 * or more contributor license agreements. See the NOTICE file 45 * distributed with this work for additional information 46 * regarding copyright ownership. The ASF licenses this file 47 * to you under the Apache License, Version 2.0 (the "License"); 48 * you may not use this file except in compliance with the License. 49 * You may obtain a copy of the License at 50 * 51 * http://www.apache.org/licenses/LICENSE-2.0 52 * 53 * Unless required by applicable law or agreed to in writing, software 54 * distributed under the License is distributed on an "AS IS" BASIS, 55 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 56 * See the License for the specific language governing permissions and 57 * limitations under the License. 58 --> 59 60</xsl:stylesheet> 61