[systemd-commits] Makefile.am man/custom-html.xsl
Kay Sievers
kay at kemper.freedesktop.org
Tue Jul 17 14:05:42 PDT 2012
Makefile.am | 2 +-
man/custom-html.xsl | 21 +++++++++++++++++++++
2 files changed, 22 insertions(+), 1 deletion(-)
New commits:
commit ecca17f6eec83b58f39ff5dc7894044c524ddf41
Author: Kay Sievers <kay at vrfy.org>
Date: Tue Jul 17 23:04:48 2012 +0200
man: html - cross-ref man page references and add Index link
diff --git a/Makefile.am b/Makefile.am
index b8ec740..ab143da 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3420,7 +3420,7 @@ man/%.7: man/%.xml
man/%.8: man/%.xml
$(XSLTPROC_PROCESS_MAN)
-man/%.html: man/%.xml
+man/%.html: man/%.xml man/custom-html.xsl
$(XSLTPROC_PROCESS_HTML)
CLEANFILES += \
diff --git a/man/custom-html.xsl b/man/custom-html.xsl
index df16d08..906ddc5 100644
--- a/man/custom-html.xsl
+++ b/man/custom-html.xsl
@@ -23,6 +23,27 @@
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
+<!-- translate man page references to links to html pages -->
+<xsl:template match="citerefentry">
+ <a>
+ <xsl:attribute name="href">
+ <xsl:value-of select="refentrytitle"/><xsl:text>.html</xsl:text>
+ </xsl:attribute>
+ <xsl:call-template name="inline.charseq"/>
+ </a>
+</xsl:template>
+
+<!-- add Index link at top of page -->
+<xsl:template name="user.header.content">
+ <a>
+ <xsl:attribute name="href">
+ <xsl:text>index.html</xsl:text>
+ </xsl:attribute>
+ <xsl:text>Index </xsl:text>
+ </a>
+ <hr/>
+</xsl:template>
+
<!-- Switch things to UTF-8, ISO-8859-1 is soo yesteryear -->
<xsl:output method="html" encoding="UTF-8" indent="no"/>
More information about the systemd-commits
mailing list