diff options
author | Adrian Kummerlaender | 2014-07-09 19:59:32 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2014-07-09 19:59:32 +0200 |
commit | 1fbf6a39784b57925ab19df579f487a338e22ba5 (patch) | |
tree | e3e6a9aaa9cf54cc5e294d7f03a02b450d30a5b8 /src/support/dom | |
parent | fcc2f8ee41d6793411a2321e6b0ac46cb5ba23ee (diff) | |
download | InputXSLT-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/support/dom')
-rw-r--r-- | src/support/dom/document_cache.cc | 8 | ||||
-rw-r--r-- | src/support/dom/document_cache.h | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/support/dom/document_cache.cc b/src/support/dom/document_cache.cc index 23805b5..c18bf96 100644 --- a/src/support/dom/document_cache.cc +++ b/src/support/dom/document_cache.cc @@ -11,9 +11,15 @@ namespace InputXSLT { auto DomDocumentCache::createDocument() -> document_ptr { return document_ptr( + xercesc::DOMImplementation::getImplementation()->createDocument() + ); +} + +auto DomDocumentCache::createDocument(const std::string& name) -> document_ptr { + return document_ptr( xercesc::DOMImplementation::getImplementation()->createDocument( nullptr, - *XercesStringGuard<XMLCh>("content"), + *XercesStringGuard<XMLCh>(name), nullptr ) ); diff --git a/src/support/dom/document_cache.h b/src/support/dom/document_cache.h index 3aeb332..f472249 100644 --- a/src/support/dom/document_cache.h +++ b/src/support/dom/document_cache.h @@ -27,6 +27,7 @@ class DomDocumentCache { > document_ptr; static document_ptr createDocument(); + static document_ptr createDocument(const std::string&); DomDocumentCache(); |