1<?xml version='1.0' encoding="utf-8"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3                xmlns:fo="http://www.w3.org/1999/XSL/Format"
4                xmlns:fox="http://xml.apache.org/fop/extensions"
5                version='1.0'>
6
7<!-- ********************************************************************
8     $Id: fop.xsl,v 1.10 2005/04/20 08:11:36 bobstayton Exp $
9     ********************************************************************
10     (c) Stephane Bline Peregrine Systems 2001
11     Driver file to allow pdf bookmarking (based on fop implementation).
12     ******************************************************************** -->
13<!--
14In PDF bookmarks can't be used characters with code>255. This version of file
15translates characters with code>255 back to ASCII.
16
17   Pavel Zampach (zampach@volny.cz)
18-->
19
20<xsl:variable name="a-dia" select=
21"'&#257;&#259;&#261;&#263;&#265;&#267;&#269;&#271;&#273;&#275;&#277;&#279;&#281;&#283;&#339;&#285;&#287;&#289;&#291;&#293;&#295;&#297;&#299;&#301;&#303;&#305;&#309;&#311;&#314;&#316;&#318;&#320;&#322;&#324;&#326;&#328;&#331;&#333;&#335;&#337;&#341;&#343;&#345;&#347;&#349;&#351;&#353;&#355;&#357;&#359;&#361;&#363;&#365;&#367;&#369;&#371;&#373;&#375;&#378;&#380;&#382;&#256;&#258;&#260;&#262;&#264;&#266;&#268;&#270;&#272;&#274;&#276;&#278;&#280;&#282;&#338;&#284;&#286;&#288;&#290;&#292;&#294;&#296;&#298;&#300;&#302;&#304;&#308;&#310;&#313;&#315;&#317;&#319;&#321;&#323;&#325;&#327;&#330;&#332;&#334;&#336;&#340;&#342;&#344;&#346;&#348;&#350;&#352;&#354;&#356;&#358;&#360;&#362;&#364;&#366;&#368;&#370;&#372;&#374;&#376;&#377;&#379;&#381;'"/>
22<xsl:variable name="a-asc" select=
23"'aaaccccddeeeeeegggghhiiiiijklllllnnnnooorrrsssstttuuuuuuwyzzzAAACCCCDDEEEEEEGGGGHHIIIIIJKLLLLLNNNNOOORRRSSSSTTTUUUUUUWYYZZZ'"/>
24
25<xsl:template match="*" mode="fop.outline">
26  <xsl:if test="@id">
27    <fox:destination internal-destination="{@id}"/>
28  </xsl:if>
29  <xsl:apply-templates select="*" mode="fop.outline"/>
30</xsl:template>
31
32<xsl:template match="set|book|part|reference|preface|chapter|appendix|article
33                     |glossary|bibliography|index|setindex
34                     |refentry
35                     |sect1|sect2|sect3|sect4|sect5|section"
36              mode="fop.outline">
37  <xsl:variable name="id">
38    <xsl:call-template name="object.id"/>
39  </xsl:variable>
40  <xsl:variable name="bookmark-label">
41    <xsl:apply-templates select="." mode="object.title.markup"/>
42  </xsl:variable>
43
44  <!-- Put the root element bookmark at the same level as its children -->
45  <!-- If the object is a set or book, generate a bookmark for the toc -->
46
47  <xsl:choose>
48    <xsl:when test="parent::*">
49      <fox:outline internal-destination="{$id}">
50        <fox:label>
51          <xsl:value-of select="normalize-space(translate($bookmark-label, $a-dia, $a-asc))"/>
52        </fox:label>
53        <xsl:apply-templates select="*" mode="fop.outline"/>
54      </fox:outline>
55    </xsl:when>
56    <xsl:otherwise>
57      <fox:outline internal-destination="{$id}">
58        <fox:label>
59          <xsl:value-of select="normalize-space(translate($bookmark-label, $a-dia, $a-asc))"/>
60        </fox:label>
61      </fox:outline>
62
63      <xsl:variable name="toc.params">
64        <xsl:call-template name="find.path.params">
65          <xsl:with-param name="table" select="normalize-space($generate.toc)"/>
66        </xsl:call-template>
67      </xsl:variable>
68
69      <xsl:if test="contains($toc.params, 'toc')
70                    and (book|part|reference|preface|chapter|appendix|article
71                         |glossary|bibliography|index|setindex
72                         |refentry
73                         |sect1|sect2|sect3|sect4|sect5|section)">
74        <fox:outline internal-destination="toc...{$id}">
75          <fox:label>
76            <xsl:call-template name="gentext">
77              <xsl:with-param name="key" select="'TableofContents'"/>
78            </xsl:call-template>
79          </fox:label>
80        </fox:outline>
81      </xsl:if>
82      <xsl:apply-templates select="*" mode="fop.outline"/>
83    </xsl:otherwise>
84  </xsl:choose>
85  <fox:destination internal-destination="{$id}"/>
86</xsl:template>
87
88</xsl:stylesheet>
89
90