diff options
author | Adrian Kummerländer | 2014-05-24 13:59:42 +0200 |
---|---|---|
committer | Adrian Kummerländer | 2014-05-24 13:59:42 +0200 |
commit | 085935ddd577b0c65b4330318b5ba20492d93126 (patch) | |
tree | b508590d23a3fe7f3a6813313af2abe17fecdf79 /test | |
parent | afc8eb29c22447fe2bf71a503a5f2d25b4f8a7c7 (diff) | |
download | InputXSLT-085935ddd577b0c65b4330318b5ba20492d93126.tar InputXSLT-085935ddd577b0c65b4330318b5ba20492d93126.tar.gz InputXSLT-085935ddd577b0c65b4330318b5ba20492d93126.tar.bz2 InputXSLT-085935ddd577b0c65b4330318b5ba20492d93126.tar.lz InputXSLT-085935ddd577b0c65b4330318b5ba20492d93126.tar.xz InputXSLT-085935ddd577b0c65b4330318b5ba20492d93126.tar.zst InputXSLT-085935ddd577b0c65b4330318b5ba20492d93126.zip |
Implemented ResultNodeFacade as a DOM node construction helper
* wraps result node construction and appends it to root node on destruction
* offers a simpler interface for common node construction patterns
* simplifies result node construction in all external function implementations
** most noticeable in FunctionReadDirectory
* expanded FunctionReadDirectory result nodes by name, extension, and full-path nodes
Diffstat (limited to 'test')
-rw-r--r-- | test/read_directory/transformation.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/read_directory/transformation.xsl b/test/read_directory/transformation.xsl index 3a4d162..5bcace1 100644 --- a/test/read_directory/transformation.xsl +++ b/test/read_directory/transformation.xsl @@ -10,7 +10,7 @@ <xsl:template name="implementation"> <xsl:for-each select="InputXSLT:read-directory('../')[@type='directory']"> - <item><xsl:value-of select="."/></item> + <item><xsl:value-of select="name"/></item> </xsl:for-each> </xsl:template> |