1<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dox="http://www.canonical.com/dbus/dox.dtd">
2	<xsl:template match="*|@*">
3		<xsl:copy>
4			<xsl:apply-templates select="*|@*" />
5		</xsl:copy>
6	</xsl:template>
7	<xsl:template match="@dox:*|dox:*"/>
8	<xsl:template match="*">
9		<xsl:element name="{local-name()}">
10			<xsl:apply-templates select="@* | node()"/>
11		</xsl:element>
12	</xsl:template>
13</xsl:stylesheet>
14
15