summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-11-29 13:06:10 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2007-11-29 13:06:10 +0000
commitd8695095978882927ecf9d58301a1c6ce079f4a5 (patch)
treeeb572569e1e244139e7e0e49919caab9dbdb7d49 /tools
parent9279a0091cdce5b4ca05be6265aeb1120beb6e92 (diff)
Add missing identity.xsl
Diffstat (limited to 'tools')
-rw-r--r--tools/identity.xsl7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/identity.xsl b/tools/identity.xsl
new file mode 100644
index 0000000..6630f84
--- /dev/null
+++ b/tools/identity.xsl
@@ -0,0 +1,7 @@
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:template match="@*|node()">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()"/>
+ </xsl:copy>
+ </xsl:template>
+</xsl:stylesheet>