]>
Commit | Line | Data |
---|---|---|
1 | <xsl:stylesheet | |
2 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
3 | version="1.0"> | |
4 | ||
5 | <xsl:import href="/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl" /> | |
6 | ||
7 | <xsl:param name="man.output.encoding" select="'UTF-8'" /> | |
8 | <!-- LANGUAGE --> | |
9 | ||
10 | <xsl:template match="email"><<xsl:apply-templates/>></xsl:template> | |
11 | ||
12 | <xsl:template match="date"> | |
13 | <xsl:call-template name="datetime.format"> | |
14 | <xsl:with-param name="date" select="."/> | |
15 | <xsl:with-param name="format" select="'d B Y'"/> | |
16 | </xsl:call-template> | |
17 | </xsl:template> | |
18 | ||
19 | </xsl:stylesheet> |