Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r65033 - trunk/tools/quickbook/src
From: dnljms_at_[hidden]
Date: 2010-08-26 16:59:08


Author: danieljames
Date: 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
New Revision: 65033
URL: http://svn.boost.org/trac/boost/changeset/65033

Log:
No longer use relative paths.
Text files modified:
   trunk/tools/quickbook/src/actions.cpp | 14 +++++++-------
   trunk/tools/quickbook/src/actions.hpp | 6 +++---
   trunk/tools/quickbook/src/actions_class.cpp | 4 ++--
   trunk/tools/quickbook/src/actions_class.hpp | 2 +-
   trunk/tools/quickbook/src/block_grammar.cpp | 8 ++++----
   trunk/tools/quickbook/src/code_snippet.hpp | 4 ++--
   trunk/tools/quickbook/src/collector.cpp | 2 +-
   trunk/tools/quickbook/src/doc_info_grammar.cpp | 6 +++---
   trunk/tools/quickbook/src/grammar.hpp | 2 +-
   trunk/tools/quickbook/src/input_path.cpp | 2 +-
   trunk/tools/quickbook/src/markups.cpp | 2 +-
   trunk/tools/quickbook/src/phrase_grammar.cpp | 8 ++++----
   trunk/tools/quickbook/src/phrase_grammar.hpp | 2 +-
   trunk/tools/quickbook/src/post_process.cpp | 4 ++--
   trunk/tools/quickbook/src/quickbook.cpp | 12 ++++++------
   trunk/tools/quickbook/src/syntax_highlight.cpp | 4 ++--
   trunk/tools/quickbook/src/syntax_highlight.hpp | 2 +-
   trunk/tools/quickbook/src/template_stack.cpp | 2 +-
   trunk/tools/quickbook/src/utils.cpp | 2 +-
   19 files changed, 44 insertions(+), 44 deletions(-)

Modified: trunk/tools/quickbook/src/actions.cpp
==============================================================================
--- trunk/tools/quickbook/src/actions.cpp (original)
+++ trunk/tools/quickbook/src/actions.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -17,13 +17,13 @@
 #include <boost/filesystem/v2/fstream.hpp>
 #include <boost/lexical_cast.hpp>
 #include <boost/algorithm/string/join.hpp>
