<?xml version='1.0'?> <!DOCTYPE xsl:stylesheet [ <!ENTITY % common.entities SYSTEM "../common/entities.ent"> %common.entities; ]> <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:xlink='http://www.w3.org/1999/xlink' exclude-result-prefixes="xlink d" version='1.0'> <!-- ******************************************************************** $Id: glossary.xsl 8591 2010-02-27 20:42:27Z bobstayton $ ******************************************************************** This file is part of the XSL DocBook Stylesheet distribution. See ../README or http://docbook.sf.net/release/xsl/current/ for copyright and other information. ******************************************************************** --> <!-- ==================================================================== --> <xsl:template match="d:glossary"> <xsl:call-template name="make-glossary"/> </xsl:template> <xsl:template match="d:glossdiv/d:title"/> <xsl:template match="d:glossdiv/d:subtitle"/> <xsl:template match="d:glossdiv/d:titleabbrev"/> <!-- ==================================================================== --> <xsl:template name="make-glossary"> <xsl:param name="divs" select="d:glossdiv"/> <xsl:param name="entries" select="d:glossentry"/> <xsl:param name="preamble" select="*[not(self::d:title or self::d:subtitle or self::d:glossdiv or self::d:glossentry)]"/> &setup-language-variable; <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <xsl:variable name="presentation"> <xsl:call-template name="pi.dbfo_glossary-presentation"/> </xsl:variable> <xsl:variable name="term-width"> <xsl:call-template name="pi.dbfo_glossterm-width"/> </xsl:variable> <xsl:variable name="width"> <xsl:choose> <xsl:when test="$term-width = ''"> <xsl:value-of select="$glossterm.width"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="$term-width"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <fo:block id="{$id}"> <xsl:call-template name="glossary.titlepage"/> </fo:block> <xsl:if test="$preamble"> <xsl:apply-templates select="$preamble"/> </xsl:if> <xsl:choose> <xsl:when test="$presentation = 'list'"> <xsl:apply-templates select="$divs" mode="glossary.as.list"> <xsl:with-param name="width" select="$width"/> </xsl:apply-templates> <xsl:if test="$entries"> <fo:list-block provisional-distance-between-starts="{$width}" provisional-label-separation="{$glossterm.separation}" xsl:use-attribute-sets="normal.para.spacing"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="$entries" mode="glossary.as.list"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="$entries" mode="glossary.as.list"/> </xsl:otherwise> </xsl:choose> </fo:list-block> </xsl:if> </xsl:when> <xsl:when test="$presentation = 'blocks'"> <xsl:apply-templates select="$divs" mode="glossary.as.blocks"/> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="$entries" mode="glossary.as.blocks"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="$entries" mode="glossary.as.blocks"/> </xsl:otherwise> </xsl:choose> </xsl:when> <xsl:when test="$glossary.as.blocks != 0"> <xsl:apply-templates select="$divs" mode="glossary.as.blocks"/> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="$entries" mode="glossary.as.blocks"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="$entries" mode="glossary.as.blocks"/> </xsl:otherwise> </xsl:choose> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="$divs" mode="glossary.as.list"> <xsl:with-param name="width" select="$width"/> </xsl:apply-templates> <xsl:if test="$entries"> <fo:list-block provisional-distance-between-starts="{$width}" provisional-label-separation="{$glossterm.separation}" xsl:use-attribute-sets="normal.para.spacing"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="$entries" mode="glossary.as.list"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="$entries" mode="glossary.as.list"/> </xsl:otherwise> </xsl:choose> </fo:list-block> </xsl:if> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="d:book/d:glossary|d:part/d:glossary|/d:glossary" priority="2"> <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <xsl:variable name="master-reference"> <xsl:call-template name="select.pagemaster"/> </xsl:variable> <fo:page-sequence hyphenate="{$hyphenate}" master-reference="{$master-reference}"> <xsl:attribute name="language"> <xsl:call-template name="l10n.language"/> </xsl:attribute> <xsl:attribute name="format"> <xsl:call-template name="page.number.format"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="initial-page-number"> <xsl:call-template name="initial.page.number"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="force-page-count"> <xsl:call-template name="force.page.count"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="hyphenation-character"> <xsl:call-template name="gentext"> <xsl:with-param name="key" select="'hyphenation-character'"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="hyphenation-push-character-count"> <xsl:call-template name="gentext"> <xsl:with-param name="key" select="'hyphenation-push-character-count'"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="hyphenation-remain-character-count"> <xsl:call-template name="gentext"> <xsl:with-param name="key" select="'hyphenation-remain-character-count'"/> </xsl:call-template> </xsl:attribute> <xsl:apply-templates select="." mode="running.head.mode"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:apply-templates> <xsl:apply-templates select="." mode="running.foot.mode"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:apply-templates> <fo:flow flow-name="xsl-region-body"> <xsl:call-template name="set.flow.properties"> <xsl:with-param name="element" select="local-name(.)"/> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:call-template> <xsl:call-template name="make-glossary"/> </fo:flow> </fo:page-sequence> </xsl:template> <xsl:template match="d:glossary/d:glossaryinfo"></xsl:template> <xsl:template match="d:glossary/d:info"></xsl:template> <xsl:template match="d:glossary/d:title"></xsl:template> <xsl:template match="d:glossary/d:subtitle"></xsl:template> <xsl:template match="d:glossary/d:titleabbrev"></xsl:template> <!-- ==================================================================== --> <xsl:template match="d:glosslist"> &setup-language-variable; <xsl:variable name="presentation"> <xsl:call-template name="pi.dbfo_glosslist-presentation"/> </xsl:variable> <xsl:variable name="term-width"> <xsl:call-template name="pi.dbfo_glossterm-width"/> </xsl:variable> <xsl:variable name="width"> <xsl:choose> <xsl:when test="$term-width = ''"> <xsl:value-of select="$glossterm.width"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="$term-width"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:if test="d:title or d:info/d:title"> <xsl:apply-templates select="(d:title|d:info/d:title)[1]" mode="list.title.mode"/> </xsl:if> <xsl:choose> <xsl:when test="$presentation = 'list'"> <fo:list-block provisional-distance-between-starts="{$width}" provisional-label-separation="{$glossterm.separation}" xsl:use-attribute-sets="normal.para.spacing"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="d:glossentry" mode="glossary.as.list"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="d:glossentry" mode="glossary.as.list"/> </xsl:otherwise> </xsl:choose> </fo:list-block> </xsl:when> <xsl:when test="$presentation = 'blocks'"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="d:glossentry" mode="glossary.as.blocks"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="d:glossentry" mode="glossary.as.blocks"/> </xsl:otherwise> </xsl:choose> </xsl:when> <xsl:when test="$glosslist.as.blocks != 0"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="d:glossentry" mode="glossary.as.blocks"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="d:glossentry" mode="glossary.as.blocks"/> </xsl:otherwise> </xsl:choose> </xsl:when> <xsl:otherwise> <fo:list-block provisional-distance-between-starts="{$width}" provisional-label-separation="{$glossterm.separation}" xsl:use-attribute-sets="normal.para.spacing"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="d:glossentry" mode="glossary.as.list"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="d:glossentry" mode="glossary.as.list"/> </xsl:otherwise> </xsl:choose> </fo:list-block> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- ==================================================================== --> <!-- Glossary collection --> <xsl:template match="d:glossary[@role='auto']" priority="2"> <xsl:variable name="collection" select="document($glossary.collection, .)"/> <xsl:if test="$glossary.collection = ''"> <xsl:message> <xsl:text>Warning: processing automatic glossary </xsl:text> <xsl:text>without a glossary.collection file.</xsl:text> </xsl:message> </xsl:if> <xsl:if test="not($collection) and $glossary.collection != ''"> <xsl:message> <xsl:text>Warning: processing automatic glossary but unable to </xsl:text> <xsl:text>open glossary.collection file '</xsl:text> <xsl:value-of select="$glossary.collection"/> <xsl:text>'</xsl:text> </xsl:message> </xsl:if> <xsl:call-template name="make-auto-glossary"/> </xsl:template> <xsl:template name="make-auto-glossary"> <xsl:param name="collection" select="document($glossary.collection, .)"/> <xsl:param name="terms" select="//d:glossterm[not(parent::d:glossdef)]|//d:firstterm"/> <xsl:param name="preamble" select="*[not(self::d:title or self::d:subtitle or self::d:glossdiv or self::d:glossentry)]"/> &setup-language-variable; <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <xsl:variable name="presentation"> <xsl:call-template name="pi.dbfo_glossary-presentation"/> </xsl:variable> <xsl:variable name="term-width"> <xsl:call-template name="pi.dbfo_glossterm-width"/> </xsl:variable> <xsl:variable name="width"> <xsl:choose> <xsl:when test="$term-width = ''"> <xsl:value-of select="$glossterm.width"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="$term-width"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:if test="$glossary.collection = ''"> <xsl:message> <xsl:text>Warning: processing automatic glossary </xsl:text> <xsl:text>without a glossary.collection file.</xsl:text> </xsl:message> </xsl:if> <fo:block id="{$id}"> <xsl:call-template name="glossary.titlepage"/> </fo:block> <xsl:if test="$preamble"> <xsl:apply-templates select="$preamble"/> </xsl:if> <xsl:choose> <xsl:when test="d:glossdiv and $collection//d:glossdiv"> <xsl:for-each select="$collection//d:glossdiv"> <!-- first see if there are any in this div --> <xsl:variable name="exist.test"> <xsl:for-each select="d:glossentry"> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:value-of select="d:glossterm"/> </xsl:if> </xsl:for-each> </xsl:variable> <xsl:if test="$exist.test != ''"> <xsl:choose> <xsl:when test="$presentation = 'list'"> <xsl:apply-templates select="." mode="auto-glossary-as-list"> <xsl:with-param name="width" select="$width"/> <xsl:with-param name="terms" select="$terms"/> </xsl:apply-templates> </xsl:when> <xsl:when test="$presentation = 'blocks'"> <xsl:apply-templates select="." mode="auto-glossary-as-blocks"> <xsl:with-param name="terms" select="$terms"/> </xsl:apply-templates> </xsl:when> <xsl:when test="$glossary.as.blocks != 0"> <xsl:apply-templates select="." mode="auto-glossary-as-blocks"> <xsl:with-param name="terms" select="$terms"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="." mode="auto-glossary-as-list"> <xsl:with-param name="width" select="$width"/> <xsl:with-param name="terms" select="$terms"/> </xsl:apply-templates> </xsl:otherwise> </xsl:choose> </xsl:if> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:choose> <xsl:when test="$presentation = 'list'"> <fo:list-block provisional-distance-between-starts="{$width}" provisional-label-separation="{$glossterm.separation}" xsl:use-attribute-sets="normal.para.spacing"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:for-each select="$collection//d:glossentry"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-list"/> </xsl:if> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:for-each select="$collection//d:glossentry"> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-list"/> </xsl:if> </xsl:for-each> </xsl:otherwise> </xsl:choose> </fo:list-block> </xsl:when> <xsl:when test="$presentation = 'blocks' or $glossary.as.blocks != 0"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:for-each select="$collection//d:glossentry"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-blocks"/> </xsl:if> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:for-each select="$collection//d:glossentry"> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-blocks"/> </xsl:if> </xsl:for-each> </xsl:otherwise> </xsl:choose> </xsl:when> <xsl:otherwise> <fo:list-block provisional-distance-between-starts="{$width}" provisional-label-separation="{$glossterm.separation}" xsl:use-attribute-sets="normal.para.spacing"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:for-each select="$collection//d:glossentry"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-list"/> </xsl:if> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:for-each select="$collection//d:glossentry"> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-list"/> </xsl:if> </xsl:for-each> </xsl:otherwise> </xsl:choose> </fo:list-block> </xsl:otherwise> </xsl:choose> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="d:book/d:glossary[@role='auto']| d:part/d:glossary[@role='auto']| /d:glossary[@role='auto']" priority="2.5"> <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> <xsl:variable name="master-reference"> <xsl:call-template name="select.pagemaster"/> </xsl:variable> <xsl:if test="$glossary.collection = ''"> <xsl:message> <xsl:text>Warning: processing automatic glossary </xsl:text> <xsl:text>without a glossary.collection file.</xsl:text> </xsl:message> </xsl:if> <fo:page-sequence hyphenate="{$hyphenate}" master-reference="{$master-reference}"> <xsl:attribute name="language"> <xsl:call-template name="l10n.language"/> </xsl:attribute> <xsl:attribute name="format"> <xsl:call-template name="page.number.format"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="initial-page-number"> <xsl:call-template name="initial.page.number"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="force-page-count"> <xsl:call-template name="force.page.count"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="hyphenation-character"> <xsl:call-template name="gentext"> <xsl:with-param name="key" select="'hyphenation-character'"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="hyphenation-push-character-count"> <xsl:call-template name="gentext"> <xsl:with-param name="key" select="'hyphenation-push-character-count'"/> </xsl:call-template> </xsl:attribute> <xsl:attribute name="hyphenation-remain-character-count"> <xsl:call-template name="gentext"> <xsl:with-param name="key" select="'hyphenation-remain-character-count'"/> </xsl:call-template> </xsl:attribute> <xsl:apply-templates select="." mode="running.head.mode"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:apply-templates> <xsl:apply-templates select="." mode="running.foot.mode"> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:apply-templates> <fo:flow flow-name="xsl-region-body"> <xsl:call-template name="set.flow.properties"> <xsl:with-param name="element" select="local-name(.)"/> <xsl:with-param name="master-reference" select="$master-reference"/> </xsl:call-template> <xsl:call-template name="make-auto-glossary"/> </fo:flow> </fo:page-sequence> </xsl:template> <xsl:template match="d:glossdiv" mode="auto-glossary-as-list"> <xsl:param name="width" select="$glossterm.width"/> <xsl:param name="terms" select="."/> &setup-language-variable; <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <xsl:variable name="preamble" select="*[not(self::d:title or self::d:subtitle or self::d:glossentry)]"/> <fo:block id="{$id}"> <xsl:call-template name="glossdiv.titlepage"/> </fo:block> <xsl:apply-templates select="$preamble"/> <fo:list-block provisional-distance-between-starts="{$width}" provisional-label-separation="{$glossterm.separation}" xsl:use-attribute-sets="normal.para.spacing"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:for-each select="d:glossentry"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-list"/> </xsl:if> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:for-each select="d:glossentry"> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-list"/> </xsl:if> </xsl:for-each> </xsl:otherwise> </xsl:choose> </fo:list-block> </xsl:template> <xsl:template match="d:glossentry" mode="auto-glossary-as-list"> <xsl:apply-templates select="." mode="glossary.as.list"/> </xsl:template> <xsl:template match="d:glossdiv" mode="auto-glossary-as-blocks"> <xsl:param name="terms" select="."/> &setup-language-variable; <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <xsl:variable name="preamble" select="*[not(self::d:title or self::d:subtitle or self::d:glossentry)]"/> <fo:block id="{$id}"> <xsl:call-template name="glossdiv.titlepage"/> </fo:block> <xsl:apply-templates select="$preamble"/> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:for-each select="d:glossentry"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-blocks"/> </xsl:if> </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:for-each select="d:glossentry"> <xsl:variable name="cterm" select="d:glossterm"/> <xsl:if test="$terms[@baseform = $cterm or . = $cterm]"> <xsl:apply-templates select="." mode="auto-glossary-as-blocks"/> </xsl:if> </xsl:for-each> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="d:glossentry" mode="auto-glossary-as-blocks"> <xsl:apply-templates select="." mode="glossary.as.blocks"/> </xsl:template> <!-- ==================================================================== --> <!-- Format glossary as a list --> <xsl:template match="d:glossdiv" mode="glossary.as.list"> <xsl:param name="width" select="$glossterm.width"/> &setup-language-variable; <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <xsl:variable name="entries" select="d:glossentry"/> <xsl:variable name="preamble" select="*[not(self::d:title or self::d:subtitle or self::d:glossentry)]"/> <fo:block id="{$id}"> <xsl:call-template name="glossdiv.titlepage"/> </fo:block> <xsl:apply-templates select="$preamble"/> <fo:list-block provisional-distance-between-starts="{$width}" provisional-label-separation="{$glossterm.separation}" xsl:use-attribute-sets="normal.para.spacing"> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="$entries" mode="glossary.as.list"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="$entries" mode="glossary.as.list"/> </xsl:otherwise> </xsl:choose> </fo:list-block> </xsl:template> <!-- GlossEntry ::= GlossTerm, Acronym?, Abbrev?, (IndexTerm)*, RevHistory?, (GlossSee | GlossDef+) --> <xsl:template match="d:glossentry" mode="glossary.as.list"> <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <fo:list-item xsl:use-attribute-sets="glossentry.list.item.properties"> <xsl:call-template name="anchor"> <xsl:with-param name="conditional"> <xsl:choose> <xsl:when test="$glossterm.auto.link != 0 or $glossary.collection != ''">0</xsl:when> <xsl:otherwise>1</xsl:otherwise> </xsl:choose> </xsl:with-param> </xsl:call-template> <fo:list-item-label end-indent="label-end()"> <fo:block xsl:use-attribute-sets="glossterm.list.properties"> <xsl:choose> <xsl:when test="$glossentry.show.acronym = 'primary'"> <xsl:choose> <xsl:when test="d:acronym|d:abbrev"> <xsl:apply-templates select="d:acronym|d:abbrev" mode="glossary.as.list"/> <xsl:text> (</xsl:text> <xsl:apply-templates select="d:glossterm" mode="glossary.as.list"/> <xsl:text>)</xsl:text> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="d:glossterm" mode="glossary.as.list"/> </xsl:otherwise> </xsl:choose> </xsl:when> <xsl:when test="$glossentry.show.acronym = 'yes'"> <xsl:apply-templates select="d:glossterm" mode="glossary.as.list"/> <xsl:if test="d:acronym|d:abbrev"> <xsl:text> (</xsl:text> <xsl:apply-templates select="d:acronym|d:abbrev" mode="glossary.as.list"/> <xsl:text>)</xsl:text> </xsl:if> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="d:glossterm" mode="glossary.as.list"/> </xsl:otherwise> </xsl:choose> <xsl:apply-templates select="d:indexterm"/> </fo:block> </fo:list-item-label> <fo:list-item-body start-indent="body-start()"> <fo:block xsl:use-attribute-sets="glossdef.list.properties"> <xsl:apply-templates select="d:glosssee|d:glossdef" mode="glossary.as.list"/> </fo:block> </fo:list-item-body> </fo:list-item> </xsl:template> <xsl:template match="d:glossentry/d:glossterm" mode="glossary.as.list"> <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <fo:inline id="{$id}"> <xsl:apply-templates/> </fo:inline> <xsl:if test="following-sibling::d:glossterm">, </xsl:if> </xsl:template> <xsl:template match="d:glossentry/d:acronym" mode="glossary.as.list"> <xsl:apply-templates/> <xsl:if test="following-sibling::d:acronym|following-sibling::d:abbrev">, </xsl:if> </xsl:template> <xsl:template match="d:glossentry/d:abbrev" mode="glossary.as.list"> <xsl:apply-templates/> <xsl:if test="following-sibling::d:acronym|following-sibling::d:abbrev">, </xsl:if> </xsl:template> <xsl:template match="d:glossentry/d:revhistory" mode="glossary.as.list"> </xsl:template> <xsl:template match="d:glossentry/d:glosssee" mode="glossary.as.list"> <xsl:variable name="otherterm" select="@otherterm"/> <xsl:variable name="targets" select="key('id', $otherterm)"/> <xsl:variable name="target" select="$targets[1]"/> <xsl:variable name="xlink" select="@xlink:href"/> <fo:block> <xsl:variable name="template"> <xsl:call-template name="gentext.template"> <xsl:with-param name="context" select="'glossary'"/> <xsl:with-param name="name" select="'see'"/> </xsl:call-template> </xsl:variable> <xsl:variable name="title"> <xsl:choose> <xsl:when test="$target"> <fo:basic-link internal-destination="{$otherterm}" xsl:use-attribute-sets="xref.properties"> <xsl:apply-templates select="$target" mode="xref-to"/> </fo:basic-link> </xsl:when> <xsl:when test="$xlink"> <xsl:call-template name="simple.xlink"> <xsl:with-param name="content"> <xsl:apply-templates/> </xsl:with-param> </xsl:call-template> </xsl:when> <xsl:when test="$otherterm != '' and not($target)"> <xsl:message> <xsl:text>Warning: glosssee @otherterm reference not found: </xsl:text> <xsl:value-of select="$otherterm"/> </xsl:message> <xsl:apply-templates mode="glossary.as.list"/> </xsl:when> <xsl:otherwise> <xsl:apply-templates mode="glossary.as.list"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:call-template name="substitute-markup"> <xsl:with-param name="template" select="$template"/> <xsl:with-param name="title" select="$title"/> </xsl:call-template> </fo:block> </xsl:template> <xsl:template match="d:glossentry/d:glossdef" mode="glossary.as.list"> <xsl:apply-templates select="*[local-name(.) != 'glossseealso']"/> <xsl:if test="d:glossseealso"> <fo:block> <xsl:variable name="template"> <xsl:call-template name="gentext.template"> <xsl:with-param name="context" select="'glossary'"/> <xsl:with-param name="name" select="'seealso'"/> </xsl:call-template> </xsl:variable> <xsl:variable name="title"> <xsl:apply-templates select="d:glossseealso" mode="glossary.as.list"/> </xsl:variable> <xsl:call-template name="substitute-markup"> <xsl:with-param name="template" select="$template"/> <xsl:with-param name="title" select="$title"/> </xsl:call-template> </fo:block> </xsl:if> </xsl:template> <xsl:template match="d:glossentry/d:glossdef/d:para[1]|d:glossentry/d:glossdef/d:simpara[1]" mode="glossary.as.list"> <fo:block> <xsl:apply-templates/> </fo:block> </xsl:template> <xsl:template match="d:glossseealso" mode="glossary.as.list"> <xsl:variable name="otherterm" select="@otherterm"/> <xsl:variable name="targets" select="key('id', $otherterm)"/> <xsl:variable name="target" select="$targets[1]"/> <xsl:variable name="xlink" select="@xlink:href"/> <xsl:choose> <xsl:when test="$target"> <fo:basic-link internal-destination="{$otherterm}" xsl:use-attribute-sets="xref.properties"> <xsl:apply-templates select="$target" mode="xref-to"/> </fo:basic-link> </xsl:when> <xsl:when test="$xlink"> <xsl:call-template name="simple.xlink"> <xsl:with-param name="content"> <xsl:apply-templates/> </xsl:with-param> </xsl:call-template> </xsl:when> <xsl:when test="$otherterm != '' and not($target)"> <xsl:message> <xsl:text>Warning: glossseealso @otherterm reference not found: </xsl:text> <xsl:value-of select="$otherterm"/> </xsl:message> <xsl:apply-templates mode="glossary.as.list"/> </xsl:when> <xsl:otherwise> <xsl:apply-templates mode="glossary.as.list"/> </xsl:otherwise> </xsl:choose> <xsl:choose> <xsl:when test="position() = last()"/> <xsl:otherwise> <xsl:call-template name="gentext.template"> <xsl:with-param name="context" select="'glossary'"/> <xsl:with-param name="name" select="'seealso-separator'"/> </xsl:call-template> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- ==================================================================== --> <!-- Format glossary blocks --> <xsl:template match="d:glossdiv" mode="glossary.as.blocks"> &setup-language-variable; <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <xsl:variable name="entries" select="d:glossentry"/> <xsl:variable name="preamble" select="*[not(self::d:title or self::d:subtitle or self::d:glossentry)]"/> <fo:block id="{$id}"> <xsl:call-template name="glossdiv.titlepage"/> </fo:block> <xsl:apply-templates select="$preamble"/> <xsl:choose> <xsl:when test="$glossary.sort != 0"> <xsl:apply-templates select="$entries" mode="glossary.as.blocks"> <xsl:sort lang="{$language}" select="normalize-space(translate(concat(@sortas, d:glossterm[not(parent::d:glossentry/@sortas) or parent::d:glossentry/@sortas = '']), &lowercase;, &uppercase;))"/> </xsl:apply-templates> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="$entries" mode="glossary.as.blocks"/> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- GlossEntry ::= GlossTerm, Acronym?, Abbrev?, (IndexTerm)*, RevHistory?, (GlossSee | GlossDef+) --> <xsl:template match="d:glossentry" mode="glossary.as.blocks"> <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <fo:block xsl:use-attribute-sets="glossterm.block.properties"> <xsl:call-template name="anchor"> <xsl:with-param name="conditional"> <xsl:choose> <xsl:when test="$glossterm.auto.link != 0 or $glossary.collection != ''">0</xsl:when> <xsl:otherwise>1</xsl:otherwise> </xsl:choose> </xsl:with-param> </xsl:call-template> <xsl:choose> <xsl:when test="$glossentry.show.acronym = 'primary'"> <xsl:choose> <xsl:when test="d:acronym|d:abbrev"> <xsl:apply-templates select="d:acronym|d:abbrev" mode="glossary.as.blocks"/> <xsl:text> (</xsl:text> <xsl:apply-templates select="d:glossterm" mode="glossary.as.blocks"/> <xsl:text>)</xsl:text> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="d:glossterm" mode="glossary.as.blocks"/> </xsl:otherwise> </xsl:choose> </xsl:when> <xsl:when test="$glossentry.show.acronym = 'yes'"> <xsl:apply-templates select="d:glossterm" mode="glossary.as.blocks"/> <xsl:if test="d:acronym|d:abbrev"> <xsl:text> (</xsl:text> <xsl:apply-templates select="d:acronym|d:abbrev" mode="glossary.as.blocks"/> <xsl:text>)</xsl:text> </xsl:if> </xsl:when> <xsl:otherwise> <xsl:apply-templates select="d:glossterm" mode="glossary.as.blocks"/> </xsl:otherwise> </xsl:choose> <xsl:apply-templates select="d:indexterm"/> </fo:block> <fo:block xsl:use-attribute-sets="glossdef.block.properties"> <xsl:apply-templates select="d:glosssee|d:glossdef" mode="glossary.as.blocks"/> </fo:block> </xsl:template> <xsl:template match="d:glossentry/d:glossterm" mode="glossary.as.blocks"> <xsl:variable name="id"> <xsl:call-template name="object.id"/> </xsl:variable> <fo:inline id="{$id}"> <xsl:apply-templates/> </fo:inline> <xsl:if test="following-sibling::d:glossterm">, </xsl:if> </xsl:template> <xsl:template match="d:glossentry/d:acronym" mode="glossary.as.blocks"> <xsl:apply-templates/> <xsl:if test="following-sibling::d:acronym|following-sibling::d:abbrev">, </xsl:if> </xsl:template> <xsl:template match="d:glossentry/d:abbrev" mode="glossary.as.blocks"> <xsl:apply-templates/> <xsl:if test="following-sibling::d:acronym|following-sibling::d:abbrev">, </xsl:if> </xsl:template> <xsl:template match="d:glossentry/d:glosssee" mode="glossary.as.blocks"> <xsl:variable name="otherterm" select="@otherterm"/> <xsl:variable name="targets" select="key('id', $otherterm)"/> <xsl:variable name="target" select="$targets[1]"/> <xsl:variable name="xlink" select="@xlink:href"/> <xsl:variable name="template"> <xsl:call-template name="gentext.template"> <xsl:with-param name="context" select="'glossary'"/> <xsl:with-param name="name" select="'see'"/> </xsl:call-template> </xsl:variable> <xsl:variable name="title"> <xsl:choose> <xsl:when test="$target"> <fo:basic-link internal-destination="{$otherterm}" xsl:use-attribute-sets="xref.properties"> <xsl:apply-templates select="$target" mode="xref-to"/> </fo:basic-link> </xsl:when> <xsl:when test="$xlink"> <xsl:call-template name="simple.xlink"> <xsl:with-param name="content"> <xsl:apply-templates/> </xsl:with-param> </xsl:call-template> </xsl:when> <xsl:when test="$otherterm != '' and not($target)"> <xsl:message> <xsl:text>Warning: glosssee @otherterm reference not found: </xsl:text> <xsl:value-of select="$otherterm"/> </xsl:message> <xsl:apply-templates mode="glossary.as.blocks"/> </xsl:when> <xsl:otherwise> <xsl:apply-templates mode="glossary.as.blocks"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:call-template name="substitute-markup"> <xsl:with-param name="template" select="$template"/> <xsl:with-param name="title" select="$title"/> </xsl:call-template> </xsl:template> <xsl:template match="d:glossentry/d:glossdef" mode="glossary.as.blocks"> <xsl:apply-templates select="*[local-name(.) != 'glossseealso']" mode="glossary.as.blocks"/> <xsl:if test="d:glossseealso"> <fo:block> <xsl:variable name="template"> <xsl:call-template name="gentext.template"> <xsl:with-param name="context" select="'glossary'"/> <xsl:with-param name="name" select="'seealso'"/> </xsl:call-template> </xsl:variable> <xsl:variable name="title"> <xsl:apply-templates select="d:glossseealso" mode="glossary.as.blocks"/> </xsl:variable> <xsl:call-template name="substitute-markup"> <xsl:with-param name="template" select="$template"/> <xsl:with-param name="title" select="$title"/> </xsl:call-template> </fo:block> </xsl:if> </xsl:template> <xsl:template match="d:glossentry/d:glossdef/d:para[1]|d:glossentry/d:glossdef/d:simpara[1]" mode="glossary.as.blocks"> <fo:block> <xsl:apply-templates/> </fo:block> </xsl:template> <!-- Handle any other glossdef content normally --> <xsl:template match="*" mode="glossary.as.blocks"> <xsl:apply-templates select="." /> </xsl:template> <xsl:template match="d:glossseealso" mode="glossary.as.blocks"> <xsl:variable name="otherterm" select="@otherterm"/> <xsl:variable name="targets" select="key('id', $otherterm)"/> <xsl:variable name="target" select="$targets[1]"/> <xsl:variable name="xlink" select="@xlink:href"/> <xsl:choose> <xsl:when test="$target"> <fo:basic-link internal-destination="{$otherterm}" xsl:use-attribute-sets="xref.properties"> <xsl:apply-templates select="$target" mode="xref-to"/> </fo:basic-link> </xsl:when> <xsl:when test="$xlink"> <xsl:call-template name="simple.xlink"> <xsl:with-param name="content"> <xsl:apply-templates/> </xsl:with-param> </xsl:call-template> </xsl:when> <xsl:when test="$otherterm != '' and not($target)"> <xsl:message> <xsl:text>Warning: glossseealso @otherterm reference not found: </xsl:text> <xsl:value-of select="$otherterm"/> </xsl:message> <xsl:apply-templates mode="glossary.as.blocks"/> </xsl:when> <xsl:otherwise> <xsl:apply-templates mode="glossary.as.blocks"/> </xsl:otherwise> </xsl:choose> <xsl:choose> <xsl:when test="position() = last()"/> <xsl:otherwise> <xsl:call-template name="gentext.template"> <xsl:with-param name="context" select="'glossary'"/> <xsl:with-param name="name" select="'seealso-separator'"/> </xsl:call-template> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- ==================================================================== --> </xsl:stylesheet>
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 26953 | Paul Allen | Move //guest/perforce_software/p4convert to //guest/perforce_software/p4convert/main | ||
//guest/perforce_software/p4convert/docs/docbook-xsl-ns-1.78.1/fo/glossary.xsl | |||||
#2 | 14806 | Paul Allen | Update docs and add +w. | ||
#1 | 13920 | Paul Allen | copy part 2 (no errors) | ||
//guest/paul_allen/p4convert-maven/docs/docbook-xsl-ns-1.78.1/fo/glossary.xsl | |||||
#1 | 13895 | Paul Allen | Copying using p4convert-docbook | ||
//guest/perforce_software/doc_build/main/docbook-xsl-ns-1.78.1/fo/glossary.xsl | |||||
#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. |