doc/man: xsl: move manpage-ulinks.xsl -> manpage-links.xsl
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 24 Mar 2016 16:38:26 +0000 (12:38 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 24 Mar 2016 19:19:21 +0000 (15:19 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
doc/man/Makefile.am
doc/man/xsl/manpage-links.xsl [new file with mode: 0644]
doc/man/xsl/manpage-ulinks.xsl [deleted file]
doc/man/xsl/manpage.xsl

index 7cbdd14092f6fc04f4474f198624ea019ebf66c1..57389b2a728d1b8292b8fc5e14b7da084a6d792f 100644 (file)
@@ -79,7 +79,7 @@ XSL_FILES = \
        manpage.xsl \
        manpage-base.xsl \
        manpage-bold-literal.xsl \
-       manpage-ulinks.xsl
+       manpage-links.xsl
 XSL_SRC_FILES = $(addprefix $(srcdir)/xsl/,$(XSL_FILES))
 
 # common dependencies
diff --git a/doc/man/xsl/manpage-links.xsl b/doc/man/xsl/manpage-links.xsl
new file mode 100644 (file)
index 0000000..0662921
--- /dev/null
@@ -0,0 +1,8 @@
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+    <xsl:template match="ulink">
+        <xsl:apply-templates/><xsl:text> &lt;</xsl:text><xsl:value-of select="@url"/><xsl:text>&gt;</xsl:text>
+    </xsl:template>
+    <xsl:template match="link">
+        <xsl:text>\fI</xsl:text><xsl:apply-templates/><xsl:text>\fR</xsl:text>
+    </xsl:template>
+</xsl:stylesheet>
diff --git a/doc/man/xsl/manpage-ulinks.xsl b/doc/man/xsl/manpage-ulinks.xsl
deleted file mode 100644 (file)
index 0662921..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-    <xsl:template match="ulink">
-        <xsl:apply-templates/><xsl:text> &lt;</xsl:text><xsl:value-of select="@url"/><xsl:text>&gt;</xsl:text>
-    </xsl:template>
-    <xsl:template match="link">
-        <xsl:text>\fI</xsl:text><xsl:apply-templates/><xsl:text>\fR</xsl:text>
-    </xsl:template>
-</xsl:stylesheet>
index 50db18966ea17d5f6059511f9e8cf02526fd0f30..01363986f2c59042794161e7539d234fac457415 100644 (file)
@@ -1,7 +1,7 @@
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
     <xsl:import href="manpage-base.xsl" />
     <xsl:import href="manpage-bold-literal.xsl" />
-    <xsl:import href="manpage-ulinks.xsl" />
+    <xsl:import href="manpage-links.xsl" />
 
     <!-- disable end notes -->
     <xsl:param name="man.endnotes.are.numbered">0</xsl:param>
This page took 0.027587 seconds and 4 git commands to generate.