$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: daniel_james_at_[hidden]
Date: 2007-12-02 18:54:07
Author: danieljames
Date: 2007-12-02 18:54:06 EST (Sun, 02 Dec 2007)
New Revision: 41597
URL: http://svn.boost.org/trac/boost/changeset/41597
Log:
Fix links in the concept check documentation.
Text files modified: 
   branches/fix-links/libs/concept_check/bibliography.htm        |     2 +-                                      
   branches/fix-links/libs/concept_check/concept_check.htm       |    12 ++++++------                            
   branches/fix-links/libs/concept_check/concept_covering.htm    |     2 +-                                      
   branches/fix-links/libs/concept_check/creating_concepts.htm   |     4 ++--                                    
   branches/fix-links/libs/concept_check/implementation.htm      |     2 +-                                      
   branches/fix-links/libs/concept_check/prog_with_concepts.htm  |     2 +-                                      
   branches/fix-links/libs/concept_check/reference.htm           |     2 +-                                      
   branches/fix-links/libs/concept_check/using_concept_check.htm |     2 +-                                      
   8 files changed, 14 insertions(+), 14 deletions(-)
Modified: branches/fix-links/libs/concept_check/bibliography.htm
==============================================================================
--- branches/fix-links/libs/concept_check/bibliography.htm	(original)
+++ branches/fix-links/libs/concept_check/bibliography.htm	2007-12-02 18:54:06 EST (Sun, 02 Dec 2007)
@@ -56,7 +56,7 @@
 <TABLE>
 <TR valign=top>
 <TD nowrap>Copyright © 2000</TD><TD>
-Jeremy Siek(<A
+Jeremy Siek(<A
 HREF="mailto:jsiek_at_[hidden]">jsiek_at_[hidden]</A>)
 Andrew Lumsdaine</A>(<A HREF="mailto:lums_at_[hidden]">lums_at_[hidden]</A>)
 </TD></TR></TABLE>
Modified: branches/fix-links/libs/concept_check/concept_check.htm
==============================================================================
--- branches/fix-links/libs/concept_check/concept_check.htm	(original)
+++ branches/fix-links/libs/concept_check/concept_check.htm	2007-12-02 18:54:06 EST (Sun, 02 Dec 2007)
@@ -26,7 +26,7 @@
   <blockquote>
     The Concept Check library allows one to add explicit statement and
     checking of <a href=
-    "../../more/generic_programming.html#concept">concepts</a> in the style
+    "http://beta.boost.org/community/generic_programming.html#concept">concepts</a> in the style
     of the <a href=
     "http://www.generic-programming.org/languages/conceptcpp/specification/">proposed
     C++ language extension</a>.
@@ -36,7 +36,7 @@
 
   <p>Generic programming in C++ is characterized by the use of template
   parameters to represent abstract data types (or â<a href=
-  "../../more/generic_programming.html#concept">concepts</a>â). However, the
+  "http://beta.boost.org/community/generic_programming.html#concept">concepts</a>â). However, the
   C++ language itself does not provide a mechanism for the writer of a class
   or function template to explicitly state the concept that the user-supplied
   template argument should model (or conform to). Template parameters are
@@ -124,9 +124,9 @@
     <li>Reference</li>
   </ol>
 
-  <p>Jeremy Siek contributed this
-  library. Beman Dawes managed
-  the formal review. <a href="../../people/dave_abrahams.htm">Dave
+  <p>Jeremy Siek contributed this
+  library. Beman Dawes managed
+  the formal review. <a href="http://beta.boost.org/users/people/dave_abrahams.html">Dave
   Abrahams</a> contributed a rewrite that updated syntax to be more
   compatible with proposed syntax for concept support the C++ core
   language.</p>
@@ -319,7 +319,7 @@
     <tr valign="top">
       <td nowrap="nowrap">Copyright © 2000</td>
 
