diff options
author | Julian Andres Klode <jak@debian.org> | 2016-09-01 00:53:40 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-09-01 00:53:40 +0200 |
commit | 265c3312bd1b329dc9b54c754da46621d9019c11 (patch) | |
tree | e1c740747f84f793ee2b6ab4ffaffbc9f76cd575 /doc/manpage-style.xsl.cmake.in | |
parent | 28f0867d99398a23296ead313112402c51d4e876 (diff) | |
parent | 317bb39f3cd6626c74f25d7bdf2907f1b235f553 (diff) |
Merge tag '1.3_rc3' into ubuntu/master
apt Debian release 1.3~rc3
Diffstat (limited to 'doc/manpage-style.xsl.cmake.in')
-rw-r--r-- | doc/manpage-style.xsl.cmake.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/manpage-style.xsl.cmake.in b/doc/manpage-style.xsl.cmake.in new file mode 100644 index 000000000..53d6780cb --- /dev/null +++ b/doc/manpage-style.xsl.cmake.in @@ -0,0 +1,18 @@ +<xsl:stylesheet + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + +<xsl:import href="@DOCBOOK_XSL@/manpages/docbook.xsl" /> + +<xsl:param name="man.output.encoding" select="'UTF-8'" /> + +<xsl:template match="email"><<xsl:apply-templates/>></xsl:template> + +<xsl:template match="date"> + <xsl:call-template name="datetime.format"> + <xsl:with-param name="date" select="."/> + <xsl:with-param name="format" select="'d B Y'"/> + </xsl:call-template> +</xsl:template> + +</xsl:stylesheet> |