diff options
author | Adrian Kummerländer | 2014-04-26 20:06:17 +0200 |
---|---|---|
committer | Adrian Kummerländer | 2014-04-26 20:06:17 +0200 |
commit | eba5513f82f0e1458543e8646db0317d7211cf96 (patch) | |
tree | 67b0238322b10d34c5caf45200aae1cbd548a7b0 /src/support | |
parent | 7e7b112e6c00bcce0b339652748079cf7c9f1430 (diff) | |
download | InputXSLT-eba5513f82f0e1458543e8646db0317d7211cf96.tar InputXSLT-eba5513f82f0e1458543e8646db0317d7211cf96.tar.gz InputXSLT-eba5513f82f0e1458543e8646db0317d7211cf96.tar.bz2 InputXSLT-eba5513f82f0e1458543e8646db0317d7211cf96.tar.lz InputXSLT-eba5513f82f0e1458543e8646db0317d7211cf96.tar.xz InputXSLT-eba5513f82f0e1458543e8646db0317d7211cf96.tar.zst InputXSLT-eba5513f82f0e1458543e8646db0317d7211cf96.zip |
Converted external read-file function output into a node set
* A call to _read-file_ now returns a _content_ and _status_ node
** this enables XSL transformations to easily react to io related errors
* fixed bug in path resolution
** boost::filesystem _canonical_ method is throwing and exception when the given path does not exist, this pulled down the whole stack
** replaced call to _canonical_ with call to _absolute_ which does not have this requirement
Diffstat (limited to 'src/support')
-rw-r--r-- | src/support/filesystem_context.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support/filesystem_context.cc b/src/support/filesystem_context.cc index 9ed9bbf..34b8950 100644 --- a/src/support/filesystem_context.cc +++ b/src/support/filesystem_context.cc @@ -9,7 +9,7 @@ FilesystemContext::FilesystemContext(const std::string& path): boost::filesystem::path FilesystemContext::resolve( const std::string& path) const { - return canonical(this->path_ / path); + return absolute(this->path_ / path); } boost::filesystem::path FilesystemContext::resolve( |