aboutsummaryrefslogtreecommitdiff
path: root/xsl/identity.xsl
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2009-08-18 13:24:38 +0200
committerdakkar <dakkar@thenautilus.net>2009-08-18 13:24:38 +0200
commit67feec7f67b5de0ebc0c028f18172e348104cd65 (patch)
treedb8574f48fa19586f51d07d0108520eeb92625ea /xsl/identity.xsl
downloadsitemake-master.tar.gz
sitemake-master.tar.bz2
sitemake-master.zip
import from the old websiteHEADmaster
Diffstat (limited to 'xsl/identity.xsl')
-rw-r--r--xsl/identity.xsl10
1 files changed, 10 insertions, 0 deletions
diff --git a/xsl/identity.xsl b/xsl/identity.xsl
new file mode 100644
index 0000000..04a0bd4
--- /dev/null
+++ b/xsl/identity.xsl
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:output method="xml"/>
+<xsl:template match="@*|node()">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()"/>
+ </xsl:copy>
+</xsl:template>
+
+</xsl:stylesheet>