aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_file.cc
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-07-09 19:59:32 +0200
committerAdrian Kummerlaender2014-07-09 19:59:32 +0200
commit1fbf6a39784b57925ab19df579f487a338e22ba5 (patch)
treee3e6a9aaa9cf54cc5e294d7f03a02b450d30a5b8 /src/function/read_file.cc
parentfcc2f8ee41d6793411a2321e6b0ac46cb5ba23ee (diff)
downloadInputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.gz
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.bz2
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.lz
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.xz
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.tar.zst
InputXSLT-1fbf6a39784b57925ab19df579f487a338e22ba5.zip
Added DomDocumentCache::createDocument overload enabling document naming
* previous createDocument method used default name "content" ** this led to problems when using xalan::XalanNode as transformation input ** the parameter-less createDocument overload now creates a unnamed xercesc::DOMDocument * changed external function implementations accordingly
Diffstat (limited to 'src/function/read_file.cc')
-rw-r--r--src/function/read_file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/function/read_file.cc b/src/function/read_file.cc
index dcd32b7..0ca5ee3 100644
--- a/src/function/read_file.cc
+++ b/src/function/read_file.cc
@@ -62,7 +62,7 @@ namespace InputXSLT {
DomDocumentCache::document_ptr FunctionReadFile::constructDocument(
boost::filesystem::path filePath) {
DomDocumentCache::document_ptr domDocument(
- DomDocumentCache::createDocument()
+ DomDocumentCache::createDocument("content")
);
ResultNodeFacade result(domDocument.get(), "file");