aboutsummaryrefslogtreecommitdiff
path: root/test/read_xml_file/transformation.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'test/read_xml_file/transformation.xsl')
-rw-r--r--test/read_xml_file/transformation.xsl26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/read_xml_file/transformation.xsl b/test/read_xml_file/transformation.xsl
new file mode 100644
index 0000000..ba6fed1
--- /dev/null
+++ b/test/read_xml_file/transformation.xsl
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:InputXSLT="function.inputxslt.application"
+ exclude-result-prefixes="InputXSLT"
+>
+
+<xsl:output
+ method="xml"
+ omit-xml-declaration="no"
+ encoding="UTF-8"
+ indent="yes"
+/>
+
+<xsl:template match="/">
+<test_case>
+ <function_read_xml_file>
+ <xsl:for-each select="InputXSLT:read-xml-file('../common/test.txt')/tester/eintrag">
+ <item><xsl:value-of select="."/></item>
+ </xsl:for-each>
+ </function_read_xml_file>
+</test_case>
+</xsl:template>
+
+</xsl:stylesheet>