<?xml version='1.0'?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:d="http://docbook.org/ns/docbook" xmlns:exsl="http://exslt.org/common" exclude-result-prefixes="exsl d" version='1.0'> <!-- ******************************************************************** $Id: block.xsl 8703 2010-07-06 20:57:06Z nwalsh $ ******************************************************************** 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:caution|d:important|d:note|d:tip|d:warning"> <xsl:call-template name="roff-if-start"> <xsl:with-param name="condition">n</xsl:with-param> </xsl:call-template> <xsl:text>.sp </xsl:text> <xsl:call-template name="roff-if-end"/> <xsl:text>.RS 4 </xsl:text> <xsl:if test="not($man.output.better.ps.enabled = 0)"> <xsl:text>.BM yellow </xsl:text> </xsl:if> <xsl:call-template name="pinch.together"/> <xsl:text>.ps +1 </xsl:text> <xsl:call-template name="make.bold.title"/> <xsl:text>.ps -1 </xsl:text> <xsl:text>.br </xsl:text> <xsl:apply-templates/> <xsl:text>.sp .5v </xsl:text> <xsl:if test="not($man.output.better.ps.enabled = 0)"> <xsl:text>.EM yellow </xsl:text> </xsl:if> <xsl:text>.RE </xsl:text> </xsl:template> <xsl:template match="d:formalpara"> <xsl:variable name="title.wrapper"> <xsl:value-of select="normalize-space(d:title[1])"/> </xsl:variable> <xsl:text>.PP </xsl:text> <!-- * don't put linebreak after head; instead render it as a "run in" --> <!-- * head, that is, inline, with a period and space following it --> <xsl:call-template name="bold"> <xsl:with-param name="node" select="exsl:node-set($title.wrapper)"/> <xsl:with-param name="context" select="."/> </xsl:call-template> <xsl:text>. </xsl:text> <xsl:apply-templates/> </xsl:template> <xsl:template match="d:formalpara/d:para"> <xsl:call-template name="mixed-block"/> <xsl:text> </xsl:text> </xsl:template> <xsl:template match="d:para"> <!-- * FIXME: Need to extract the ancestor::footnote, etc. checking and --> <!-- * move to named template so that we can call it from templates for --> <!-- * other block elements also --> <xsl:choose> <!-- * If a para is a descendant of a footnote, etc., then indent it --> <!-- * (unless it is the first child, in which case don't generate --> <!-- * anything at all to mark its start). --> <!-- * FIXME: *blurb checking should not be munged in here the way --> <!-- * it currently is; this probably breaks blurb indenting. --> <xsl:when test="ancestor::d:footnote or ancestor::d:annotation or ancestor::d:authorblurb or ancestor::d:personblurb or ancestor::d:callout"> <xsl:if test="preceding-sibling::*[not(name() ='')]"> <xsl:text>.sp</xsl:text> <xsl:text> </xsl:text> <xsl:text>.RS 4n</xsl:text> <xsl:text> </xsl:text> </xsl:if> </xsl:when> <xsl:otherwise> <xsl:text>.PP</xsl:text> <xsl:text> </xsl:text> </xsl:otherwise> </xsl:choose> <xsl:call-template name="mixed-block"/> <xsl:if test="ancestor::d:footnote or ancestor::d:annotation or ancestor::d:authorblurb or ancestor::d:personblurb"> <xsl:if test="preceding-sibling::*[not(name() ='')]"> <xsl:text> </xsl:text> <xsl:text>.RE</xsl:text> <xsl:text> </xsl:text> </xsl:if> </xsl:if> <xsl:text> </xsl:text> </xsl:template> <xsl:template match="d:simpara"> <xsl:choose> <xsl:when test="ancestor::d:footnote or ancestor::d:annotation or ancestor::d:authorblurb or ancestor::d:personblurb or ancestor::d:callout"> <xsl:if test="preceding-sibling::*[not(name() ='')]"> <xsl:text>.sp</xsl:text> <xsl:text> </xsl:text> <xsl:text>.RS 4n</xsl:text> <xsl:text> </xsl:text> </xsl:if> </xsl:when> <xsl:otherwise> <xsl:text>.sp</xsl:text> <xsl:text> </xsl:text> </xsl:otherwise> </xsl:choose> <xsl:variable name="content"> <xsl:apply-templates/> </xsl:variable> <xsl:value-of select="normalize-space($content)"/> <xsl:text> </xsl:text> </xsl:template> <!-- ==================================================================== --> <!-- * Yes, address, synopsis, and funcsynopsisinfo are verbatim environments. --> <xsl:template match="d:literallayout|d:programlisting|d:screen| d:address|d:synopsis|d:funcsynopsisinfo"> <xsl:param name="indent"> <!-- * Only indent this verbatim if $man.indent.verbatims is --> <!-- * non-zero and it is not a child of a *synopsis element or a --> <!-- * descendant of a refsynopsisdiv --> <xsl:if test="not($man.indent.verbatims = 0) and not(substring(local-name(..), string-length(local-name(..))-7) = 'synopsis') and not(ancestor::*[local-name() = 'refsynopsisdiv']) "> <xsl:text>Yes</xsl:text> </xsl:if> </xsl:param> <!-- * if this verbatim environment starts with a newline/linebreak --> <!-- * (that is, if there is a linebreak after the opening tag), that --> <!-- * break would otherwise show up in output; that does not seem to --> <!-- * be what most users would expect, so we check to see if it does --> <!-- * indeed start with a leading newline. if so, later in this --> <!-- * template, we adjust for the leading new line by doing some --> <!-- * monkeyshines with "sp -1" vertical spacing --> <xsl:variable name="adjust-for-leading-newline"> <xsl:if test="substring(., 1, 1) = ' '">Yes</xsl:if> </xsl:variable> <xsl:choose> <!-- * Check to see if this verbatim item is within a parent element that --> <!-- * allows mixed content. --> <!-- * --> <!-- * If it is within a mixed-content parent, then a line space is --> <!-- * already added before it by the mixed-block template, so we don't --> <!-- * need to add one here. --> <!-- * --> <!-- * If it is not within a mixed-content parent, then we need to add a --> <!-- * line space before it. --> <xsl:when test="parent::d:caption|parent::d:entry|parent::d:para| parent::d:td|parent::d:th" /> <!-- do nothing --> <xsl:otherwise> <xsl:text> </xsl:text> <xsl:text>.sp </xsl:text> </xsl:otherwise> </xsl:choose> <xsl:if test="$indent = 'Yes'"> <!-- * start indented section --> <xsl:call-template name="roff-if-start"/> <!-- * only indent in TTY output, not in non-TTY/PS --> <xsl:text>.RS</xsl:text> <xsl:if test="not($man.indent.width = '')"> <xsl:text> </xsl:text> <xsl:value-of select="$man.indent.width"/> </xsl:if> <xsl:text> </xsl:text> <xsl:call-template name="roff-if-end"/> </xsl:if> <xsl:choose> <xsl:when test="self::d:funcsynopsisinfo"> <!-- * All Funcsynopsisinfo content is by default rendered in bold, --> <!-- * because the man(7) man page says this: --> <!-- * --> <!-- * For functions, the arguments are always specified using --> <!-- * italics, even in the SYNOPSIS section, where the rest of --> <!-- * the function is specified in bold --> <!-- * --> <!-- * Look through the contents of the man/man2 and man3 directories --> <!-- * on your system, and you'll see that most existing pages do follow --> <!-- * this "bold everything in function synopsis" rule. --> <!-- * --> <!-- * Users who don't want the bold output can choose to adjust the --> <!-- * man.font.funcsynopsisinfo parameter on their own. So even if you --> <!-- * don't personally like the way it looks, please don't change the --> <!-- * default to be non-bold - because it's a convention that's --> <!-- * followed is the vast majority of existing man pages that document --> <!-- * functions, and we need to follow it by default, like it or no. --> <xsl:text>.ft </xsl:text> <xsl:value-of select="$man.font.funcsynopsisinfo"/> <xsl:text> </xsl:text> <xsl:call-template name="verbatim-block-start"/> <xsl:text>.nf </xsl:text> <xsl:apply-templates/> <xsl:text> </xsl:text> <xsl:text>.fi </xsl:text> <xsl:call-template name="verbatim-block-end"/> <xsl:text>.ft </xsl:text> </xsl:when> <xsl:otherwise> <!-- * Other verbatims do not need to get bolded --> <xsl:call-template name="verbatim-block-start"/> <xsl:text>.nf </xsl:text> <xsl:choose> <xsl:when test="self::d:literallayout|self::d:programlisting|self::d:screen and not(ancestor::*[local-name() = 'refsynopsisdiv']) and not($man.output.better.ps.enabled = 0) "> <!-- * if this is a literallayout|programlisting|screen, --> <!-- * and user has set man.output.better.ps.enabled to non-zero, --> <!-- * then we put a background behind it in non-TTY output; except --> <!-- * if it’s a descendant of a refsynopsisdiv (as can be --> <!-- * found in the git docs) --> <xsl:choose> <!-- * if content has a leading newline, we need to back up --> <!-- * one line vertically to get it boxed correctly --> <xsl:when test="not($adjust-for-leading-newline = '')"> <xsl:call-template name="roff-if-start"> <xsl:with-param name="condition">t</xsl:with-param> </xsl:call-template> <xsl:text>.sp -1 </xsl:text> <xsl:call-template name="roff-if-end"/> <xsl:text>.BB lightgray</xsl:text> <xsl:text> </xsl:text> <xsl:text>adjust-for-leading-newline </xsl:text> <!-- * in non-TTY output, for the case where we have a --> <!-- * leading newline, we need to also back up one line --> <!-- * vertically inside the background box --> <xsl:text>.sp -1 </xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>.BB lightgray </xsl:text> </xsl:otherwise> </xsl:choose> <xsl:apply-templates/> <xsl:text> </xsl:text> <xsl:choose> <xsl:when test="not($adjust-for-leading-newline = '')"> <xsl:text>.EB lightgray</xsl:text> <xsl:text> </xsl:text> <xsl:text>adjust-for-leading-newline </xsl:text> <xsl:call-template name="roff-if-start"> <xsl:with-param name="condition">t</xsl:with-param> </xsl:call-template> <!-- * in non-TTY output, for the case where we have a --> <!-- * leading newline, we need to add back at the end of --> <!-- * the content some of the vertical space we chopped --> <!-- * off at the beginning --> <xsl:text>.sp 1 </xsl:text> <xsl:call-template name="roff-if-end"/> </xsl:when> <xsl:otherwise> <xsl:text>.EB lightgray </xsl:text> </xsl:otherwise> </xsl:choose> </xsl:when> <xsl:otherwise> <!-- * otherwise this is not a literallayout|programlisting|screen, --> <!-- * so we don’t put a background behind --> <xsl:apply-templates/> <xsl:text> </xsl:text> </xsl:otherwise> </xsl:choose> <xsl:text>.fi </xsl:text> <xsl:call-template name="verbatim-block-end"/> </xsl:otherwise> </xsl:choose> <xsl:if test="$indent = 'Yes'"> <!-- * end indented section --> <xsl:call-template name="roff-if-start"/> <xsl:text>.RE </xsl:text> <xsl:call-template name="roff-if-end"/> </xsl:if> <!-- * if this verbatim environment has a following sibling node, --> <!-- * output a line of space to separate the content --> <xsl:if test="following-sibling::text() |following-sibling::d:para |following-sibling::d:simpara"> <xsl:text>.sp </xsl:text> </xsl:if> </xsl:template> <!-- ==================================================================== --> <xsl:template match="d:table|d:informaltable"> <xsl:apply-templates select="." mode="to.tbl"> <!--* we call the to.tbl mode with the "source" param so that we can --> <!--* preserve the context information and pass it down to the --> <!--* named templates that do the actual table processing --> <xsl:with-param name="source" select="ancestor::d:refentry/d:refnamediv[1]/d:refname[1]"/> </xsl:apply-templates> </xsl:template> <!-- ==================================================================== --> <xsl:template match="d:informalexample"> <xsl:apply-templates/> </xsl:template> <!-- ==================================================================== --> <xsl:template match="d:figure|d:example"> <xsl:variable name="param.placement" select="substring-after(normalize-space($formal.title.placement), concat(local-name(.), ' '))"/> <xsl:variable name="placement"> <xsl:choose> <xsl:when test="contains($param.placement, ' ')"> <xsl:value-of select="substring-before($param.placement, ' ')"/> </xsl:when> <xsl:when test="$param.placement = ''">before</xsl:when> <xsl:otherwise> <xsl:value-of select="$param.placement"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:text>.PP </xsl:text> <xsl:call-template name="formal.object"> <xsl:with-param name="placement" select="$placement"/> </xsl:call-template> <xsl:text> </xsl:text> </xsl:template> <!-- ==================================================================== --> <xsl:template match="d:mediaobject"> <xsl:text>.sp</xsl:text> <xsl:text> </xsl:text> <xsl:text>.RS</xsl:text> <xsl:if test="not($list-indent = '')"> <xsl:text> </xsl:text> <xsl:value-of select="$list-indent"/> </xsl:if> <xsl:text> </xsl:text> <xsl:apply-templates/> <xsl:text> </xsl:text> <xsl:text>.RE </xsl:text> </xsl:template> <xsl:template match="d:imageobject"> <xsl:text>[IMAGE]</xsl:text> <xsl:apply-templates/> <xsl:text> </xsl:text> </xsl:template> <xsl:template match="d:textobject[parent::d:inlinemediaobject]"> <xsl:text>[</xsl:text> <xsl:value-of select="."/> <xsl:text>]</xsl:text> </xsl:template> <xsl:template match="d:textobject"> <xsl:apply-templates/> </xsl:template> <!-- ==================================================================== --> <xsl:template name="formal.object"> <xsl:param name="placement" select="'before'"/> <xsl:param name="class" select="local-name(.)"/> <xsl:choose> <xsl:when test="$placement = 'before'"> <xsl:call-template name="formal.object.heading"/> <xsl:apply-templates/> </xsl:when> <xsl:otherwise> <xsl:apply-templates/> <xsl:call-template name="formal.object.heading"/> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="formal.object.heading"> <xsl:param name="object" select="."/> <xsl:param name="title"> <xsl:apply-templates select="$object" mode="object.title.markup.textonly"/> </xsl:param> <xsl:call-template name="bold"> <xsl:with-param name="node" select="exsl:node-set($title)"/> <xsl:with-param name="context" select="."/> </xsl:call-template> <xsl:text> </xsl:text> </xsl:template> <!-- ==================================================================== --> <!-- * suppress abstract --> <xsl:template match="d:abstract"/> </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/manpages/block.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/manpages/block.xsl | |||||
#1 | 13895 | Paul Allen | Copying using p4convert-docbook | ||
//guest/perforce_software/doc_build/main/docbook-xsl-ns-1.78.1/manpages/block.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. |