$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: grafikrobot_at_[hidden]
Date: 2007-12-08 13:03:20
Author: grafik
Date: 2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
New Revision: 41899
URL: http://svn.boost.org/trac/boost/changeset/41899
Log:
Fix many broken links.
Text files modified: 
   website/public_html/beta/community/exception_safety.html         |    18 ++++++---                               
   website/public_html/beta/community/generic_programming.html      |    15 ++++---                                 
   website/public_html/beta/community/gsoc_2006_boost_overview.html |    72 ++++++++++++++++++++----------------    
   website/public_html/beta/feed/downloads.rss                      |     6 +-                                      
   website/public_html/beta/feed/history.rss                        |    12 +++---                                  
   website/public_html/beta/feed/history/boost_1_33_0.qbk           |     2                                         
   website/public_html/beta/feed/history/boost_1_33_0.xml           |     2                                         
   website/public_html/beta/feed/history/boost_1_33_1.qbk           |     2                                         
   website/public_html/beta/feed/history/boost_1_33_1.xml           |     2                                         
   website/public_html/beta/feed/history/boost_1_34_0.qbk           |     2                                         
   website/public_html/beta/feed/history/boost_1_34_0.xml           |     2                                         
   website/public_html/beta/feed/history/boost_1_34_1.qbk           |     4 +-                                      
   website/public_html/beta/feed/history/boost_1_34_1.xml           |     6 +-                                      
   website/public_html/beta/feed/news.rss                           |    12 +++---                                  
   website/public_html/beta/users/bibliography.html                 |    78 ++++++++++++++++++++++----------------- 
   website/public_html/beta/users/uses_open.html                    |    10 ++--                                    
   website/public_html/beta/users/uses_shrink.html                  |    30 +++++++--------                         
   17 files changed, 149 insertions(+), 126 deletions(-)
Modified: website/public_html/beta/community/exception_safety.html
==============================================================================
--- website/public_html/beta/community/exception_safety.html	(original)
+++ website/public_html/beta/community/exception_safety.html	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -9,6 +9,13 @@
   <link rel="stylesheet" type="text/css" href=
   "/style/section-community.css" />
   <!--[if IE]> <style type="text/css"> body { behavior: url(/style/csshover.htc); } </style> <![endif]-->
+
+  <style type="text/css">
+/*<![CDATA[*/
+  h3.c2 {text-align: center}
+  p.c1 {font-style: italic; text-align: center}
+  /*]]>*/
+  </style>
 </head>
 
 <body>
@@ -26,13 +33,12 @@
             </div>
 
             <div class="section-body">
-              <p style="text-align: center"><i><strong>Lessons Learned from
-              Specifying Exception-Safety for the C++ Standard
-              Library</strong></i></p>
+              <p class="c1"><strong>Lessons Learned from Specifying
+              Exception-Safety for the C++ Standard Library</strong></p>
 
-              <h3 style="text-align: center">David Abrahams</h3>
+              <h3 class="c2">David Abrahams</h3>
 
-              <h3 style="text-align: center"><a href=
+              <h3 class="c2"><a href=
               "mailto:david.abrahams_at_[hidden]">david.abrahams_at_[hidden]</a></h3>
 
               <p><strong>Abstract.</strong> This paper represents the
@@ -631,7 +637,7 @@
                 <li><a name="reference4" id="reference4">Tom</a> Cargill,
                 “Exception Handling: A False Sense of Security,”
                 C++ Report, Nov-Dec 1994, also available at <a href=
-                "http://www.awprofessional.com/content/images/020163371x/supplements/Exception_Handling_Article.html">
+                "http://www.informit.com/content/images/020163371x/supplements/Exception_Handling_Article.html">
                 http://www.awprofessional.com/content/images/020163371x/supplements/Exception_Handling_Article.html>.</li>
 
                 <li><a name="reference5" id="reference5">B.</a> Fomitchev,
Modified: website/public_html/beta/community/generic_programming.html
==============================================================================
--- website/public_html/beta/community/generic_programming.html	(original)
+++ website/public_html/beta/community/generic_programming.html	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -398,9 +398,9 @@
 
               <p>By chaining two standard object generators,
               <code>std::<a href=
-              "http://www.dinkumware.com/htm_cpl/functio2.html#bind2nd">bind2nd</a>()</code>
+              "http://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=functio2.html#bind2nd">bind2nd</a>()</code>
               and <code>std::<a href=
-              "http://www.dinkumware.com/htm_cpl/functio2.html#mem_fun">mem_fun</a>()</code>,
+              "http://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=functio2.html#mem_fun">mem_fun</a>()</code>,
               we can easily tweak all widgets:</p>
               <pre>
 void tweak_all_widgets1(int arg)
