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/read_directory.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/function/read_directory.cc') diff --git a/src/function/read_directory.cc b/src/function/read_directory.cc index e030e33..54d3d0d 100644 --- a/src/function/read_directory.cc +++ b/src/function/read_directory.cc @@ -13,7 +13,9 @@ xercesc::DOMDocument* FunctionReadDirectory::constructDocument( const InputXSLT::FilesystemContext& fsContext, const FunctionBase::argument_array& arguments ) { - const boost::filesystem::path& directoryPath = arguments[0]; + const boost::filesystem::path directoryPath( + fsContext.resolve(arguments[0]) + ); xercesc::DOMDocument* const domDocument( xercesc::DOMImplementation::getImplementation()->createDocument( -- cgit v1.2.3