diff options
author | Adrian Kummerlaender | 2014-08-18 20:11:18 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2014-08-18 20:11:18 +0200 |
commit | b31f9170c2bc2330442070968d3cb334cadb5faa (patch) | |
tree | eb5eef97afdf5d5f4066743ec2b8ed05241a71e4 /test/external_text_formatter | |
parent | 8ed33c3e9e2648a5a0150c05e06c228336e9e9d6 (diff) | |
download | InputXSLT-b31f9170c2bc2330442070968d3cb334cadb5faa.tar InputXSLT-b31f9170c2bc2330442070968d3cb334cadb5faa.tar.gz InputXSLT-b31f9170c2bc2330442070968d3cb334cadb5faa.tar.bz2 InputXSLT-b31f9170c2bc2330442070968d3cb334cadb5faa.tar.lz InputXSLT-b31f9170c2bc2330442070968d3cb334cadb5faa.tar.xz InputXSLT-b31f9170c2bc2330442070968d3cb334cadb5faa.tar.zst InputXSLT-b31f9170c2bc2330442070968d3cb334cadb5faa.zip |
Renamed FunctionExternalCommand result root node
* this change was implemented to match the naming scheme of all other external functions
* updated external text formatter test case accordingly
Diffstat (limited to 'test/external_text_formatter')
-rw-r--r-- | test/external_text_formatter/transformation.xsl | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/test/external_text_formatter/transformation.xsl b/test/external_text_formatter/transformation.xsl index c6f11fc..eb92c46 100644 --- a/test/external_text_formatter/transformation.xsl +++ b/test/external_text_formatter/transformation.xsl @@ -11,15 +11,11 @@ <xsl:import href="[testcase.xsl]"/> <xsl:template name="formatter"> - <xsl:param name="format"/> - <xsl:param name="file"/> - + <xsl:param name="format"/> + <xsl:param name="file"/> <xsl:variable name="content" select="InputXSLT:read-file($file)/text()"/> - <xsl:copy-of select="InputXSLT:external-command( - $format, - $content - )"/> + <xsl:copy-of select="InputXSLT:external-command($format, $content)"/> </xsl:template> <xsl:template name="implementation"> @@ -31,8 +27,8 @@ </xsl:variable> <xsl:choose> - <xsl:when test="xalan:nodeset($result)/output/@result = 'success'"> - <xsl:copy-of select="xalan:nodeset($result)/output/*"/> + <xsl:when test="xalan:nodeset($result)/command/@result = 'success'"> + <xsl:copy-of select="xalan:nodeset($result)/command/node()"/> </xsl:when> <xsl:otherwise> Failure during external text formatting |