@@ -429,14 +429,14 @@
               <p>A policy class is a template parameter used to transmit
               behavior. An example from the standard library is
               <code>std::<a href=
-              "http://www.dinkumware.com/htm_cpl/memory.html#allocator">allocator</a></code>,
+              "http://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=memory.html#allocator">allocator</a></code>,
               which supplies memory management behaviors to standard <a href=
               "http://www.sgi.com/tech/stl/Container.html">containers</a>.</p>
 
               <p>Policy classes have been explored in detail by <a href=
               "http://www.moderncppdesign.com/">Andrei Alexandrescu</a> in
               <a href=
-              "http://www.informit.com/articles/article.asp?p=167842">this
+              "http://www.informit.com/articles/article.aspx?p=167842">this
               chapter</a> of his book, <i>Modern C++ Design</i>. He
               writes:</p>
 
@@ -463,10 +463,11 @@
               "/doc/libs/release/libs/iterator/doc/iterator_adaptor.html"><code>
               iterator_adaptor</code></a> that used non-orthogonal policies.
               There is also precedent in the standard library: <a href=
-              "http://www.dinkumware.com/htm_cpl/string2.html#char_traits"><code>
-              std::char_traits</code></a>, despite its name, acts as a
+              "http://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=string2.html#char_traits">
+              <code>std::char_traits</code></a>, despite its name, acts as a
               policies class that determines the behaviors of <a href=
-              "http://www.dinkumware.com/htm_cpl/string2.html#basic_string">std::basic_string</a>.</p>
+              "http://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=string2.html#basic_string">
+              std::basic_string</a>.</p>
 
               <h2>Notes</h2>
 
Modified: website/public_html/beta/community/gsoc_2006_boost_overview.html
==============================================================================
--- website/public_html/beta/community/gsoc_2006_boost_overview.html	(original)
+++ website/public_html/beta/community/gsoc_2006_boost_overview.html	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -10,6 +10,14 @@
   <link rel="stylesheet" type="text/css" href=
   "/style/section-community.css" />
   <!--[if IE]> <style type="text/css"> body { behavior: url(/style/csshover.htc); } </style> <![endif]-->
+
+  <style type="text/css">
+/*<![CDATA[*/
+  blockquote.c3 {FONT-SIZE: 75%;}
+  td.c2 {text-align:center}
+  th.c1 {text-align:left}
+  /*]]>*/
+  </style>
 </head>
 
 <body>
@@ -378,8 +386,8 @@
 
               <p>The results of all the projects can be consulted online at
               the dedicated <a href=
-              "https://www.boost-consulting.com:8443/trac/soc/browser/boost/soc/2006">
-              Trac site</a>.</p>
+              "http://svn.boost.org/trac/boost/browser/sandbox/SOC/2006">Trac
+              site</a>.</p>
 
               <h2><a name="analysis" id="analysis"></a>Analysis</h2>
 
@@ -400,7 +408,7 @@
               "Organizations which received the most applications"
               cellspacing="0">
                 <tr>
-                  <th style="text-align:left">Organization</th>
+                  <th class="c1">Organization</th>
 
                   <th>No of applications</th>
                 </tr>
@@ -408,59 +416,59 @@
                 <tr>
                   <td>KDE</td>
 
-                  <td style="text-align:center">244</td>
+                  <td class="c2">244</td>
                 </tr>
 
                 <tr class="odd_tr">
                   <td>Ubuntu & Bazaar</td>
 
-                  <td style="text-align:center">236</td>
+                  <td class="c2">236</td>
                 </tr>
 
                 <tr>
                   <td>Python Software Foundation</td>
 
-                  <td style="text-align:center">212</td>
+                  <td class="c2">212</td>
                 </tr>
 
                 <tr class="odd_tr">
                   <td>GNOME</td>
 
-                  <td style="text-align:center">199</td>
+                  <td class="c2">199</td>
                 </tr>
 
                 <tr>
                   <td>Apache Software Foundation</td>
 
-                  <td style="text-align:center">190</td>
+                  <td class="c2">190</td>
                 </tr>
 
                 <tr class="odd_tr">
                   <td><strong>Boost</strong></td>
 
-                  <td style="text-align:center"><strong>174</strong></td>
+                  <td class="c2"><strong>174</strong></td>
                 </tr>
 
                 <tr>
                   <td>Gaim</td>
 
-                  <td style="text-align:center">152</td>
+                  <td class="c2">152</td>
                 </tr>
 
                 <tr class="odd_tr">
                   <td>The GNU Project</td>
 
-                  <td style="text-align:center">148</td>
+                  <td class="c2">148</td>
                 </tr>
 
                 <tr>
                   <td>Drupal</td>
 
