aboutsummaryrefslogtreecommitdiff
path: root/utility/reader.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'utility/reader.xsl')
-rw-r--r--utility/reader.xsl16
1 files changed, 16 insertions, 0 deletions
diff --git a/utility/reader.xsl b/utility/reader.xsl
new file mode 100644
index 0000000..31d6fcc
--- /dev/null
+++ b/utility/reader.xsl
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:xalan="http://xml.apache.org/xalan"
+ xmlns:InputXSLT="function.inputxslt.application"
+ exclude-result-prefixes="xalan InputXSLT"
+>
+
+<xsl:template name="reader">
+ <xsl:param name="path"/>
+
+ <xsl:copy-of select="InputXSLT:read-file($path)/self::file/*"/>
+</xsl:template>
+
+</xsl:stylesheet>