Imported Upstream version 1.79.2
[platform/upstream/docbook-xsl-stylesheets.git] / fo / ptc.xsl
1 <xsl:stylesheet exclude-result-prefixes="d"
2                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3                 xmlns:d="http://docbook.org/ns/docbook"
4                 xmlns:fo="http://www.w3.org/1999/XSL/Format"
5                 version="1.0">
6
7 <!-- ================================================================ -->
8 <!--                                                                  -->
9 <!-- PTC/Arbortext Code for XSL 1.1 bookmark support                  -->
10 <!--                                                                  -->
11 <!-- ================================================================ -->
12
13 <xsl:param name="ati.xsl11.bookmarks" select="1"/>
14
15 <xsl:variable name="ati-a-dia" select=
16 "'&#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;'"/>
17
18 <xsl:variable name="ati-a-asc" select=
19 "'aaaccccddeeeeeegggghhiiiiijklllllnnnnooorrrsssstttuuuuuuwyzzzAAACCCCDDEEEEEEGGGGHHIIIIIJKLLLLLNNNNOOORRRSSSSTTTUUUUUUWYYZZZ'"/>
20
21 <xsl:template match="*" mode="ati.xsl11.bookmarks">
22   <xsl:apply-templates select="*" mode="ati.xsl11.bookmarks"/>
23 </xsl:template>
24
25 <xsl:template match="d:set|d:book|d:part|d:reference|d:preface|d:chapter|d:appendix|d:article
26                      |d:glossary|d:bibliography|d:index|d:setindex
27                      |d:refentry|d:refsynopsisdiv
28                      |d:refsect1|d:refsect2|d:refsect3|d:refsection
29                      |d:sect1|d:sect2|d:sect3|d:sect4|d:sect5|d:section"
30               mode="ati.xsl11.bookmarks">
31   <xsl:variable name="id">
32     <xsl:call-template name="object.id"/>
33   </xsl:variable>
34   <xsl:variable name="bookmark-label">
35     <xsl:apply-templates select="." mode="object.title.markup"/>
36   </xsl:variable>
37
38   <!-- Put the root element bookmark at the same level as its children -->
39   <!-- If the object is a set or book, generate a bookmark for the toc -->
40
41   <xsl:choose>
42     <xsl:when test="self::d:index and $generate.index = 0"/>
43     <xsl:when test="parent::*">
44       <fo:bookmark internal-destination="{$id}">
45         <fo:bookmark-title>
46           <xsl:value-of select="translate($bookmark-label, $ati-a-dia, $ati-a-asc)"/>
47         </fo:bookmark-title>
48         <xsl:apply-templates select="*" mode="ati.xsl11.bookmarks"/>
49       </fo:bookmark>
50     </xsl:when>
51     <xsl:otherwise>
52       <fo:bookmark internal-destination="{$id}">
53         <fo:bookmark-title>
54           <xsl:value-of select="translate($bookmark-label, $ati-a-dia, $ati-a-asc)"/>
55         </fo:bookmark-title>
56       </fo:bookmark>
57
58       <xsl:variable name="toc.params">
59         <xsl:call-template name="find.path.params">
60           <xsl:with-param name="table" select="normalize-space($generate.toc)"/>
61         </xsl:call-template>
62       </xsl:variable>
63       <xsl:if test="contains($toc.params, 'toc')
64                     and d:section|d:sect1|d:refentry
65                         |d:article|d:bibliography|d:glossary
66                         |d:appendix">
67         <fo:bookmark internal-destination="toc...{$id}">
68           <fo:bookmark-title>
69             <xsl:call-template name="gentext">
70               <xsl:with-param name="key" select="'TableofContents'"/>
71             </xsl:call-template>
72           </fo:bookmark-title>
73         </fo:bookmark>
74       </xsl:if>
75       <xsl:apply-templates select="*" mode="ati.xsl11.bookmarks"/>
76     </xsl:otherwise>
77   </xsl:choose>
78 </xsl:template>
79
80 </xsl:stylesheet>