<?xml version="1.0"?> <!DOCTYPE xsl:stylesheet [ <!ENTITY % common.entities SYSTEM "../common/entities.ent"> %common.entities; <!-- Documents using the kimber index method must have a lang attribute --> <!-- Only one of these should be present in the entity --> <!ENTITY lang 'concat(/*/@lang, /*/@xml:lang)'> ]> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:d="http://docbook.org/ns/docbook" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService" exclude-result-prefixes="k d" version="1.0"> <!-- ******************************************************************** $Id: autoidx-kimber.xsl 8729 2010-07-15 16:43:56Z bobstayton $ ******************************************************************** This file is part of the DocBook XSL Stylesheet distribution. See ../README or http://docbook.sf.net/ for copyright copyright and other information. ******************************************************************** --> <!-- ==================================================================== --> <!-- The "kimber" method contributed by Eliot Kimber of Innodata Isogen. --> <!-- ==================================================================== --> <!-- *** THIS MODULE ONLY WORKS WITH SAXON 6 OR SAXON 8 *** --> <!-- ==================================================================== --> <xsl:include href="../common/autoidx-kimber.xsl"/> <!-- Java sort apparently works only on lang part, not country --> <xsl:param name="sort.lang"> <xsl:choose> <xsl:when test="contains(⟨, '-')"> <xsl:value-of select="substring-before(⟨, '-')"/> </xsl:when> <xsl:when test="contains(⟨, '_')"> <xsl:value-of select="substring-before(⟨, '_')"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="⟨"/> </xsl:otherwise> </xsl:choose> </xsl:param> <xsl:template name="generate-kimber-index"> <xsl:param name="scope" select="NOTANODE"/> <xsl:variable name="vendor" select="system-property('xsl:vendor')"/> <xsl:if test="not(contains($vendor, 'SAXON '))"> <xsl:message terminate="yes"> <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> <xsl:text>Saxon version 6 or 8 XSLT processor.</xsl:text> </xsl:message> </xsl:if> <xsl:if test="not(function-available('k:getIndexGroupKey'))"> <xsl:message terminate="yes"> <xsl:text>ERROR: the 'kimber' index method requires the </xsl:text> <xsl:text>Innodata Isogen 
Java extensions for </xsl:text> <xsl:text>internationalized indexes. 
Install those </xsl:text> <xsl:text>extensions, or use a different index method.
</xsl:text> <xsl:text>For more information, see:
</xsl:text> <xsl:text>http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport</xsl:text> </xsl:message> </xsl:if> <xsl:variable name="role"> <xsl:if test="$index.on.role != 0"> <xsl:value-of select="@role"/> </xsl:if> </xsl:variable> <xsl:variable name="type"> <xsl:if test="$index.on.type != 0"> <xsl:value-of select="@type"/> </xsl:if> </xsl:variable> <xsl:variable name="terms" select="//d:indexterm[count(.|key('k-group', k:getIndexGroupKey(⟨, &primary;)) [&scope;][1]) = 1 and not(@class = 'endofrange')]"/> <xsl:variable name="alphabetical" select="$terms[not(starts-with( k:getIndexGroupKey(⟨, &primary;), '#NUMERIC' ))]"/> <xsl:variable name="others" select="$terms[starts-with( k:getIndexGroupKey(⟨, &primary;), '#NUMERIC' )]"/> <fo:block> <xsl:if test="$others"> <xsl:call-template name="indexdiv.title"> <xsl:with-param name="titlecontent"> <xsl:call-template name="gentext"> <xsl:with-param name="key" select="'index symbols'"/> </xsl:call-template> </xsl:with-param> </xsl:call-template> <fo:block> <xsl:apply-templates select="$others" mode="index-symbol-div"> <xsl:with-param name="scope" select="$scope"/> <xsl:with-param name="role" select="$role"/> <xsl:with-param name="type" select="$type"/> <xsl:sort lang="{$sort.lang}" select="k:getIndexGroupSortKey(⟨, k:getIndexGroupKey(⟨, &primary;))"/> </xsl:apply-templates> </fo:block> </xsl:if> <xsl:apply-templates select="$alphabetical" mode="index-div-kimber"> <xsl:with-param name="scope" select="$scope"/> <xsl:with-param name="role" select="$role"/> <xsl:with-param name="type" select="$type"/> <xsl:sort lang="{$sort.lang}" select="k:getIndexGroupSortKey(⟨, k:getIndexGroupKey(⟨, &primary;))"/> </xsl:apply-templates> </fo:block> </xsl:template> <xsl:template match="d:indexterm" mode="index-div-kimber"> <xsl:param name="scope" select="."/> <xsl:param name="role" select="''"/> <xsl:param name="type" select="''"/> <xsl:variable name="key" select="k:getIndexGroupKey(⟨, &primary;)"/> <xsl:variable name="label" select="k:getIndexGroupLabel(⟨, $key)"/> <xsl:if test="key('k-group', $key)[&scope;] [count(.|key('primary', &primary;)[&scope;][1]) = 1]"> <fo:block> <xsl:call-template name="indexdiv.title"> <xsl:with-param name="titlecontent"> <xsl:value-of select="$label"/> </xsl:with-param> </xsl:call-template> <fo:block> <xsl:apply-templates select="key('k-group', $key)[&scope;] [count(.|key('primary', &primary;)[&scope;] [1])=1]" mode="index-primary"> <xsl:sort select="&primary;" lang="{$sort.lang}"/> <xsl:with-param name="scope" select="$scope"/> <xsl:with-param name="role" select="$role"/> <xsl:with-param name="type" select="$type"/> </xsl:apply-templates> </fo:block> </fo:block> </xsl:if> </xsl:template> </xsl:stylesheet>
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 12728 | eedwards |
Upgrade ANT doc build infrastructure to assemble PDFs: - remove non-namespaced DocBook source and add namespaced DocBook source. - add Apache FOP 1.1 - copy fonts, images, XSL into _build, establishing new asset structure. The original structure remains until all guides using it can be upgraded, and several other issues can be resolved. - updated build.xml to allow for per-target build properties. - upgraded the P4SAG to use the new infrastructure. - tweaked admonition presentation in PDFs to remove admonition graphics, and resemble closely the presentation used in the new HTML layout, including the same colors. With these changes, building PDFs involves using a shell, navigating into the guide's directory (just P4SAG for now), and executing "ant pdf". Issues still to be resolved: - PDF generation encounters several warnings about missing fonts (bold versions of Symbol and ZapfDingbats), and a couple of locations where the page content exceeds the defined content area. - Due to issues within Apache FOP, PDF generation emits a substantial amount of output that is not easily suppressed without losing important warning information. - Apache FOP's interface to ANT does not expose a way to set the font base directory. The current configuration does work under Mac OSX, but further testing on Windows will need to be done to determine if the relative paths defined continue to work. The workaround is for Windows users to customize the fop-config.xml to provide absolute system paths to the required fonts. - HTML generation needs further browser testing, and exhibits broken navigation on iOS browsers within the TOC sidebar. - A number of PDF and HTML presentation tweaks still need to be made, for example: sidebars, gui* DocBook tags, whitespace, section separation, etc. |