1<?xml version='1.0'?>
2
3<!-- This file wraps around the DocBook XSL manpages stylesheet to customise
4   - some parameters; add the CSS stylesheet, etc.
5 -->
6
7<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8                version='1.0'
9                xmlns="http://www.w3.org/TR/xhtml1/transitional"
10                exclude-result-prefixes="#default">
11
12<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"/>
13
14<!-- for sections with id attributes, use the id in the filename.
15  This produces meaningful (and persistent) URLs for the sections. -->
16<xsl:variable name="man.output.quietly" select="1"/>
17
18<!-- suppress the copyright section since the /book/bookinfo stuff isn't
19     getting used -->
20<xsl:variable name="man.output.copyright.info" select="0"/>
21
22<xsl:variable name="refentry.meta.get.quietly" select="1"/>
23
24</xsl:stylesheet>
25