-#include "./quickbook.hpp"
-#include "./actions.hpp"
-#include "./utils.hpp"
-#include "./markups.hpp"
-#include "./actions_class.hpp"
-#include "./grammar.hpp"
-#include "./code_snippet.hpp"
+#include "quickbook.hpp"
+#include "actions.hpp"
+#include "utils.hpp"
+#include "markups.hpp"
+#include "actions_class.hpp"
+#include "grammar.hpp"
+#include "code_snippet.hpp"
 
 namespace quickbook
 {

Modified: trunk/tools/quickbook/src/actions.hpp
==============================================================================
--- trunk/tools/quickbook/src/actions.hpp (original)
+++ trunk/tools/quickbook/src/actions.hpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -20,9 +20,9 @@
 #include <boost/filesystem/v2/operations.hpp>
 #include <boost/foreach.hpp>
 #include <boost/tuple/tuple.hpp>
-#include "./collector.hpp"
-#include "./template_stack.hpp"
-#include "./utils.hpp"
+#include "collector.hpp"
+#include "template_stack.hpp"
+#include "utils.hpp"
 
 #ifdef BOOST_MSVC
 // disable copy/assignment could not be generated, unreferenced formal params

Modified: trunk/tools/quickbook/src/actions_class.cpp
==============================================================================
--- trunk/tools/quickbook/src/actions_class.cpp (original)
+++ trunk/tools/quickbook/src/actions_class.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -8,8 +8,8 @@
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
-#include "./actions_class.hpp"
-#include "./markups.hpp"
+#include "actions_class.hpp"
+#include "markups.hpp"
 
 #if (defined(BOOST_MSVC) && (BOOST_MSVC <= 1310))
 #pragma warning(disable:4355)

Modified: trunk/tools/quickbook/src/actions_class.hpp
==============================================================================
--- trunk/tools/quickbook/src/actions_class.hpp (original)
+++ trunk/tools/quickbook/src/actions_class.hpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -10,7 +10,7 @@
 #if !defined(BOOST_SPIRIT_ACTIONS_CLASS_HPP)
 #define BOOST_SPIRIT_ACTIONS_CLASS_HPP
 
-#include "./actions.hpp"
+#include "actions.hpp"
 #include <boost/tuple/tuple.hpp>
 
 namespace quickbook

Modified: trunk/tools/quickbook/src/block_grammar.cpp
==============================================================================
--- trunk/tools/quickbook/src/block_grammar.cpp (original)
+++ trunk/tools/quickbook/src/block_grammar.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -8,10 +8,10 @@
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
 
-#include "./phrase_grammar.hpp"
-#include "./quickbook.hpp"
-#include "./utils.hpp"
-#include "./actions_class.hpp"
+#include "phrase_grammar.hpp"
+#include "quickbook.hpp"
+#include "utils.hpp"
+#include "actions_class.hpp"
 #include <boost/spirit/include/classic_confix.hpp>
 #include <boost/spirit/include/classic_chset.hpp>
 #include <boost/spirit/include/classic_assign_actor.hpp>

Modified: trunk/tools/quickbook/src/code_snippet.hpp
==============================================================================
--- trunk/tools/quickbook/src/code_snippet.hpp (original)
+++ trunk/tools/quickbook/src/code_snippet.hpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -12,8 +12,8 @@
 #include <boost/spirit/include/classic_core.hpp>
 #include <boost/spirit/include/classic_actor.hpp>
 #include <boost/bind.hpp>
-#include "./template_stack.hpp"
-#include "./actions.hpp"
+#include "template_stack.hpp"
+#include "actions.hpp"
 
 namespace quickbook
 {

Modified: trunk/tools/quickbook/src/collector.cpp
==============================================================================
--- trunk/tools/quickbook/src/collector.cpp (original)
+++ trunk/tools/quickbook/src/collector.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -6,7 +6,7 @@
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
-#include "./collector.hpp"
+#include "collector.hpp"
 #include <boost/assert.hpp>
 
 namespace quickbook

Modified: trunk/tools/quickbook/src/doc_info_grammar.cpp
==============================================================================
--- trunk/tools/quickbook/src/doc_info_grammar.cpp (original)
+++ trunk/tools/quickbook/src/doc_info_grammar.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -8,9 +8,9 @@
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
 
-#include "./phrase_grammar.hpp"
-#include "./quickbook.hpp"
-#include "./actions_class.hpp"
+#include "phrase_grammar.hpp"
+#include "quickbook.hpp"
+#include "actions_class.hpp"
 #include <boost/spirit/include/classic_core.hpp>
 #include <boost/spirit/include/classic_actor.hpp>
 #include <boost/spirit/include/classic_loops.hpp>

Modified: trunk/tools/quickbook/src/grammar.hpp
==============================================================================
--- trunk/tools/quickbook/src/grammar.hpp (original)
+++ trunk/tools/quickbook/src/grammar.hpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -11,7 +11,7 @@
 #define BOOST_SPIRIT_QUICKBOOK_GRAMMARS_HPP
 
 #include <boost/spirit/include/classic_core.hpp>
-#include "./actions.hpp"
+#include "actions.hpp"
 
 namespace quickbook
 {

Modified: trunk/tools/quickbook/src/input_path.cpp
==============================================================================
--- trunk/tools/quickbook/src/input_path.cpp (original)
+++ trunk/tools/quickbook/src/input_path.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -7,7 +7,7 @@
 =============================================================================*/
 
 #include <boost/program_options.hpp>
-#include "./input_path.hpp"
+#include "input_path.hpp"
 
 #if !(defined(__cygwin__) || defined(__CYGWIN__))
 

Modified: trunk/tools/quickbook/src/markups.cpp
==============================================================================
--- trunk/tools/quickbook/src/markups.cpp (original)
+++ trunk/tools/quickbook/src/markups.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -8,7 +8,7 @@
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
 
-#include "./markups.hpp"
+#include "markups.hpp"
 
 namespace quickbook
 {

Modified: trunk/tools/quickbook/src/phrase_grammar.cpp
==============================================================================
--- trunk/tools/quickbook/src/phrase_grammar.cpp (original)
+++ trunk/tools/quickbook/src/phrase_grammar.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -8,10 +8,10 @@
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
 
-#include "./phrase_grammar.hpp"
-#include "./quickbook.hpp"
-#include "./actions_class.hpp"
-#include "./utils.hpp"
+#include "phrase_grammar.hpp"
+#include "quickbook.hpp"
+#include "actions_class.hpp"
+#include "utils.hpp"
 #include <boost/spirit/include/classic_core.hpp>
 #include <boost/spirit/include/classic_confix.hpp>
 #include <boost/spirit/include/classic_chset.hpp>

Modified: trunk/tools/quickbook/src/phrase_grammar.hpp
==============================================================================
--- trunk/tools/quickbook/src/phrase_grammar.hpp (original)
+++ trunk/tools/quickbook/src/phrase_grammar.hpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -10,7 +10,7 @@
 #if !defined(BOOST_SPIRIT_QUICKBOOK_PHRASE_HPP)
 #define BOOST_SPIRIT_QUICKBOOK_PHRASE_HPP
 
-#include "./grammar.hpp"
+#include "grammar.hpp"
 
 namespace quickbook
 {

Modified: trunk/tools/quickbook/src/post_process.cpp
==============================================================================
--- trunk/tools/quickbook/src/post_process.cpp (original)
+++ trunk/tools/quickbook/src/post_process.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -6,8 +6,8 @@
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
-#include "./post_process.hpp"
-#include "./utils.hpp"
+#include "post_process.hpp"
+#include "utils.hpp"
 #include <boost/spirit/include/classic_core.hpp>
 #include <boost/bind.hpp>
 #include <set>

Modified: trunk/tools/quickbook/src/quickbook.cpp
==============================================================================
--- trunk/tools/quickbook/src/quickbook.cpp (original)
+++ trunk/tools/quickbook/src/quickbook.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -7,12 +7,12 @@
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
-#include "./grammar.hpp"
-#include "./quickbook.hpp"
-#include "./actions_class.hpp"
-#include "./post_process.hpp"
-#include "./utils.hpp"
-#include "./input_path.hpp"
+#include "grammar.hpp"
+#include "quickbook.hpp"
+#include "actions_class.hpp"
+#include "post_process.hpp"
+#include "utils.hpp"
+#include "input_path.hpp"
 #include <boost/spirit/include/classic_iterator.hpp>
 #include <boost/program_options.hpp>
 #include <boost/filesystem/v2/path.hpp>

Modified: trunk/tools/quickbook/src/syntax_highlight.cpp
==============================================================================
--- trunk/tools/quickbook/src/syntax_highlight.cpp (original)
+++ trunk/tools/quickbook/src/syntax_highlight.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -7,8 +7,8 @@
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
-#include "./syntax_highlight.hpp"
-#include "./actions_class.hpp"
+#include "syntax_highlight.hpp"
+#include "actions_class.hpp"
 
 namespace quickbook
 {

Modified: trunk/tools/quickbook/src/syntax_highlight.hpp
==============================================================================
--- trunk/tools/quickbook/src/syntax_highlight.hpp (original)
+++ trunk/tools/quickbook/src/syntax_highlight.hpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -15,7 +15,7 @@
 #include <boost/spirit/include/classic_chset.hpp>
 #include <boost/spirit/include/classic_symbols.hpp>
 #include <boost/spirit/include/classic_loops.hpp>
-#include "./phrase_grammar.hpp"
+#include "phrase_grammar.hpp"
 
 namespace quickbook
 {

Modified: trunk/tools/quickbook/src/template_stack.cpp
==============================================================================
--- trunk/tools/quickbook/src/template_stack.cpp (original)
+++ trunk/tools/quickbook/src/template_stack.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -6,7 +6,7 @@
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
-#include "./template_stack.hpp"
+#include "template_stack.hpp"
 
 #ifdef BOOST_MSVC
 #pragma warning(disable : 4355)

Modified: trunk/tools/quickbook/src/utils.cpp
==============================================================================
--- trunk/tools/quickbook/src/utils.cpp (original)
+++ trunk/tools/quickbook/src/utils.cpp 2010-08-26 16:59:05 EDT (Thu, 26 Aug 2010)
@@ -7,7 +7,7 @@
     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
     http://www.boost.org/LICENSE_1_0.txt)
 =============================================================================*/
-#include "./utils.hpp"
+#include "utils.hpp"
 #include <boost/spirit/include/classic_core.hpp>
 
 #include <cctype>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk