$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r68308 - trunk/tools/quickbook/src
From: dnljms_at_[hidden]
Date: 2011-01-19 17:05:51
Author: danieljames
Date: 2011-01-19 17:05:48 EST (Wed, 19 Jan 2011)
New Revision: 68308
URL: http://svn.boost.org/trac/boost/changeset/68308
Log:
Use generic paths in xinclude.
Will hopefully make xslt happier on windows.
Text files modified:
trunk/tools/quickbook/src/actions.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/tools/quickbook/src/actions.cpp
==============================================================================
--- trunk/tools/quickbook/src/actions.cpp (original)
+++ trunk/tools/quickbook/src/actions.cpp 2011-01-19 17:05:48 EST (Wed, 19 Jan 2011)
@@ -1310,7 +1310,7 @@
fs::path path = calculate_relative_path(first, last, actions);
out << "\n<xi:include href=\"";
- detail::print_string(detail::escape_uri(path.string()), out.get());
+ detail::print_string(detail::escape_uri(path.generic_string()), out.get());
out << "\" />\n";
}