summaryrefslogtreecommitdiff
path: root/docs/remove-namespaces.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'docs/remove-namespaces.xsl')
-rw-r--r--docs/remove-namespaces.xsl18
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/remove-namespaces.xsl b/docs/remove-namespaces.xsl
deleted file mode 100644
index 7f7f3c12..00000000
--- a/docs/remove-namespaces.xsl
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version='1.0'?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:doc="http://www.rabbitmq.com/namespaces/ad-hoc/doc"
- xmlns="http://www.w3.org/1999/xhtml"
- version='1.0'>
-
-<xsl:output method="xml" />
-
- <!-- Copy every element through with local name only -->
- <xsl:template match="*">
- <xsl:element name="{local-name()}" namespace="">
- <xsl:apply-templates select="@*|node()"/>
- </xsl:element>
- </xsl:template>
-
- <!-- Copy every attribute through -->
- <xsl:template match="@*"><xsl:copy/></xsl:template>
-</xsl:stylesheet>