-                  <td style="text-align:center">146</td>
+                  <td class="c2">146</td>
                 </tr>
               </table>
 
-              <blockquote style="FONT-SIZE: 75%;">
+              <blockquote class="c3">
                 <p>The numbers shown here have been estimated from a chart
                 included in the presentation slides. This chart contains an
                 additional column labeled "Google" which actually accounts
@@ -491,7 +499,7 @@
               <table cellspacing="0" summary=
               "Number of funded projects with respect to the applications received, for the organizations with the most funded projects.">
               <tr>
-                  <th style="text-align:left">Organization</th>
+                  <th class="c1">Organization</th>
 
                   <th>No of projects</th>
 
@@ -501,73 +509,73 @@
                 <tr>
                   <td>KDE</td>
 
-                  <td style="text-align:center">24</td>
+                  <td class="c2">24</td>
 
-                  <td style="text-align:center">9.8 %</td>
+                  <td class="c2">9.8 %</td>
                 </tr>
 
                 <tr class="odd_tr">
                   <td>Ubuntu & Bazaar</td>
 
-                  <td style="text-align:center">22</td>
+                  <td class="c2">22</td>
 
-                  <td style="text-align:center">9.3 %</td>
+                  <td class="c2">9.3 %</td>
                 </tr>
 
                 <tr>
                   <td>Python Software Foundation</td>
 
-                  <td style="text-align:center">23</td>
+                  <td class="c2">23</td>
 
-                  <td style="text-align:center">10.8 %</td>
+                  <td class="c2">10.8 %</td>
                 </tr>
 
                 <tr class="odd_tr">
                   <td>GNOME</td>
 
-                  <td style="text-align:center">19</td>
+                  <td class="c2">19</td>
 
-                  <td style="text-align:center">9.5 %</td>
+                  <td class="c2">9.5 %</td>
                 </tr>
 
                 <tr>
                   <td>Apache Software Foundation</td>
 
-                  <td style="text-align:center">27</td>
+                  <td class="c2">27</td>
 
-                  <td style="text-align:center">14.2 %</td>
+                  <td class="c2">14.2 %</td>
                 </tr>
 
                 <tr class="odd_tr">
                   <td><strong>Boost</strong></td>
 
-                  <td style="text-align:center"><strong>10</strong></td>
+                  <td class="c2"><strong>10</strong></td>
 
-                  <td style="text-align:center"><strong>5.7 %</strong></td>
+                  <td class="c2"><strong>5.7 %</strong></td>
                 </tr>
 
                 <tr>
                   <td>Gaim</td>
 
-                  <td style="text-align:center">8</td>
+                  <td class="c2">8</td>
 
-                  <td style="text-align:center">5.3 %</td>
+                  <td class="c2">5.3 %</td>
                 </tr>
 
                 <tr class="odd_tr">
                   <td>The GNU Project</td>
 
-                  <td style="text-align:center">10</td>
+                  <td class="c2">10</td>
 
-                  <td style="text-align:center">6.8 %</td>
+                  <td class="c2">6.8 %</td>
                 </tr>
 
                 <tr>
                   <td>Drupal</td>
 
-                  <td style="text-align:center">14</td>
+                  <td class="c2">14</td>
 
-                  <td style="text-align:center">9.6 %</td>
+                  <td class="c2">9.6 %</td>
                 </tr>
               </table>
 
Modified: website/public_html/beta/feed/downloads.rss
==============================================================================
--- website/public_html/beta/feed/downloads.rss	(original)
+++ website/public_html/beta/feed/downloads.rss	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -109,7 +109,7 @@
         X.
       </li>
       <li>
-        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
         5.8.2 on Windows.
       </li>
       <li>
@@ -149,8 +149,8 @@
         macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
       </li>
       <li>
-        <a href="http://developers.sun.com/sunstudio/compilers_index.html">Sun
-        Studio 11</a> on Solaris.
+        <a href="http://developers.sun.com/sunstudio/index.html">Sun Studio 11</a>
+        on Solaris.
       </li>
     </ul>
   </div>
Modified: website/public_html/beta/feed/history.rss
==============================================================================
--- website/public_html/beta/feed/history.rss	(original)
+++ website/public_html/beta/feed/history.rss	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -34,7 +34,7 @@
         X.
       </li>
       <li>
-        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
         5.8.2 on Windows.
       </li>
       <li>
@@ -74,8 +74,8 @@
         macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
       </li>
       <li>
-        <a href="http://developers.sun.com/sunstudio/compilers_index.html">Sun
-        Studio 11</a> on Solaris.
+        <a href="http://developers.sun.com/sunstudio/index.html">Sun Studio 11</a>
+        on Solaris.
       </li>
     </ul>
   </div>
