aboutsummaryrefslogtreecommitdiff
path: root/libdbusmenu-glib/clean-namespaces.xslt
blob: 8344a71efd85fbf8b526ebeab69fc09430b5ba1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dox="http://www.ayatana.org/dbus/dox.dtd">
	<xsl:template match="*|@*">
		<xsl:copy>
			<xsl:apply-templates select="*|@*" />
		</xsl:copy>
	</xsl:template>
	<xsl:template match="@dox:*|dox:*"/>
	<xsl:template match="*">
		<xsl:element name="{local-name()}">
			<xsl:apply-templates select="@* | node()"/>
		</xsl:element>
	</xsl:template>
</xsl:stylesheet>