-      <td>Jeremy Siek(<a href=
+      <td>Jeremy Siek(<a href=
       "mailto:jsiek_at_[hidden]">jsiek_at_[hidden]</a>) Andrew
       Lumsdaine(<a href="mailto:lums_at_[hidden]">lums_at_[hidden]</a>),
         2007 <a href="mailto:dave_at_[hidden]">David Abrahams</a>.
Modified: branches/fix-links/libs/concept_check/concept_covering.htm
==============================================================================
--- branches/fix-links/libs/concept_check/concept_covering.htm	(original)
+++ branches/fix-links/libs/concept_check/concept_covering.htm	2007-12-02 18:54:06 EST (Sun, 02 Dec 2007)
@@ -115,7 +115,7 @@
     <tr valign="top">
       <td nowrap="nowrap">Copyright © 2000</td>
 
-      <td>Jeremy Siek(<a href=
+      <td>Jeremy Siek(<a href=
       "mailto:jsiek_at_[hidden]">jsiek_at_[hidden]</a>) Andrew
       Lumsdaine(<a href="mailto:lums_at_[hidden]">lums_at_[hidden]</a>),
         2007 <a href="mailto:dave_at_[hidden]">David Abrahams</a>.
Modified: branches/fix-links/libs/concept_check/creating_concepts.htm
==============================================================================
--- branches/fix-links/libs/concept_check/creating_concepts.htm	(original)
+++ branches/fix-links/libs/concept_check/creating_concepts.htm	2007-12-02 18:54:06 EST (Sun, 02 Dec 2007)
@@ -76,7 +76,7 @@
   InputIterator concept.</p>
 
   <p>Next, we declare the concept's <a href=
-  "../../more/generic_programming.html#associated_type">associated types</a>
+  "http://beta.boost.org/community/generic_programming.html#associated_type">associated types</a>
   as member typedefs. The associated difference type is required to be a
   signed integer, and the iterator category has to be convertible to
   std::input_iterator_tag, so we assert those relationships. The syntax for
@@ -147,7 +147,7 @@
     <tr valign="top">
       <td nowrap="nowrap">Copyright © 2000</td>
 
-      <td>Jeremy Siek(<a href=
+      <td>Jeremy Siek(<a href=
       "mailto:jsiek_at_[hidden]">jsiek_at_[hidden]</a>) Andrew
       Lumsdaine(<a href="mailto:lums_at_[hidden]">lums_at_[hidden]</a>),
         2007 <a href="mailto:dave_at_[hidden]">David Abrahams</a>.
Modified: branches/fix-links/libs/concept_check/implementation.htm
==============================================================================
--- branches/fix-links/libs/concept_check/implementation.htm	(original)
+++ branches/fix-links/libs/concept_check/implementation.htm	2007-12-02 18:54:06 EST (Sun, 02 Dec 2007)
@@ -195,7 +195,7 @@
     <tr valign="top">
       <td nowrap="nowrap">Copyright © 2000</td>
 
-      <td>Jeremy Siek(<a href=
+      <td>Jeremy Siek(<a href=
       "mailto:jsiek_at_[hidden]">jsiek_at_[hidden]</a>) Andrew
       Lumsdaine(<a href="mailto:lums_at_[hidden]">lums_at_[hidden]</a>),
         2007 <a href="mailto:dave_at_[hidden]">David Abrahams</a>.
Modified: branches/fix-links/libs/concept_check/prog_with_concepts.htm
==============================================================================
--- branches/fix-links/libs/concept_check/prog_with_concepts.htm	(original)
+++ branches/fix-links/libs/concept_check/prog_with_concepts.htm	2007-12-02 18:54:06 EST (Sun, 02 Dec 2007)
@@ -134,7 +134,7 @@
     <tr valign="top">
       <td nowrap="nowrap">Copyright © 2000</td>
 
-      <td>Jeremy Siek(<a href=
+      <td>Jeremy Siek(<a href=
       "mailto:jsiek_at_[hidden]">jsiek_at_[hidden]</a>) Andrew
       Lumsdaine(<a href="mailto:lums_at_[hidden]">lums_at_[hidden]</a>),
         2007 <a href="mailto:dave_at_[hidden]">David Abrahams</a>.
Modified: branches/fix-links/libs/concept_check/reference.htm
==============================================================================
--- branches/fix-links/libs/concept_check/reference.htm	(original)
+++ branches/fix-links/libs/concept_check/reference.htm	2007-12-02 18:54:06 EST (Sun, 02 Dec 2007)
@@ -398,7 +398,7 @@
     <tr valign="top">
       <td nowrap="nowrap">Copyright © 2000</td>
 
-      <td>Jeremy Siek(<a href=
+      <td>Jeremy Siek(<a href=
       "mailto:jsiek_at_[hidden]">jsiek_at_[hidden]</a>) Andrew
       Lumsdaine(<a href="mailto:lums_at_[hidden]">lums_at_[hidden]</a>), 2007
       <a href="mailto:dave_at_[hidden]">David Abrahams</a>.</td>
Modified: branches/fix-links/libs/concept_check/using_concept_check.htm
==============================================================================
--- branches/fix-links/libs/concept_check/using_concept_check.htm	(original)
+++ branches/fix-links/libs/concept_check/using_concept_check.htm	2007-12-02 18:54:06 EST (Sun, 02 Dec 2007)
@@ -176,7 +176,7 @@
     <tr valign="top">
       <td nowrap="nowrap">Copyright © 2000</td>
 
-      <td>Jeremy Siek(<a href=
+      <td>Jeremy Siek(<a href=
       "mailto:jsiek_at_[hidden]">jsiek_at_[hidden]</a>) Andrew
       Lumsdaine(<a href="mailto:lums_at_[hidden]">lums_at_[hidden]</a>), 2007
       <a href="mailto:dave_at_[hidden]">David Abrahams</a>.</td>