@@ -517,7 +517,7 @@
         X.
       </li>
       <li>
-        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
         5.8.2 on Windows.
       </li>
       <li>
@@ -726,7 +726,7 @@
         OS X.
       </li>
       <li>
-        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
         5.6.4 on Windows.
       </li>
       <li>
@@ -1067,7 +1067,7 @@
         X.
       </li>
       <li>
-        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
         5.6.4 on Windows.
       </li>
       <li>
Modified: website/public_html/beta/feed/history/boost_1_33_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_33_0.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_33_0.qbk	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -158,7 +158,7 @@
 [@http://www.boost.org/regression/release/user/ regression test results].
 
 * [@http://developer.apple.com/ Apple GCC] 3.x on Mac OS X.
-* [@http://www.borland.com/us/products/cbuilder/ Borland C++] 5.6.4 on Windows.
+* [@http://www.codegear.com/products/cppbuilder Borland C++] 5.6.4 on Windows.
 * [@http://gcc.gnu.org GNU C++] 2.95.3 (with and without STLport), 3.2.x.,
   3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
 * [@http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm
Modified: website/public_html/beta/feed/history/boost_1_33_0.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_33_0.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_33_0.xml	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -339,7 +339,7 @@
         X.
       </listitem>
       <listitem>
-        <ulink url="http://www.borland.com/us/products/cbuilder/">Borland C++</ulink>
+        <ulink url="http://www.codegear.com/products/cppbuilder">Borland C++</ulink>
         5.6.4 on Windows.
       </listitem>
       <listitem>
Modified: website/public_html/beta/feed/history/boost_1_33_1.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_33_1.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_33_1.qbk	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -83,7 +83,7 @@
 [^configure --help] for more information.
 
 * [@http://developer.apple.com/ Apple GCC] 3.3, 4.0 on Mac OS X.
-* [@http://www.borland.com/us/products/cbuilder/ Borland C++] 5.6.4 on Windows.
+* [@http://www.codegear.com/products/cppbuilder Borland C++] 5.6.4 on Windows.
 * [@http://gcc.gnu.org GNU C++] 2.95.3 (with and without STLport), 3.2.x.,
   3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
 * [@http://h30097.www3.hp.com/cplus/ HP C++ for Tru64 UNIX 7.1].
Modified: website/public_html/beta/feed/history/boost_1_33_1.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_33_1.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_33_1.xml	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -183,7 +183,7 @@
         OS X.
       </listitem>
       <listitem>
-        <ulink url="http://www.borland.com/us/products/cbuilder/">Borland C++</ulink>
+        <ulink url="http://www.codegear.com/products/cppbuilder">Borland C++</ulink>
         5.6.4 on Windows.
       </listitem>
       <listitem>
Modified: website/public_html/beta/feed/history/boost_1_34_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_34_0.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_34_0.qbk	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -224,7 +224,7 @@
 [@http://www.boost.org/regression/release/user/ regression test results].
 
 * [@http://developer.apple.com/ Apple GCC] 4.0.1 on Mac OS X.
-* [@http://www.borland.com/us/products/cbuilder/ Borland C++] 5.8.2 on Windows.
+* [@http://www.codegear.com/products/cppbuilder Borland C++] 5.8.2 on Windows.
 * [@http://gcc.gnu.org/ GNU C++] 
     * 3.2.x., 3.3.x, 3.4.x, 4.0.x, 4.1.x on Linux 
     * 4.1.x on Solaris 
Modified: website/public_html/beta/feed/history/boost_1_34_0.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_34_0.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_34_0.xml	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -492,7 +492,7 @@
         X.
       </listitem>
       <listitem>
-        <ulink url="http://www.borland.com/us/products/cbuilder/">Borland C++</ulink>
+        <ulink url="http://www.codegear.com/products/cppbuilder">Borland C++</ulink>
         5.8.2 on Windows.
       </listitem>
       <listitem>
Modified: website/public_html/beta/feed/history/boost_1_34_1.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_34_1.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_34_1.qbk	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -29,7 +29,7 @@
 test results].
 
 * [@http://developer.apple.com/ Apple GCC] 4.0.1 on Mac OS X.
-* [@http://www.borland.com/us/products/cbuilder/ Borland C++] 5.8.2 on Windows.
+* [@http://www.codegear.com/products/cppbuilder Borland C++] 5.8.2 on Windows.
 * [@http://gcc.gnu.org/ GNU C++]
   * 3.2.x., 3.3.x, 3.4.x, 4.0.x, 4.1.x on Linux 
   * 4.1.x on Solaris 
@@ -45,7 +45,7 @@
   result in many spurious warnings from Boost headers and other
   standards-conforming C++ code. To suppress these warnings, define the macro
   `_SCL_SECURE_NO_DEPRECATE`.
-* [@http://developers.sun.com/sunstudio/compilers_index.html Sun Studio 11] on
+* [@http://developers.sun.com/sunstudio/index.html Sun Studio 11] on
   Solaris.
 
 [endsect]
Modified: website/public_html/beta/feed/history/boost_1_34_1.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_34_1.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_34_1.xml	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -41,7 +41,7 @@
         X.
       </listitem>
       <listitem>
-        <ulink url="http://www.borland.com/us/products/cbuilder/">Borland C++</ulink>
+        <ulink url="http://www.codegear.com/products/cppbuilder">Borland C++</ulink>
         5.8.2 on Windows.
       </listitem>
       <listitem>
@@ -81,8 +81,8 @@
         macro <code><phrase role="identifier">_SCL_SECURE_NO_DEPRECATE</phrase></code>.
       </listitem>
       <listitem>
-        <ulink url="http://developers.sun.com/sunstudio/compilers_index.html">Sun
-        Studio 11</ulink> on Solaris.
+        <ulink url="http://developers.sun.com/sunstudio/index.html">Sun Studio 11</ulink>
+        on Solaris.
       </listitem>
     </itemizedlist>
   </section>
Modified: website/public_html/beta/feed/news.rss
==============================================================================
--- website/public_html/beta/feed/news.rss	(original)
+++ website/public_html/beta/feed/news.rss	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -34,7 +34,7 @@
         X.
       </li>
       <li>
-        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
         5.8.2 on Windows.
       </li>
       <li>
@@ -74,8 +74,8 @@
         macro <code><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
       </li>
       <li>
-        <a href="http://developers.sun.com/sunstudio/compilers_index.html">Sun
-        Studio 11</a> on Solaris.
+        <a href="http://developers.sun.com/sunstudio/index.html">Sun Studio 11</a>
+        on Solaris.
       </li>
     </ul>
   </div>
@@ -517,7 +517,7 @@
         X.
       </li>
       <li>
-        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
         5.8.2 on Windows.
       </li>
       <li>
@@ -736,7 +736,7 @@
         OS X.
       </li>
       <li>
-        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
         5.6.4 on Windows.
       </li>
       <li>
@@ -1077,7 +1077,7 @@
         X.
       </li>
       <li>
-        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        <a href="http://www.codegear.com/products/cppbuilder">Borland C++</a>
         5.6.4 on Windows.
       </li>
       <li>
Modified: website/public_html/beta/users/bibliography.html
==============================================================================
--- website/public_html/beta/users/bibliography.html	(original)
+++ website/public_html/beta/users/bibliography.html	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -109,8 +109,9 @@
                 <dt>Jeremy Siek, Lie-Quan Lee and Andrew Lumsdaine, <cite>The
                 Boost Graph Library</cite>. Addison-Wesley, 2002. ISBN:
                 0-201-72914-8. <a href=
-                "http://www.awprofessional.com/titles/0-201-72914-8" class=
-                "external">www.awprofessional.com/titles/0-201-72914-8/</a>.<br />
+                "http://www.informit.com/store/product.aspx?isbn=0201729148"
+                class=
+                "external">www.informit.com/store/product.aspx?isbn=0201729148</a>.<br />
 
                 A sample chapter is available at: <a href=
                 "http://tinyurl.com/24666" class=
@@ -162,8 +163,9 @@
                 Metaprogramming: Concepts, Tools, and Techniques from Boost
                 and Beyond</cite>. Addison-Wesley, November, 2004. ISBN:
                 0-321-22725-5. <a href=
-                "http://www.awprofessional.com/titles/0321227255/" class=
-                "external">www.awprofessional.com/titles/0321227255/</a><br />
+                "http://www.informit.com/store/product.aspx?isbn=0321227255"
+                class=
+                "external">www.informit.com/store/product.aspx?isbn=0321227255</a><br />
 
                 Additional information and two sample chapters are available
                 at: <a href="http://boost-consulting.com/tmpbook/" class=
@@ -198,13 +200,14 @@
                 <dt>Björn Karlsson, <cite>Beyond the C++ Standard
                 Library: An Introduction to Boost</cite>. Addison-Wesley,
                 August 31, 2005. ISBN: 0-3211-3354-4. <a href=
-                "http://www.awprofessional.com/titles/0321133544/" class=
-                "external">www.awprofessional.com/titles/0321133544/</a><br />
+                "http://www.informit.com/store/product.aspx?isbn=0321133544"
+                class=
+                "external">www.informit.com/store/product.aspx?isbn=0321133544</a><br />
 
                 A sample chapter is available at: <a href=
-                "http://www.awprofessional.com/content/images/0321133544/samplechapter/karlsson_ch09.pdf"
+                "http://www.informit.com/content/images/0321133544/samplechapter/karlsson_ch09.pdf"
                 class=
-                "external">www.awprofessional.com/content/images/0321133544/samplechapter/karlsson_ch09.pdf</a></dt>
+                "external">www.informit.com/content/images/0321133544/samplechapter/karlsson_ch09.pdf</a></dt>
               </dl>
 
               <h2><a name="Online_publications" id=
@@ -227,8 +230,9 @@
 
                 <dt>Matt Long, <cite>Adding Regular Expressions to Your App
                 with Regex++</cite>. The Code Project, June 18, 2002.
-                <a href="http://www.codeproject.com/string/regex__.asp"
-                class="external">www.codeproject.com/string/regex__.asp</a></dt>
+                <a href="http://www.codeproject.com/KB/string/regex__.aspx"
+                class=
+                "external">www.codeproject.com/KB/string/regex__.aspx</a></dt>
 
                 <dd><a name="Siek02" id="Siek02"></a>[Siek02]</dd>
 
@@ -267,17 +271,19 @@
 
                 <dt>Jonathan de Halleux, <cite>Opening a door towards Spirit:
                 a parser framework</cite>. The Code Project, March 24, 2003.
-                <a href="http://www.codeproject.com/cpp/spiritintro.asp"
+                <a href=
+                "http://www.codeproject.com/KB/recipes/spiritintro.aspx"
                 class=
-                "external">www.codeproject.com/cpp/spiritintro.asp</a></dt>
+                "external">www.codeproject.com/KB/recipes/spiritintro.aspx</a></dt>
 
                 <dd><a name="Kaiser03" id="Kaiser03"></a>[Kaiser03]</dd>
 
                 <dt>Hartmut Kaiser, <cite>Wave: a Standard conformant C++
                 preprocessor library</cite>. The Code Project, March 25,
                 2003. <a href=
-                "http://www.codeproject.com/cpp/wave_preprocessor.asp" class=
-                "external">www.codeproject.com/cpp/wave_preprocessor.asp</a></dt>
+                "http://www.codeproject.com/KB/recipes/wave_preprocessor.aspx"
+                class=
+                "external">www.codeproject.com/KB/recipes/wave_preprocessor.aspx</a></dt>
 
                 <dd><a name="Trentini03" id=
                 "Trentini03"></a>[Trentini03]</dd>
@@ -289,8 +295,8 @@
 
                 <dt>Andrew Walker, <cite>An Introduction to Boost</cite>. The
                 Code Project, July 7, 2003. <a href=
-                "http://www.codeproject.com/vcpp/stl/BoostIntro.asp" class=
-                "external">www.codeproject.com/vcpp/stl/BoostIntro.asp</a><br />
+                "http://www.codeproject.com/KB/stl/boostintro.aspx" class=
+                "external">www.codeproject.com/KB/stl/boostintro.aspx</a><br />
 
                 A short and straightforward introduction to Boost.</dt>
               </dl>
@@ -310,18 +316,18 @@
 
                 <dt>Jim D'Agostino, <cite>Designing Robust Objects with
                 Boost</cite>. The Code Project, August 17, 2004. <a href=
-                "http://www.codeproject.com/cpp/Designing_Robust_Objects.asp"
+                "http://www.codeproject.com/KB/architecture/Designing_Robust_Objects.aspx"
                 class=
-                "external">www.codeproject.com/cpp/Designing_Robust_Objects.asp</a></dt>
+                "external">www.codeproject.com/KB/architecture/Designing_Robust_Objects.aspx</a></dt>
 
                 <dd><a name="Handley04" id="Handley04"></a>[Handley04]</dd>
 
                 <dt>Dave Handley, <cite>An Introduction to the Boost Spirit
                 Parser framework</cite>. The Code Project, October 9, 2004.
                 <a href=
-                "http://www.codeproject.com/vcpp/stl/introduction_spirit.asp"
+                "http://www.codeproject.com/KB/stl/introduction_spirit.aspx"
                 class=
-                "external">www.codeproject.com/vcpp/stl/introduction_spirit.asp</a></dt>
+                "external">www.codeproject.com/KB/stl/introduction_spirit.aspx</a></dt>
 
                 <dd><a name="Handley04a" id=
                 "Handley04a"></a>[Handley04a]</dd>
@@ -329,26 +335,26 @@
                 <dt>Dave Handley, <cite>Implementing Semantic Actions in the
                 Boost Spirit Parser Framework</cite>. The Code Project,
                 October 10, 2004. <a href=
-                "http://www.codeproject.com/vcpp/stl/spirit_semantic_actions.asp"
+                "http://www.codeproject.com/KB/stl/spirit_semantic_actions.aspx"
                 class=
-                "external">www.codeproject.com/vcpp/stl/spirit_semantic_actions.asp</a></dt>
+                "external">www.codeproject.com/KB/stl/spirit_semantic_actions.aspx</a></dt>
 
                 <dd><a name="Hauptmann04" id=
                 "Hauptmann04"></a>[Hauptmann04]</dd>
 
                 <dt>Peter Hauptmann, <cite>Smart Pointers to boost your
                 code</cite>. The Code Project, September 27, 2004. <a href=
-                "http://www.codeproject.com/vcpp/stl/boostsmartptr.asp"
-                class="external">www.codeproject.com/vcpp/stl/boostsmartptr.asp</a></dt>
+                "http://www.codeproject.com/KB/stl/boostsmartptr.aspx" class=
+                "external">www.codeproject.com/KB/stl/boostsmartptr.aspx</a></dt>
 
                 <dd><a name="Hauptmann04a" id=
                 "Hauptmann04a"></a>[Hauptmann04a]</dd>
 
                 <dt>Peter Hauptmann, <cite>boost 2: shared_ptr wraps resource
                 handles</cite>. The Code Project, October 4, 2004. <a href=
-                "http://www.codeproject.com/vcpp/stl/boostsp_handleref.asp"
+                "http://www.codeproject.com/KB/stl/boostsp_handleref.aspx"
                 class=
-                "external">www.codeproject.com/vcpp/stl/boostsp_handleref.asp</a></dt>
+                "external">www.codeproject.com/KB/stl/boostsp_handleref.aspx</a></dt>
 
                 <dd><a name="Wikipedia04" id=
                 "Wikipedia04"></a>[Wikipedia04]</dd>
@@ -376,8 +382,9 @@
                 <dt>Bjorn Karlsson, <cite>How the Boost Bind Library Can
                 Improve Your C++ Programs</cite>. InformIT, August 26, 2005.
                 <a href=
-                "http://www.informit.com/articles/article.asp?p=412354"
-                class="external">www.informit.com/articles/article.asp?p=412354</a></dt>
+                "http://www.informit.com/articles/article.aspx?p=412354"
+                class=
+                "external">www.informit.com/articles/article.aspx?p=412354</a></dt>
 
                 <dd><a name="Cogswell05" id=
                 "Cogswell05"></a>[Cogswell05]</dd>
@@ -385,8 +392,9 @@
                 <dt>Jeff Cogswell, <cite>Adding an Easy File Save and File
                 Load Mechanism to Your C++ Program</cite>. InformIT, July 1,
                 2005. <a href=
-                "http://www.informit.com/articles/article.asp?p=398702"
-                class="external">www.informit.com/articles/article.asp?p=398702</a><br />
+                "http://www.informit.com/articles/article.aspx?p=398702"
+                class=
+                "external">www.informit.com/articles/article.aspx?p=398702</a><br />
 
                 Explains Boost.Serialization.</dt>
 
@@ -396,8 +404,9 @@
                 <dt>Aleksey Gurtovoy and David Abrahams <cite>An In-Depth
                 Look at Metafunctions in C++</cite>. InformIT, April 1, 2005.
                 <a href=
-                "http://www.informit.com/articles/article.asp?p=375705"
-                class="external">www.informit.com/articles/article.asp?p=375705</a></dt>
+                "http://www.informit.com/articles/article.aspx?p=375705"
+                class=
+                "external">www.informit.com/articles/article.aspx?p=375705</a></dt>
               </dl>
 
               <h2><a name="Print_mentions" id="Print_mentions"></a>Print
@@ -641,8 +650,9 @@
 
                 <dt>Jarl Lindrud, <cite>RMI for C++</cite>. The Code Project,
                 April 11, 2005. <a href=
-                "http://www.codeproject.com/threads/RMI_For_Cpp.asp" class=
-                "external">www.codeproject.com/threads/RMI_For_Cpp.asp</a><br />
+                "http://www.codeproject.com/KB/threads/RMI_For_Cpp.aspx"
+                class=
+                "external">www.codeproject.com/KB/threads/RMI_For_Cpp.aspx</a><br />
 
                 Uses Boost.Serialization.</dt>
               </dl>
Modified: website/public_html/beta/users/uses_open.html
==============================================================================
--- website/public_html/beta/users/uses_open.html	(original)
+++ website/public_html/beta/users/uses_open.html	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -296,11 +296,11 @@
               <h2>OpenMS</h2>
 
               <p><a class="external" href=
-              "http://open-ms.sourceforge.net/main.html">OpenMS</a> is an
-              open source C++ library for LC/MS data management, reduction,
-              evaluation, visualization, storage and sophisticated
-              statistical analyses. It can be used to develop mass
-              spectrometry related applications.</p>
+              "http://open-ms.sourceforge.net/">OpenMS</a> is an open source
+              C++ library for LC/MS data management, reduction, evaluation,
+              visualization, storage and sophisticated statistical analyses.
+              It can be used to develop mass spectrometry related
+              applications.</p>
 
               <h2>libpdf++</h2>
 
Modified: website/public_html/beta/users/uses_shrink.html
==============================================================================
--- website/public_html/beta/users/uses_shrink.html	(original)
+++ website/public_html/beta/users/uses_shrink.html	2007-12-08 13:03:19 EST (Sat, 08 Dec 2007)
@@ -32,7 +32,7 @@
               <h2>Adobe Photoshop CS2</h2>
 
               <p><a class="external" href=
-              "http://www.adobe.com/products/photoshop/main.html">Adobe
+              "http://www.adobe.com/products/photoshop/index.html">Adobe
               Photoshop CS2</a> uses the <a class="external" href=
               "http://opensource.adobe.com/">Adobe Software Libraries</a>,
               which in turn depend upon large parts of Boost. The <a class=
@@ -43,7 +43,7 @@
               <h2>Adobe Indesign</h2>
 
               <p><a class="external" href=
-              "http://www.adobe.com/products/indesign/main.html">Adobe
+              "http://www.adobe.com/products/indesign/index.html">Adobe
               Indesign</a> offers best of breed page design: Indesign and
               it's asociated SDK depend upon Boost <a href=
               "../doc/libs/release/libs/regex/index.html">Boost.Regex</a>,
@@ -54,15 +54,15 @@
               <h2>SAP NetWeaver</h2>
 
               <p><a class="external" href=
-              "http://www.sap.com/solutions/netweaver/index.epx">SAP
+              "http://www.sap.com/platform/netweaver/index.epx">SAP
               NetWeaver</a> is the technical foundation of mySAP Business
               Suite solutions, SAP xApps composite applications, partner
               solutions, and customer custom-built applications. <a href=
               "../doc/libs/release/libs/regex/index.html">Boost.Regex</a>
               provides the regular expression implementation for SAP's
               <a class="external" href=
-              "https://www.sdn.sap.com/sdn/developerareas/abap.sdn?node=linkDnode6-3">
-              ABAP language</a>.</p>
+              "https://www.sdn.sap.com/irj/sdn?node=linkDnode6-3">ABAP
+              language</a>.</p>
 
               <h2>Real Networks, Rhapsody</h2>
 
@@ -386,12 +386,11 @@
               <h2>PeerGuardian</h2>
 
               <p><a class="external" href=
-              "http://methlabs.org/projects/peerguardian-2-windows/">PeerGuardian
-              2</a> is Methlabs premier IP blocker for Windows. With features
-              like support for multiple lists, a list editor, automatic
-              updates, and blocking all of IPv4 (TCP, UDP, ICMP, etc),
-              PeerGuardian 2 is the safest and easiest way to protect your
-              privacy on P2P.</p>
+              "http://phoenixlabs.org/pg2/">PeerGuardian 2</a> is Methlabs
+              premier IP blocker for Windows. With features like support for
+              multiple lists, a list editor, automatic updates, and blocking
+              all of IPv4 (TCP, UDP, ICMP, etc), PeerGuardian 2 is the safest
+              and easiest way to protect your privacy on P2P.</p>
 
               <p>Boost Libraries used include <a href=
               "../doc/libs/release/libs/crc/index.html">Boost.CRC</a>,
@@ -470,8 +469,8 @@
               <h2>Wise Riddles Software, Audiomatic</h2>
 
               <p><a class="external" href=
-              "http://www.WiseRiddles.com/Audiomatic">Audiomatic</a> is a
-              tool used to make system-wide macros and then launch those
+              "http://www.wiseriddles.com/Products/Audiomatic/">Audiomatic</a>
+              is a tool used to make system-wide macros and then launch those
               macros with a voice command or keyboard shortcut at any time...
               from any Windows application. Audiomatic enables you to launch
               programs, files, or websites; simulate keystrokes; play sounds;
@@ -524,9 +523,8 @@
 
               <h2>Megahard Software Technologies Inc., Rule in Hell</h2>
 
-              <p><a class="external" href="http://www.ruleinhell.com">Rule in
-              Hell</a> is a Massively Multiplayer Online Role Playing Game
-              (still in beta).</p>
+              <p>Rule in Hell is a Massively Multiplayer Online Role Playing
+              Game (still in beta).</p>
 
               <p>The Boost libraries used were: <a href=
               "../doc/libs/release/libs/bind/index.html">Boost.Bind</a>,