man.xsl 890 B

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