ptc.xsl 3.7 KB

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