177.1.1
by Ted Gould
Ayatana purge |
1 |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dox="http://www.canonical.com/dbus/dox.dtd"> |
167.1.52
by Ted Gould
Cleaning out namespaces from the XML so that GDBus will read it. |
2 |
<xsl:template match="*|@*"> |
3 |
<xsl:copy> |
|
4 |
<xsl:apply-templates select="*|@*" /> |
|
5 |
</xsl:copy>
|
|
6 |
</xsl:template>
|
|
7 |
<xsl:template match="@dox:*|dox:*"/> |
|
167.1.59
by Ted Gould
Wow, that blows things out. Nice! |
8 |
<xsl:template match="*"> |
9 |
<xsl:element name="{local-name()}"> |
|
10 |
<xsl:apply-templates select="@* | node()"/> |
|
11 |
</xsl:element>
|
|
12 |
</xsl:template>
|
|
167.1.52
by Ted Gould
Cleaning out namespaces from the XML so that GDBus will read it. |
13 |
</xsl:stylesheet>
|
14 |