From 5fbca0993146982ab1dbb0d352c1e15e40b3de22 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Wed, 14 May 2014 20:55:51 +0200 Subject: Moved responsibility for argument conversion to FunctionBase descendants * external functions may expect arguments with a type different from boost::filesystem::path so they are only provided raw string values * moved xalan string conversion logic into separate compilation unit --- src/function/transform.cc | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/function/transform.cc') diff --git a/src/function/transform.cc b/src/function/transform.cc index 360b61d..5c53044 100644 --- a/src/function/transform.cc +++ b/src/function/transform.cc @@ -10,11 +10,16 @@ namespace InputXSLT { xercesc::DOMDocument* FunctionTransform::constructDocument( - const InputXSLT::FilesystemContext&, + const InputXSLT::FilesystemContext& fsContext, const FunctionBase::argument_array& arguments ) { - const boost::filesystem::path& transformationPath = arguments[0]; - const boost::filesystem::path& targetPath = arguments[1]; + const boost::filesystem::path transformationPath( + fsContext.resolve(arguments[0]) + ); + + const boost::filesystem::path targetPath( + fsContext.resolve(arguments[1]) + ); xercesc::DOMDocument* const domDocument( xercesc::DOMImplementation::getImplementation()->createDocument( -- cgit v1.2.3