diff options
| author | Sam Varshavchik | 2013-08-19 16:39:41 -0400 | 
|---|---|---|
| committer | Sam Varshavchik | 2013-08-25 14:43:51 -0400 | 
| commit | 9c45d9ad13fdf439d44d7443ae75da15ea0223ed (patch) | |
| tree | 7a81a04cb51efb078ee350859a64be2ebc6b8813 /docbook/manpages.xsl | |
| parent | a9520698b770168d1f33d6301463bb70a19655ec (diff) | |
| download | courier-libs-9c45d9ad13fdf439d44d7443ae75da15ea0223ed.tar.bz2 | |
Initial checkin
Imported from subversion report, converted to git. Updated all paths in
scripts and makefiles, reflecting the new directory hierarchy.
Diffstat (limited to 'docbook/manpages.xsl')
| -rw-r--r-- | docbook/manpages.xsl | 55 | 
1 files changed, 55 insertions, 0 deletions
| diff --git a/docbook/manpages.xsl b/docbook/manpages.xsl new file mode 100644 index 0000000..3d378d4 --- /dev/null +++ b/docbook/manpages.xsl @@ -0,0 +1,55 @@ +<?xml version='1.0'?> +<xsl:stylesheet   +    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + +<xsl:include href="/usr/share/sgml/docbook/xsl-stylesheets/xhtml/onechunk.xsl"/> + +<xsl:param name="html.stylesheet" select="'style.css'"/> +<xsl:param name="admon.graphics" select="0"/> + +<xsl:param name="use.id.as.filename" select="1"/> + +<xsl:param name="funcsynopsis.style">ansi</xsl:param> + +<xsl:param name="table.borders.with.css" select="1" /> + +<xsl:param name="default.table.frame" select="'collapse'" /> +<xsl:param name="table.cell.border.style" select="''" /> +<xsl:param name="table.cell.border.thickness" select="''" /> +<xsl:param name="table.cell.border.color" select="''" /> +<xsl:param name="emphasis.propagates.style" select="1" /> +<xsl:param name="para.propagates.style" select="1" /> +<xsl:param name="entry.propagates.style" select="1" /> + +<xsl:param name="part.autolabel" select="0" /> +<xsl:param name="section.autolabel" select="0" /> +<xsl:param name="chapter.autolabel" select="0" /> + +<xsl:template name="user.head.content"> + +   <link rel='stylesheet' type='text/css' href='manpage.css' /> +   <meta name="MSSmartTagsPreventParsing" content="TRUE" /> +   <link rel="icon" href="icon.gif" type="image/gif" /> +    <xsl:comment> + +Copyright 1998 - 2009 Double Precision, Inc.  See COPYING for distribution +information. + +</xsl:comment> +</xsl:template> + +<!-- Bug fix 1.76.1 --> +<xsl:template match="funcdef/function" mode="ansi-tabular"> +  <xsl:choose> +    <xsl:when test="$funcsynopsis.decoration != 0"> +      <strong xmlns="http://www.w3.org/1999/xhtml" +              xmlns:xslo="http://www.w3.org/1999/XSL/Transform"><xsl:apply-templates mode="ansi-nontabular"/></strong> +    </xsl:when> +    <xsl:otherwise> +      <xsl:apply-templates mode="kr-tabular"/> +    </xsl:otherwise> +  </xsl:choose> +</xsl:template> + +</xsl:stylesheet> + | 
