summaryrefslogtreecommitdiffstats
path: root/documentation/template/qa-code-permalinks.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/template/qa-code-permalinks.xsl')
-rw-r--r--documentation/template/qa-code-permalinks.xsl23
1 files changed, 0 insertions, 23 deletions
diff --git a/documentation/template/qa-code-permalinks.xsl b/documentation/template/qa-code-permalinks.xsl
deleted file mode 100644
index a309095c60..0000000000
--- a/documentation/template/qa-code-permalinks.xsl
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
-This XSL sheet enables creation of permalinks for <para><code>
-constructs. Right now, this construct occurs only in the ref-manual
-book's qa issues and warnings chapter. However, if the construct
-were to appear anywhere in that ref-manual, a permalink would be
-generated. I don't foresee any <para><code> constructs being used
-in the future but if they are then a permalink with a generically
-numbered permalink would be generated.
--->
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:d="http://docbook.org/ns/docbook"
- xmlns="http://www.w3.org/1999/xhtml">
-
- <xsl:template match="para/code">
- <xsl:apply-imports/>
- <xsl:if test="$generate.permalink != 0">
- <xsl:call-template name="permalink">
- <xsl:with-param name="node" select=".."/>
- </xsl:call-template>
- </xsl:if>
- </xsl:template>
-</xsl:stylesheet>