summaryrefslogtreecommitdiffstats
path: root/scripts/gconf/identity_modulo_mtime.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gconf/identity_modulo_mtime.xsl')
-rw-r--r--scripts/gconf/identity_modulo_mtime.xsl13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/gconf/identity_modulo_mtime.xsl b/scripts/gconf/identity_modulo_mtime.xsl
new file mode 100644
index 0000000..06a49c7
--- /dev/null
+++ b/scripts/gconf/identity_modulo_mtime.xsl
@@ -0,0 +1,13 @@
+<!--
+ shamelessly copied from
+ http://en.wikipedia.org/wiki/Identity_transform#Using_XSLT
+ -->
+<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:template match="@mtime"/>
+</xsl:stylesheet>