<?xml version='1.0'?> <xsl:stylesheet exclude-result-prefixes="d" 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" version='1.0'> <!-- ******************************************************************** $Id: fo.xsl 9720 2013-01-31 18:24:47Z 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. ******************************************************************** --> <!-- These variables set the margin-left or -right attribute value for FO output based on the writing-mode specified in the gentext file for the document's lang. --> <xsl:param name="direction.align.start"> <xsl:choose> <!-- FOP does not support writing-mode="rl-tb" --> <xsl:when test="$fop.extensions != 0">left</xsl:when> <xsl:when test="$fop1.extensions != 0">left</xsl:when> <xsl:when test="starts-with($writing.mode, 'lr')">left</xsl:when> <xsl:when test="starts-with($writing.mode, 'rl')">right</xsl:when> <xsl:when test="starts-with($writing.mode, 'tb')">top</xsl:when> <xsl:otherwise>left</xsl:otherwise> </xsl:choose> </xsl:param> <xsl:param name="direction.align.end"> <xsl:choose> <xsl:when test="$fop.extensions != 0">right</xsl:when> <xsl:when test="$fop1.extensions != 0">right</xsl:when> <xsl:when test="starts-with($writing.mode, 'lr')">right</xsl:when> <xsl:when test="starts-with($writing.mode, 'rl')">left</xsl:when> <xsl:when test="starts-with($writing.mode, 'tb')">bottom</xsl:when> <xsl:otherwise>right</xsl:otherwise> </xsl:choose> </xsl:param> <xsl:param name="direction.mode"> <xsl:choose> <xsl:when test="$fop.extensions != 0 and starts-with($writing.mode, 'rl')"> <xsl:message>WARNING: FOP does not support right-to-left writing-mode</xsl:message> <xsl:text>lr-tb</xsl:text> </xsl:when> <xsl:when test="$fop1.extensions != 0 and starts-with($writing.mode, 'rl')"> <xsl:message>WARNING: FOP does not support right-to-left writing-mode</xsl:message> <xsl:text>lr-tb</xsl:text> </xsl:when> <xsl:when test="starts-with($writing.mode, 'lr')">lr-tb</xsl:when> <xsl:when test="starts-with($writing.mode, 'rl')">rl-tb</xsl:when> <xsl:when test="starts-with($writing.mode, 'tb')">tb-rl</xsl:when> <xsl:otherwise>lr-tb</xsl:otherwise> </xsl:choose> </xsl:param> <xsl:template name="anchor"> <xsl:param name="node" select="."/> <xsl:param name="conditional" select="1"/> <xsl:variable name="id"> <xsl:call-template name="object.id"> <xsl:with-param name="object" select="$node"/> </xsl:call-template> </xsl:variable> <xsl:if test="$conditional = 0 or $node/@id or $node/@xml:id"> <xsl:attribute name="id"><xsl:value-of select="$id"/></xsl:attribute> </xsl:if> </xsl:template> <xsl:template name="dingbat"> <xsl:param name="dingbat">bullet</xsl:param> <xsl:variable name="symbol"> <xsl:choose> <xsl:when test="$dingbat='bullet'">o</xsl:when> <xsl:when test="$dingbat='copyright'">©</xsl:when> <xsl:when test="$dingbat='trademark'">™</xsl:when> <xsl:when test="$dingbat='trade'">™</xsl:when> <xsl:when test="$dingbat='registered'">®</xsl:when> <xsl:when test="$dingbat='service'">(SM)</xsl:when> <xsl:when test="$dingbat='ldquo'">"</xsl:when> <xsl:when test="$dingbat='rdquo'">"</xsl:when> <xsl:when test="$dingbat='lsquo'">'</xsl:when> <xsl:when test="$dingbat='rsquo'">'</xsl:when> <xsl:when test="$dingbat='em-dash'">—</xsl:when> <xsl:when test="$dingbat='en-dash'">-</xsl:when> <xsl:otherwise>o</xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:choose> <xsl:when test="$dingbat.fontset = ''"> <xsl:copy-of select="$symbol"/> </xsl:when> <xsl:otherwise> <fo:inline font-family="{$dingbat.fontset}"> <xsl:copy-of select="$symbol"/> </fo:inline> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="href.target"> <xsl:param name="context" select="."/> <xsl:param name="object" select="."/> <xsl:text>#</xsl:text> <xsl:call-template name="object.id"> <xsl:with-param name="object" select="$object"/> </xsl:call-template> </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. |