2010-03-12 21:49:50 +08:00
|
|
|
<?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"
|
2010-09-24 21:08:57 +08:00
|
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
2010-03-12 21:49:50 +08:00
|
|
|
version='1.0'>
|
|
|
|
|
|
|
|
|
|
<xsl:output method="xml" />
|
|
|
|
|
|
|
|
|
|
<!-- Copy every element through with local name only -->
|
|
|
|
|
<xsl:template match="*">
|
2010-10-29 22:34:43 +08:00
|
|
|
<xsl:element name="{local-name()}" namespace="">
|
2010-03-12 21:49:50 +08:00
|
|
|
<xsl:apply-templates select="@*|node()"/>
|
|
|
|
|
</xsl:element>
|
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
<!-- Copy every attribute through -->
|
|
|
|
|
<xsl:template match="@*"><xsl:copy/></xsl:template>
|
|
|
|
|
</xsl:stylesheet>
|