fop.xsl 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. $Id$
  8. ********************************************************************
  9. (c) Stephane Bline Peregrine Systems 2001
  10. Driver file to allow pdf bookmarking (based on fop implementation).
  11. ******************************************************************** -->
  12. <!--
  13. In PDF bookmarks can't be used characters with code>255. This version of file
  14. translates characters with code>255 back to ASCII.
  15. Pavel Zampach (zampach@volny.cz)
  16. -->
  17. <xsl:variable name="a-dia" select=
  18. "'&#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;'"/>
  19. <xsl:variable name="a-asc" select=
  20. "'aaaccccddeeeeeegggghhiiiiijklllllnnnnooorrrsssstttuuuuuuwyzzzAAACCCCDDEEEEEEGGGGHHIIIIIJKLLLLLNNNNOOORRRSSSSTTTUUUUUUWYYZZZ'"/>
  21. <xsl:template match="*" mode="fop.outline">
  22. <xsl:variable name="id">
  23. <xsl:value-of select="(@id|@xml:id)[1]"/>
  24. </xsl:variable>
  25. <xsl:if test="$id != ''">
  26. <fox:destination internal-destination="{$id}"/>
  27. </xsl:if>
  28. <xsl:apply-templates select="*" mode="fop.outline"/>
  29. </xsl:template>
  30. <xsl:template match="set|book|part|reference|preface|chapter|appendix|article
  31. |glossary|bibliography|index|setindex
  32. |refentry
  33. |sect1|sect2|sect3|sect4|sect5|section"
  34. mode="fop.outline">
  35. <xsl:variable name="id">
  36. <xsl:call-template name="object.id"/>
  37. </xsl:variable>
  38. <xsl:variable name="bookmark-label">
  39. <xsl:apply-templates select="." mode="object.title.markup"/>
  40. </xsl:variable>
  41. <!-- Put the root element bookmark at the same level as its children -->
  42. <!-- If the object is a set or book, generate a bookmark for the toc -->
  43. <xsl:choose>
  44. <xsl:when test="parent::*">
  45. <fox:outline internal-destination="{$id}">
  46. <fox:label>
  47. <xsl:value-of select="normalize-space(translate($bookmark-label, $a-dia, $a-asc))"/>
  48. </fox:label>
  49. <xsl:apply-templates select="*" mode="fop.outline"/>
  50. </fox:outline>
  51. </xsl:when>
  52. <xsl:otherwise>
  53. <fox:outline internal-destination="{$id}">
  54. <fox:label>
  55. <xsl:value-of select="normalize-space(translate($bookmark-label, $a-dia, $a-asc))"/>
  56. </fox:label>
  57. </fox:outline>
  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 (book|part|reference|preface|chapter|appendix|article
  65. |glossary|bibliography|index|setindex
  66. |refentry
  67. |sect1|sect2|sect3|sect4|sect5|section)">
  68. <fox:outline internal-destination="toc...{$id}">
  69. <fox:label>
  70. <xsl:call-template name="gentext">
  71. <xsl:with-param name="key" select="'TableofContents'"/>
  72. </xsl:call-template>
  73. </fox:label>
  74. </fox:outline>
  75. </xsl:if>
  76. <xsl:apply-templates select="*" mode="fop.outline"/>
  77. </xsl:otherwise>
  78. </xsl:choose>
  79. <fox:destination internal-destination="{$id}"/>
  80. </xsl:template>
  81. </xsl:stylesheet>