Boost logo

Boost-Commit :

From: daniel_james_at_[hidden]
Date: 2007-12-01 15:01:58


Author: danieljames
Date: 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
New Revision: 41546
URL: http://svn.boost.org/trac/boost/changeset/41546

Log:
Try to reduce the number of links on the 'bad links' report a little. Many are
just adding trailing slashes to avoid a 301 redirect.

Text files modified:
   website/public_html/beta/common/code/boost_config.php | 6 ++++++
   website/public_html/beta/common/menu-boost.html | 6 +++---
   website/public_html/beta/community/cpp.html | 4 ++--
   website/public_html/beta/community/error_handling.html | 17 ++++++++---------
   website/public_html/beta/community/generic_programming.html | 2 +-
   website/public_html/beta/community/policy.html | 8 ++++----
   website/public_html/beta/community/requests.html | 2 +-
   website/public_html/beta/index.php | 2 +-
   website/public_html/beta/users/faq.html | 2 +-
   website/public_html/beta/users/license.html | 11 ++++++-----
   website/public_html/beta/users/people/doug_gregor.html | 4 ++--
   website/public_html/beta/users/people/mark_rodgers.html | 11 ++++++-----
   12 files changed, 41 insertions(+), 34 deletions(-)

Modified: website/public_html/beta/common/code/boost_config.php
==============================================================================
--- website/public_html/beta/common/code/boost_config.php (original)
+++ website/public_html/beta/common/code/boost_config.php 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -38,6 +38,12 @@
     define('BOOST_CONFIG_FILE','/DevRoots/Boost/website/workplace/config.php');
   }
   break;
+
+ case 'boost-beta':
+ {
+ define('BOOST_CONFIG_FILE','/home/daniel/cpp/config.php');
+ }
+ break;
 }
 
 define('ARCHIVE_FILE_PREFIX', 'boost_');

Modified: website/public_html/beta/common/menu-boost.html
==============================================================================
--- website/public_html/beta/common/menu-boost.html (original)
+++ website/public_html/beta/common/menu-boost.html 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -2,13 +2,13 @@
   "link">&gt;</span></a></h4>
 
   <ul>
- <li><a href="/users/download" class="internal">Download <span class=
+ <li><a href="/users/download/" class="internal">Download <span class=
     "link">&gt;</span></a></li>
 
- <li><a href="/users/news" class="internal">News <span class=
+ <li><a href="/users/news/" class="internal">News <span class=
     "link">&gt;</span></a></li>
 
- <li><a href="/users/history" class="internal">Version History
+ <li><a href="/users/history/" class="internal">Version History
     <span class="link">&gt;</span></a></li>
 
     <li><a href="/users/license.html" class="internal">License <span class=

Modified: website/public_html/beta/community/cpp.html
==============================================================================
--- website/public_html/beta/community/cpp.html (original)
+++ website/public_html/beta/community/cpp.html 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -112,11 +112,11 @@
                 Henney</a> is must reading for those interested in reference
                 counting, a widely used object management idiom. Originally
                 published in <a href=
- "http://www.accu.org/c++sig/public/Overload.html">Overload</a>
+ "http://www.accu.org/index.php/overloadonline">Overload</a>
                 magazine.</dd>
 
                 <dt><a href=
- "/development/implementation_variations.html">Implementation
+ "/community/implementation_variations.html">Implementation
                 Variations</a></dt>
 
                 <dd>Sometimes one size fits all, sometimes it doesn't. This

Modified: website/public_html/beta/community/error_handling.html
==============================================================================
--- website/public_html/beta/community/error_handling.html (original)
+++ website/public_html/beta/community/error_handling.html 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -118,8 +118,7 @@
                   program, you may report a different exception than intended
                   from a <i>throw-expression</i> that includes construction
                   such as:
-
- <pre>
+ <pre>
 throw some_exception();
 </pre>
 
@@ -148,7 +147,7 @@
                 <i>user</i>-comprehensible error message at the point an
                 exception is thrown. Certainly, internationalization is
                 beyond the scope of the exception class author. <a href=
- "/users/people/.html">Peter Dimov</a> makes an
+ "/users/people/peter_dimov.html">Peter Dimov</a> makes an
                 excellent argument that the proper use of a
                 <code>what()</code> string is to serve as a key into a table
                 of error message formatters. Now if only we could get
@@ -209,8 +208,7 @@
               <code>catch(...)</code> will catch these not-really-C++
               exceptions. Fortunately, there is a simple but little-known
               workaround, which is to use the following incantation:</p>
