Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r51262 - in trunk: libs/functional/hash/doc libs/unordered/doc tools/quickbook/doc
From: daniel_james_at_[hidden]
Date: 2009-02-15 14:32:05


Author: danieljames
Date: 2009-02-15 14:32:04 EST (Sun, 15 Feb 2009)
New Revision: 51262
URL: http://svn.boost.org/trac/boost/changeset/51262

Log:
Use the new 'boost:' links for the hash, unordered and quickbook documentation.
Text files modified:
   trunk/libs/functional/hash/doc/intro.qbk | 6 +++---
   trunk/libs/functional/hash/doc/portability.qbk | 2 +-
   trunk/libs/functional/hash/doc/tutorial.qbk | 8 ++++----
   trunk/libs/unordered/doc/changes.qbk | 4 ++--
   trunk/libs/unordered/doc/hash_equality.qbk | 4 ++--
   trunk/tools/quickbook/doc/quickbook.qbk | 8 ++++----
   6 files changed, 16 insertions(+), 16 deletions(-)

Modified: trunk/libs/functional/hash/doc/intro.qbk
==============================================================================
--- trunk/libs/functional/hash/doc/intro.qbk (original)
+++ trunk/libs/functional/hash/doc/intro.qbk 2009-02-15 14:32:04 EST (Sun, 15 Feb 2009)
@@ -13,11 +13,11 @@
     TR1]]
 [def __unordered__ [link unordered Boost.Unordered]]
 [def __intrusive__ [link intrusive.unordered_set_unordered_multiset Boost.Intrusive]]
