1<?xml version="1.0"?> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 3 4 <!-- CaseName: numbering91 --> 5 <!-- Creator: David Marston --> 6 <!-- Purpose: Test counting only some nodes, with id() in count pattern. --> 7 <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(number)/ulist[2]/item[1]/p[1]/text()[5]" --> 8 <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(number)/ulist[1]/item[2]/p[1]/text()[1]" --> 9 <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(number)/ulist[1]/item[3]/p[1]/text()[1]" --> 10 <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(convert)/p[2]/text()[5]" --> 11 <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(convert)/ulist[1]/item[1]/p[1]/text()[1]" --> 12 <!-- Scenario: operation="standard-XML" --> 13 14<xsl:template match="iddata"> 15 <out> 16 <xsl:apply-templates/> 17 </out> 18</xsl:template> 19 20<xsl:template match="el"> 21 <xsl:choose> 22 <xsl:when test="@id='b' or @id='d' or @id='g'"> 23 <xsl:number level="single" from="iddata" count="id('b d g')" format="(1) "/> 24 </xsl:when> 25 <xsl:otherwise> 26 <xsl:text>(no) </xsl:text> 27 </xsl:otherwise> 28 </xsl:choose> 29 <xsl:value-of select="@id"/> 30</xsl:template> 31 32 33 <!-- 34 * Licensed to the Apache Software Foundation (ASF) under one 35 * or more contributor license agreements. See the NOTICE file 36 * distributed with this work for additional information 37 * regarding copyright ownership. The ASF licenses this file 38 * to you under the Apache License, Version 2.0 (the "License"); 39 * you may not use this file except in compliance with the License. 40 * You may obtain a copy of the License at 41 * 42 * http://www.apache.org/licenses/LICENSE-2.0 43 * 44 * Unless required by applicable law or agreed to in writing, software 45 * distributed under the License is distributed on an "AS IS" BASIS, 46 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 47 * See the License for the specific language governing permissions and 48 * limitations under the License. 49 --> 50 51</xsl:stylesheet> 52