diff options
author | Adrian Kummerländer | 2014-06-01 17:31:17 +0200 |
---|---|---|
committer | Adrian Kummerländer | 2014-06-01 17:31:17 +0200 |
commit | 6b5da054693cd348f3c357dbf1c8cb1979fecf6a (patch) | |
tree | 8b998b3c3ea08bb7bb5c9a41569ca94d9f3166d5 /test/transform | |
parent | 1a744712426c9c19019b8ebebdd0c703aae204a6 (diff) | |
download | InputXSLT-6b5da054693cd348f3c357dbf1c8cb1979fecf6a.tar InputXSLT-6b5da054693cd348f3c357dbf1c8cb1979fecf6a.tar.gz InputXSLT-6b5da054693cd348f3c357dbf1c8cb1979fecf6a.tar.bz2 InputXSLT-6b5da054693cd348f3c357dbf1c8cb1979fecf6a.tar.lz InputXSLT-6b5da054693cd348f3c357dbf1c8cb1979fecf6a.tar.xz InputXSLT-6b5da054693cd348f3c357dbf1c8cb1979fecf6a.tar.zst InputXSLT-6b5da054693cd348f3c357dbf1c8cb1979fecf6a.zip |
Simplified test case result variable definitions
* variables containing the output of a external function can be defined using the "select" attribute
** tree-like definition is only needed when helper templates such as "transformer" are used
** queries on variables that are instantiated in this fashion need the "self::" prefix before base nodes
* changed includes of the "testcase.xsl" base template to imports
** this signifies that the importing template is based on the imported template
** ... and this is exactly what we want to define
Diffstat (limited to 'test/transform')
-rw-r--r-- | test/transform/transformation.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/transformation.xsl b/test/transform/transformation.xsl index 412036b..6bc759d 100644 --- a/test/transform/transformation.xsl +++ b/test/transform/transformation.xsl @@ -8,7 +8,7 @@ exclude-result-prefixes="dyn xalan InputXSLT" > -<xsl:include href="[testcase.xsl]"/> +<xsl:import href="[testcase.xsl]"/> <xsl:template name="transformer"> <xsl:param name="transformation"/> |