Boost logo

Boost-Commit :

From: daniel_james_at_[hidden]
Date: 2007-12-03 15:08:15


Author: danieljames
Date: 2007-12-03 15:08:14 EST (Mon, 03 Dec 2007)
New Revision: 41660
URL: http://svn.boost.org/trac/boost/changeset/41660

Log:
Update links in the iterator library. I haven't regenerated the documentation, but the changes should be in sync with the source files.

Text files modified:
   branches/fix-links/libs/iterator/doc/index.html | 4 ++--
   branches/fix-links/libs/iterator/doc/index.rst | 4 ++--
   branches/fix-links/libs/iterator/doc/iterator_facade.html | 2 +-
   branches/fix-links/libs/iterator/doc/iterator_facade_tutorial.rst | 2 +-
   branches/fix-links/libs/iterator/doc/quickbook/facade_tutorial.qbk | 2 +-
   branches/fix-links/libs/iterator/doc/quickbook/iterator.qbk | 4 ++--
   6 files changed, 9 insertions(+), 9 deletions(-)

Modified: branches/fix-links/libs/iterator/doc/index.html
==============================================================================
--- branches/fix-links/libs/iterator/doc/index.html (original)
+++ branches/fix-links/libs/iterator/doc/index.html 2007-12-03 15:08:14 EST (Mon, 03 Dec 2007)
@@ -40,7 +40,7 @@
 <col class="field-body" />
 <tbody valign="top">
 <tr class="field"><th class="field-name">Abstract:</th><td class="field-body">The Boost Iterator Library contains two parts. The first
-is a system of <a class="reference external" href="../../../more/generic_programming.html#concept">concepts</a> which extend the C++ standard
+is a system of <a class="reference external" href="http://beta.boost.org/community/generic_programming.html#concept">concepts</a> which extend the C++ standard
 iterator requirements. The second is a framework of
 components for building iterators based on these
 extended concepts and includes several useful iterator
@@ -179,7 +179,7 @@
 captures the core operations of your iterator. In the new library
 design, you'll move those same core operations into the body of the
 iterator class itself. If you were writing a family of iterators,
-you probably wrote a <a class="reference external" href="../../../more/generic_programming.html#type_generator">type generator</a> to build the
+you probably wrote a <a class="reference external" href="http://beta.boost.org/community/generic_programming.html#type_generator">type generator</a> to build the
 <tt class="docutils literal"><span class="pre">iterator_adaptor</span></tt> specialization you needed; in the new library
 design you don't need a type generator (though may want to keep it
 around as a compatibility aid for older code) because, due to the

Modified: branches/fix-links/libs/iterator/doc/index.rst
==============================================================================
--- branches/fix-links/libs/iterator/doc/index.rst (original)
+++ branches/fix-links/libs/iterator/doc/index.rst 2007-12-03 15:08:14 EST (Mon, 03 Dec 2007)
@@ -43,7 +43,7 @@
            The components of the Boost Iterator Library replace the
            older Boost Iterator Adaptor Library.
 
-.. _concepts: ../../../more/generic_programming.html#concept
+.. _concepts: http://beta.boost.org/community/generic_programming.html#concept
 
 .. contents:: **Table of Contents**
 
@@ -271,7 +271,7 @@
 or even override the iterator functionality provided by the
 library.
 
-.. _`type generator`: ../../../more/generic_programming.html#type_generator
+.. _`type generator`: http://beta.boost.org/community/generic_programming.html#type_generator
 
 If you're looking for the old ``projection_iterator`` component,
 its functionality has been merged into ``transform_iterator``: as

Modified: branches/fix-links/libs/iterator/doc/iterator_facade.html
==============================================================================
--- branches/fix-links/libs/iterator/doc/iterator_facade.html (original)
+++ branches/fix-links/libs/iterator/doc/iterator_facade.html 2007-12-03 15:08:14 EST (Mon, 03 Dec 2007)
@@ -866,7 +866,7 @@
 <p>In this section we'll walk through the implementation of a few
 iterators using <tt class="docutils literal"><span class="pre">iterator_facade</span></tt>, based around the simple
 example of a linked list of polymorphic objects. This example was
-inspired by a <a class="reference external" href="http://thread.gmane.org/gmane.comp.lib.boost.user/5100">posting</a> by Keith Macdonald on the <a class="reference external" href="../../../more/mailing_lists.htm#users">Boost-Users</a>
+inspired by a <a class="reference external" href="http://thread.gmane.org/gmane.comp.lib.boost.user/5100">posting</a> by Keith Macdonald on the <a class="reference external" href="http://beta.boost.org/community/groups.html#users">Boost-Users</a>
 mailing list.</p>
 <div class="section" id="the-problem">
 <h2><a class="toc-backref" href="#id32">The Problem</a></h2>

Modified: branches/fix-links/libs/iterator/doc/iterator_facade_tutorial.rst
==============================================================================
--- branches/fix-links/libs/iterator/doc/iterator_facade_tutorial.rst (original)
+++ branches/fix-links/libs/iterator/doc/iterator_facade_tutorial.rst 2007-12-03 15:08:14 EST (Mon, 03 Dec 2007)
@@ -8,7 +8,7 @@
 inspired by a `posting`__ by Keith Macdonald on the `Boost-Users`_
 mailing list.
 
-.. _`Boost-Users`: ../../../more/mailing_lists.htm#users
+.. _`Boost-Users`: http://beta.boost.org/community/groups.html#users
 
 __ http://thread.gmane.org/gmane.comp.lib.boost.user/5100
 

Modified: branches/fix-links/libs/iterator/doc/quickbook/facade_tutorial.qbk
==============================================================================
--- branches/fix-links/libs/iterator/doc/quickbook/facade_tutorial.qbk (original)
+++ branches/fix-links/libs/iterator/doc/quickbook/facade_tutorial.qbk 2007-12-03 15:08:14 EST (Mon, 03 Dec 2007)
@@ -7,7 +7,7 @@
 inspired by a
 [@http://thread.gmane.org/gmane.comp.lib.boost.user/5100 `posting`]
 by Keith Macdonald on the
-[@../../../more/mailing_lists.htm#users `Boost-Users`]
+[@http://beta.boost.org/community/groups.html#users `Boost-Users`]
 mailing list.
 
 

Modified: branches/fix-links/libs/iterator/doc/quickbook/iterator.qbk
==============================================================================
--- branches/fix-links/libs/iterator/doc/quickbook/iterator.qbk (original)
+++ branches/fix-links/libs/iterator/doc/quickbook/iterator.qbk 2007-12-03 15:08:14 EST (Mon, 03 Dec 2007)
@@ -32,7 +32,7 @@
 
 [section:intro Introduction]
 
-[def _concepts_ [@../../more/generic_programming.html#concept concepts]]
+[def _concepts_ [@http://beta.boost.org/community/generic_programming.html#concept concepts]]
 
 The Boost Iterator Library contains two parts. The first
 is a system of _concepts_ which extend the C++ standard
@@ -203,7 +203,7 @@
 
 [section:upgrading Upgrading from the old Boost Iterator Adaptor Library]
 
-[def _type_generator_ [@../../more/generic_programming.html#type_generator type generator]]
+[def _type_generator_ [@http://beta.boost.org/community/generic_programming.html#type_generator type generator]]
 
 If you have been using the old Boost Iterator Adaptor library to
 implement iterators, you probably wrote a `Policies` class which


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