source: xslt/vendor/current/tests/general/bug-24-.xsl@ 372

Last change on this file since 372 was 372, checked in by Yuri Dario, 13 years ago

xslt: initial vendor import of xslt 1.1.26.

File size: 629 bytes
Line 
1<?xml version='1.0'?>
2
3<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
4<xsl:output method="xml" indent="yes"/>
5<xsl:template match="/">
6<indexdoc>
7<xsl:apply-templates select="//indexterm">
8<xsl:sort data-type="text" select="primary"/>
9<xsl:sort data-type="text" select="secondary"/>
10</xsl:apply-templates>
11</indexdoc>
12</xsl:template>
13
14
15<xsl:template match="indexterm">
16<primaryterm><xsl:value-of select="primary"/></primaryterm>
17<secondaryterm><xsl:value-of select="secondary"/></secondaryterm>
18<tertiaryterm><xsl:value-of select="tertiary"/> </tertiaryterm>
19</xsl:template>
20
21
22</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.