ld --as-needed compilation fixes with external libs.
[fvwm.git] / doc / docbook-xsl / common / autoidx-kimber.xsl
blob8e9aa0e6a16e14e3e8bd9992140bbc0d487f7869
1 <?xml version="1.0"?>
2 <!DOCTYPE xsl:stylesheet [
3 <!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas)]))'>
4 <!-- Documents using the kimber index method must have a lang attribute -->
5 <!-- Only one of these should be present in the entity -->
7 <!ENTITY lang 'concat(/*/@lang, /*/@xml:lang)'>
8 ]>
9 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10 version="1.0"
11 xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService"
12 exclude-result-prefixes="k">
14 <!-- ********************************************************************
15 $Id: autoidx-kimber.xsl,v 1.1 2007/03/10 05:14:55 scott Exp $
16 ********************************************************************
18 This file is part of the DocBook XSL Stylesheet distribution.
19 See ../README or http://docbook.sf.net/ for copyright
20 and other information.
22 ******************************************************************** -->
24 <xsl:param name="kimber.imported">
25 <xsl:variable name="vendor" select="system-property('xsl:vendor')"/>
26 <xsl:choose>
27 <xsl:when test="not(contains($vendor, 'SAXON '))">
28 <xsl:message terminate="yes">
29 <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text>
30 <xsl:text>Saxon version 6 or 8 XSLT processor.</xsl:text>
31 </xsl:message>
32 </xsl:when>
33 <xsl:otherwise>1</xsl:otherwise>
34 </xsl:choose>
35 </xsl:param>
38 <!-- The following key used in the kimber indexing method. -->
39 <xsl:key name="k-group"
40 match="indexterm"
41 use="k:getIndexGroupKey(&lang;, &primary;)"/>
43 </xsl:stylesheet>