diff options
author | Andy Wingo <wingo@pobox.com> | 2002-08-31 18:17:02 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-08-31 18:17:02 +0000 |
commit | 52ec4f4e5b6bd50959f703f38d67c7e07577e2cb (patch) | |
tree | cc2c353c037851f04da46e43838d53664c82b225 /docs/xsl | |
parent | 8cfb8350b87ad7cf69238dd5d8bcc47a72bea367 (diff) |
add core elements to the registry pool plugin list fix python check
Original commit message from CVS:
* add core elements to the registry pool plugin list
* fix python check
Diffstat (limited to 'docs/xsl')
-rw-r--r-- | docs/xsl/fo.xsl | 5 | ||||
-rw-r--r-- | docs/xsl/html.xsl | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/docs/xsl/fo.xsl b/docs/xsl/fo.xsl index c96fddf3f..ea984095a 100644 --- a/docs/xsl/fo.xsl +++ b/docs/xsl/fo.xsl @@ -7,10 +7,13 @@ <!-- This file is for customizing the default XSL stylesheets. --> <!-- We include them here (this one is for print output): --> <xsl:import - href="http://docbook.sourceforge.net/release/xsl/1.49/fo/docbook.xsl"/> + href="http://docbook.sourceforge.net/release/xsl/1.50.0/fo/docbook.xsl"/> <!-- .. and customize them here: --> <xsl:include href="ulink.xsl"/> <xsl:include href="keycombo.xsl"/> +<xsl:param name="body.font.family" select="'serif'"/> +<xsl:param name="sans.font.family" select="'sans-serif'"/> +<xsl:param name="title.font.family" select="'sans-serif'"/> </xsl:stylesheet> diff --git a/docs/xsl/html.xsl b/docs/xsl/html.xsl index 47d9e745c..f8498a72d 100644 --- a/docs/xsl/html.xsl +++ b/docs/xsl/html.xsl @@ -15,4 +15,6 @@ <!-- <xsl:include href="admon.xsl"/> --> <xsl:include href="css.xsl"/> +<xsl:param name="generate.component.toc" select="0"/> + </xsl:stylesheet> |