aboutsummaryrefslogtreecommitdiff
path: root/utility/writer.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'utility/writer.xsl')
-rw-r--r--utility/writer.xsl20
1 files changed, 20 insertions, 0 deletions
diff --git a/utility/writer.xsl b/utility/writer.xsl
new file mode 100644
index 0000000..42e9502
--- /dev/null
+++ b/utility/writer.xsl
@@ -0,0 +1,20 @@
+<?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="writer">
+ <xsl:param name="source"/>
+ <xsl:param name="target"/>
+
+ <xsl:copy-of select="InputXSLT:write-file(
+ $target,
+ $source
+ )"/>
+</xsl:template>
+
+</xsl:stylesheet>