1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2 xmlns:fo="http://www.w3.org/1999/XSL/Format"
5 <!-- ================================================================ -->
7 <!-- PTC/Arbortext Code for XSL 1.1 bookmark support -->
9 <!-- ================================================================ -->
11 <xsl:param name="ati.xsl11.bookmarks" select="1"/>
13 <xsl:variable name="ati-a-dia" select=
14 "'āăąćĉċčďđēĕėęěœĝğġģĥħĩīĭįıĵķĺļľŀłńņňŋōŏőŕŗřśŝşšţťŧũūŭůűųŵŷźżžĀĂĄĆĈĊČĎĐĒĔĖĘĚŒĜĞĠĢĤĦĨĪĬĮİĴĶĹĻĽĿŁŃŅŇŊŌŎŐŔŖŘŚŜŞŠŢŤŦŨŪŬŮŰŲŴŶŸŹŻŽ'"/>
16 <xsl:variable name="ati-a-asc" select=
17 "'aaaccccddeeeeeegggghhiiiiijklllllnnnnooorrrsssstttuuuuuuwyzzzAAACCCCDDEEEEEEGGGGHHIIIIIJKLLLLLNNNNOOORRRSSSSTTTUUUUUUWYYZZZ'"/>
19 <xsl:template match="*" mode="ati.xsl11.bookmarks">
20 <xsl:apply-templates select="*" mode="ati.xsl11.bookmarks"/>
23 <xsl:template match="set|book|part|reference|preface|chapter|appendix|article
24 |glossary|bibliography|index|setindex
26 |sect1|sect2|sect3|sect4|sect5|section"
27 mode="ati.xsl11.bookmarks">
28 <xsl:variable name="id">
29 <xsl:call-template name="object.id"/>
31 <xsl:variable name="bookmark-label">
32 <xsl:apply-templates select="." mode="object.title.markup"/>
35 <!-- Put the root element bookmark at the same level as its children -->
36 <!-- If the object is a set or book, generate a bookmark for the toc -->
39 <xsl:when test="self::index and $generate.index = 0"/>
40 <xsl:when test="parent::*">
41 <fo:bookmark internal-destination="{$id}">
43 <xsl:value-of select="translate($bookmark-label, $ati-a-dia, $ati-a-asc)"/>
45 <xsl:apply-templates select="*" mode="ati.xsl11.bookmarks"/>
49 <fo:bookmark internal-destination="{$id}">
51 <xsl:value-of select="translate($bookmark-label, $ati-a-dia, $ati-a-asc)"/>
55 <xsl:variable name="toc.params">
56 <xsl:call-template name="find.path.params">
57 <xsl:with-param name="table" select="normalize-space($generate.toc)"/>
60 <xsl:if test="contains($toc.params, 'toc')
61 and section|sect1|refentry
62 |article|bibliography|glossary
64 <fo:bookmark internal-destination="toc...{$id}">
66 <xsl:call-template name="gentext">
67 <xsl:with-param name="key" select="'TableofContents'"/>
72 <xsl:apply-templates select="*" mode="ati.xsl11.bookmarks"/>