xref: /aosp_15_r20/external/apache-xml/test/tests/conf/numbering/numbering66.xsl (revision 1212f9a0ffdc28482b8821715d2222bf16dc14e2)
1<?xml version="1.0"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
4  <!-- CaseName: numbering66 -->
5  <!-- Author: David Marston -->
6  <!-- Purpose: Test of numbering of multi-level document with specified from level, count filtered. -->
7  <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(number)/ulist[2]/item[2]/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  <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(convert)/ulist[1]/item[2]/p[1]/text()[1]" -->
13  <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(convert)/ulist[1]/item[3]/p[1]/text()[1]" -->
14  <!-- Scenario: operation="standard-XML" -->
15
16<xsl:template match="doc">
17  <out>
18    <xsl:apply-templates/>
19  </out>
20</xsl:template>
21
22<xsl:template match="chapter//title">
23  <xsl:number level="multiple" from="chapter"
24      count="chapter|section|subsection[1]"
25      format="A.1.a. "/>
26  <xsl:value-of select="."/><xsl:text>
27</xsl:text>
28</xsl:template>
29
30<xsl:template match="text()"><!-- To suppress empty lines --><xsl:apply-templates/></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