-[def __multi-index__ [@../../libs/multi_index/doc/index.html
+[def __multi-index__ [@boost:/libs/multi_index/doc/index.html
     Boost Multi-Index Containers Library]]
-[def __multi-index-short__ [@../../libs/multi_index/doc/index.html
+[def __multi-index-short__ [@boost:/libs/multi_index/doc/index.html
     Boost.MultiIndex]]
-[def __bimap__ [@../../libs/bimap/index.html Boost.Bimap]]
+[def __bimap__ [@boost:/libs/bimap/index.html Boost.Bimap]]
 [def __issues__
     [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1837.pdf
     Library Extension Technical Report Issues List]]

Modified: trunk/libs/functional/hash/doc/portability.qbk
==============================================================================
--- trunk/libs/functional/hash/doc/portability.qbk (original)
+++ trunk/libs/functional/hash/doc/portability.qbk 2009-02-15 14:32:04 EST (Sun, 15 Feb 2009)
@@ -88,7 +88,7 @@
     }
 
 Full code for this example is at
-[@../../libs/functional/hash/examples/portable.cpp /libs/functional/hash/examples/portable.cpp].
+[@boost:/libs/functional/hash/examples/portable.cpp /libs/functional/hash/examples/portable.cpp].
 
 [h2 Other Issues]
 

Modified: trunk/libs/functional/hash/doc/tutorial.qbk
==============================================================================
--- trunk/libs/functional/hash/doc/tutorial.qbk (original)
+++ trunk/libs/functional/hash/doc/tutorial.qbk 2009-02-15 14:32:04 EST (Sun, 15 Feb 2009)
@@ -3,7 +3,7 @@
  / Distributed under the Boost Software License, Version 1.0. (See accompanying
  / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ]
 
-[def __multi-index-short__ [@../../libs/multi_index/doc/index.html
+[def __multi-index-short__ [@boost:/libs/multi_index/doc/index.html
     Boost.MultiIndex]]
 
 [section:tutorial Tutorial]
@@ -110,9 +110,9 @@
     assert(books.find(dandelion) == books.end());
 
 The full example can be found in:
-[@../../libs/functional/hash/examples/books.cpp /libs/functional/hash/examples/books.hpp]
+[@boost:/libs/functional/hash/examples/books.cpp /libs/functional/hash/examples/books.hpp]
 and
-[@../../libs/functional/hash/examples/books.cpp /libs/functional/hash/examples/books.cpp].
+[@boost:/libs/functional/hash/examples/books.cpp /libs/functional/hash/examples/books.cpp].
 
 [tip
 When writing a hash function, first look at how the equality function works.
@@ -170,7 +170,7 @@
 [funcref boost::hash_value hash_value] on the supplied element, and combines it with the seed.
 
 Full code for this example is at
-[@../../libs/functional/hash/examples/point.cpp /libs/functional/hash/examples/point.cpp].
+[@boost:/libs/functional/hash/examples/point.cpp /libs/functional/hash/examples/point.cpp].
 
 [note
 When using [funcref boost::hash_combine] the order of the

Modified: trunk/libs/unordered/doc/changes.qbk
==============================================================================
--- trunk/libs/unordered/doc/changes.qbk (original)
+++ trunk/libs/unordered/doc/changes.qbk 2009-02-15 14:32:04 EST (Sun, 15 Feb 2009)
@@ -44,7 +44,7 @@
 
 [h2 Boost 1.38.0]
 
-* Use [@../../libs/utility/swap.html `boost::swap`].
+* Use [@boost:/libs/utility/swap.html `boost::swap`].
 * [@https://svn.boost.org/trac/boost/ticket/2237 Ticket 2237]:
   Document that the equality and inequality operators are undefined for two
   objects if their equality predicates aren't equivalent. Thanks to Daniel
@@ -53,7 +53,7 @@
   Use a larger prime number list. Thanks to Thorsten Ottosen and Hervé
   Brönnimann.
 * Use
- [@../../libs/type_traits/doc/html/boost_typetraits/category/alignment.html
+ [@boost:/libs/type_traits/doc/html/boost_typetraits/category/alignment.html
   aligned storage] to store the types. This changes the way the allocator is
   used to construct nodes. It used to construct the node with two calls to
   the allocator's `construct` method - once for the pointers and once for the

Modified: trunk/libs/unordered/doc/hash_equality.qbk
==============================================================================
--- trunk/libs/unordered/doc/hash_equality.qbk (original)
+++ trunk/libs/unordered/doc/hash_equality.qbk 2009-02-15 14:32:04 EST (Sun, 15 Feb 2009)
@@ -23,7 +23,7 @@
 [import src_code/dictionary.cpp]
 [case_sensitive_dictionary_fnv]
 
-There is an [@../../libs/unordered/examples/fnv1.hpp implementation
+There is an [@boost:/libs/unordered/examples/fnv1.hpp implementation
 of FNV-1] in the examples directory.
 
 If you wish to use a different equality function,
@@ -38,7 +38,7 @@
 [case_insensitive_dictionary]
 
 This is a simplified version of the example at
-[@../../libs/unordered/examples/case_insensitive.hpp /libs/unordered/examples/case_insensitive.hpp]
+[@boost:/libs/unordered/examples/case_insensitive.hpp /libs/unordered/examples/case_insensitive.hpp]
 which supports other locales and string types.
 
 [caution

Modified: trunk/tools/quickbook/doc/quickbook.qbk
==============================================================================
--- trunk/tools/quickbook/doc/quickbook.qbk (original)
+++ trunk/tools/quickbook/doc/quickbook.qbk 2009-02-15 14:32:04 EST (Sun, 15 Feb 2009)
@@ -84,7 +84,7 @@
 documentation, is autogenerated by QuickBook. These files were generated from
 one master:
 
-[:[@../../tools/quickbook/doc/quickbook.qbk quickbook.qbk]]
+[:[@boost:/tools/quickbook/doc/quickbook.qbk quickbook.qbk]]
 
 Originally named QuickDoc, this funky tool that never dies, evolved into a
 funkier tool thanks to Eric Niebler who resurrected the project making it
@@ -1662,7 +1662,7 @@
 ''']
 
 collects specially marked-up code snippets from
-[@../../tools/quickbook/test/stub.cpp stub.cpp]
+[@boost:/tools/quickbook/test/stub.cpp stub.cpp]
 and places them in your QuickBook file as virtual templates. Each of the
 specially marked-up code snippets has a name (e.g. `foo` and `bar` in the
 example above). This shall be the template identifier for that particular code
@@ -1681,7 +1681,7 @@
 
 [heading Code Snippet Markup]
 
-Note how the code snippets in [@../../tools/quickbook/test/stub.cpp stub.cpp]
+Note how the code snippets in [@boost:/tools/quickbook/test/stub.cpp stub.cpp]
 get marked up. We use distinguishable comments following the form:
 
     //[id
@@ -1764,7 +1764,7 @@
 
 [class_]
 
-See the actual code here: [@../../tools/quickbook/test/stub.cpp]
+See the actual code here: [@boost:/tools/quickbook/test/stub.cpp]
 
 [endsect]
 


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