-
- <pre>
+ <pre>
 extern "C" void straight_to_debugger(unsigned int, EXCEPTION_POINTERS*)
 {
     throw;
@@ -218,10 +216,11 @@
 extern "C" void (*old_translator)(unsigned, EXCEPTION_POINTERS*)
          = _set_se_translator(straight_to_debugger);
 </pre>
- <p>This technique doesn't work if the SEH is raised
- from within a catch block (or a function called from within a
- catch block), but it still eliminates the vast majority of
- JIT-masking problems.</p>
+
+ <p>This technique doesn't work if the SEH is raised from within
+ a catch block (or a function called from within a catch block),
+ but it still eliminates the vast majority of JIT-masking
+ problems.</p>
 
               <h3>How should I handle exceptions?</h3>
 

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-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -327,7 +327,7 @@
               largely been superseded by the more refined notion of a
               <a href="/doc/libs/release/libs/mpl/doc/refmanual/metafunction.html">
               <i>metafunction</i></a>. See <i><a href=
- "http://www.boost-consulting.com/mplbook">C++ Template
+ "http://www.boost-consulting.com/mplbook/">C++ Template
               Metaprogramming</a></i> for an in-depth discussion of
               metafunctions.</p>
 

Modified: website/public_html/beta/community/policy.html
==============================================================================
--- website/public_html/beta/community/policy.html (original)
+++ website/public_html/beta/community/policy.html 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -216,10 +216,10 @@
               <p>If you ever have to refer to single message earlier in a
               thread or in a different thread then you can use a URL to the
               <a href="groups.html#archive">message archives</a>. To help to
- keep those URLs short, you can use <a href=
- "http://www.tinyurl.com" class="external">tinyurl.com</a>.
- Citing the relevant portion of a message you link to is often
- helpful (if the citation is small).</p>
+ keep those URLs short, you can use <a href="http://tinyurl.com"
+ class="external">tinyurl.com</a>. Citing the relevant portion
+ of a message you link to is often helpful (if the citation is
+ small).</p>
 
               <h3>Maintain the Integrity of Discussion Threads</h3>
 

Modified: website/public_html/beta/community/requests.html
==============================================================================
--- website/public_html/beta/community/requests.html (original)
+++ website/public_html/beta/community/requests.html 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -68,7 +68,7 @@
 
       <div id="copyright">
         <p>&copy; Copyright <a href=
- "/users/people/aleksey_gurtovoy.htm">Aleksey Gurtovoy</a> 2002</p>
+ "/users/people/aleksey_gurtovoy.html">Aleksey Gurtovoy</a> 2002</p>
       </div><!--#include virtual="/common/footer-license.html" -->
     </div>
 

Modified: website/public_html/beta/index.php
==============================================================================
--- website/public_html/beta/index.php (original)
+++ website/public_html/beta/index.php 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -47,7 +47,7 @@
                   reference implementations so that Boost libraries are
                   suitable for eventual standardization. Ten Boost libraries
                   are already included in the <a href=
- "http://www.open-std.org/jtc1/sc22/wg21" class=
+ "http://www.open-std.org/jtc1/sc22/wg21/" class=
                   "external">C++ Standards Committee's</a> Library Technical
                   Report (<a href=
                   "http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1745.pdf"

Modified: website/public_html/beta/users/faq.html
==============================================================================
--- website/public_html/beta/users/faq.html (original)
+++ website/public_html/beta/users/faq.html 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -30,7 +30,7 @@
 
               <p class="faq"><span class="faq-question">What support is
               available for the libraries?</span> See the <a href=
- "../support">support introduction</a>. The <a href=
+ "../support/">support introduction</a>. The <a href=
               "/community/groups.html#users">Boost-Users mailing list</a> is
               also good start.</p>
 

Modified: website/public_html/beta/users/license.html
==============================================================================
--- website/public_html/beta/users/license.html (original)
+++ website/public_html/beta/users/license.html 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -304,11 +304,12 @@
 
               <p>To ease the transition of the code base towards the new
               common license, several people decided to give a <a href=
- "blanket-permission.txt">blanket permission</a> for all their
- contributions to use the new license. This hopefully helps
- maintainers to switch to the new license once the list contains
- enough names without asking over and over again for each
- change. Please consider adding your name to the list.</p>
+ "/doc/libs/release/more/blanket-permission.txt">blanket
+ permission</a> for all their contributions to use the new
+ license. This hopefully helps maintainers to switch to the new
+ license once the list contains enough names without asking over
+ and over again for each change. Please consider adding your
+ name to the list.</p>
 
               <h2><a name="Acknowledgements" id=
               "Acknowledgements"></a>Acknowledgements</h2>

Modified: website/public_html/beta/users/people/doug_gregor.html
==============================================================================
--- website/public_html/beta/users/people/doug_gregor.html (original)
+++ website/public_html/beta/users/people/doug_gregor.html 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -35,7 +35,7 @@
 
               <p>As a generic programming zealot, his search for the One True
               Generic Language has seen him through the trials of the
- <a href="http://www.cs.rpi.edu/research/gpg" class=
+ <a href="http://www.cs.rpi.edu/research/gpg/" class=
               "external">Generic Programming Group</a>, and <a href=
               "http://www.boost.org">many</a> <a href=
               "http://www.open-std.org/jtc1/sc22/wg21/" class=
@@ -49,7 +49,7 @@
 
               <p>Email: dgregor -at- cs.indiana.edu</p>
 
- <p>Home page: <a href="http://www.osl.iu.edu/~dgregor" class=
+ <p>Home page: <a href="http://www.osl.iu.edu/~dgregor/" class=
               "external"><code>http://www.osl.iu.edu/~dgregor></a></p>
             </div>
           </div>

Modified: website/public_html/beta/users/people/mark_rodgers.html
==============================================================================
--- website/public_html/beta/users/people/mark_rodgers.html (original)
+++ website/public_html/beta/users/people/mark_rodgers.html 2007-12-01 15:01:57 EST (Sat, 01 Dec 2007)
@@ -31,11 +31,12 @@
               with his wife, Clare, and their son, Ronnie.</p>
 
               <p>He studied Computer Science at <a href=
- "
http://www.vuw.ac.nz/home/index.asp" class="external">Victoria
- University of Wellington</a> from 1983 to 1986, completing a
- B.Sc.&nbsp;(Hons). He now works as consultant through his
- company, Cadenza New Zealand Ltd, and also markets Cadenza
- Drawing Board&trade;, a CAD system he developed.</p>
+ "http://www.vuw.ac.nz/home/default.aspx" class=
+ "external">Victoria University of Wellington</a> from 1983 to
+ 1986, completing a B.Sc.&nbsp;(Hons). He now works as
+ consultant through his company, Cadenza New Zealand Ltd, and
+ also markets Cadenza Drawing Board&trade;, a CAD system he
+ developed.</p>
 
               <p>Mark has been programming in C++ since about 1990, and loves
               every minute of it, but is continually amazed at how much more


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