Fix broken links and other HTML changes related to new config system

[SVN r11142]
This commit is contained in:
Beman Dawes 2001-09-18 21:24:51 +00:00
parent 669b09a39f
commit 57695effae
10 changed files with 23 additions and 17 deletions

View file

@ -75,12 +75,18 @@ Standard Library Technical Report.</p>
<h2><a name="Latest News">Latest News</a></h2>
<p>??? - Version 1.25.0
<ul>
<li><a href="libs/array/index.htm">Array Library</a>: Minor updates,
from Nico Josuttis.</li>
<li><a href="libs/utility/base_from_member.html">Base From Member</a> added to
<a href="libs/utility/utility.htm">Utility Library</a>. Support for the base
from member idiom, from Daryle Walker.</li>
<li><a href="libs/config/config.htm">Config Library</a>: major redesign with
much improved and automated configuration of Boost libraries for specific
compilers, from John Maddock.</li>
<li><a href="libs/random/index.html">Random Number Library</a>: Fixed bug when copying normal_distribution and improved the documentation, from Michael Stevens and Jens Maurer.</li>
<li><a href="libs/array/index.htm">Array Library</a>: Minor updates,
from Nico Josuttis.</li>
<li><a href="libs/tokenizer/index.htm">Tokenizer Library</a>:
fixes/enhancements to escaped_list_separator based on empty fields and
tokens comments from Johan Nillson and Jens Maurer.</li>
</ul>
<p>August 19, 2001 - Version 1.24.0
<ul>
@ -149,7 +155,7 @@ Formal Review Schedule</a> added. Shows current, future, and recent past review
<li><a href="libs/regex/index.htm">Regex Library</a>: Minor portability fixes.</li>
</ul>
<hr>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B %Y" startspan -->10 September 2001<!--webbot bot="Timestamp" endspan i-checksum="39487" --></p>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B %Y" startspan -->18 September 2001<!--webbot bot="Timestamp" endspan i-checksum="39503" --></p>
</body>

@ -1 +1 @@
Subproject commit 60bb15991948d0bcca7557d720ae7c5ec60e92ce
Subproject commit 9563c0176af506f54b0d2a5173b1f7b839674f9b

View file

@ -135,7 +135,7 @@ out how to build object libraries, when needed.</p>
<li><a href="compatibility/index.html">compatibility</a> - Help for
non-conforming standard libraries, from Ralf Grosse-Kunstleve and Jens
Maurer.</li>
<li><a href="config/index.htm">config</a> - Helps boost
<li><a href="config/config.htm">config</a> - Helps boost
library developers adapt to compiler idiosyncrasies; not
intended for library users.</li>
</ul>
@ -202,7 +202,7 @@ out how to build object libraries, when needed.</p>
Hinnant, et al.</li>
<li><a href="concept_check/concept_check.htm">concept check</a>
- Tools for generic programming, from Jeremy Siek.</li>
<li><a href="config/index.htm">config</a> - Helps boost
<li><a href="config/config.htm">config</a> - Helps boost
library developers adapt to compiler idiosyncrasies; not
intended for library users.</li>
<li><a href="conversion/index.htm">conversion</a> - Numeric,
@ -301,6 +301,6 @@ libraries will soon be either submitted for formal review or removed.</p>
<hr>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED"
s-format="%d %b %Y" startspan -->06 Sep 2001<!--webbot bot="Timestamp" endspan i-checksum="14936" --></p>
s-format="%d %b %Y" startspan -->18 Sep 2001<!--webbot bot="Timestamp" endspan i-checksum="14941" --></p>
</body>
</html>

@ -1 +1 @@
Subproject commit ec363261aebc1fb4fb82f5cc4b8061b90e405f78
Subproject commit c032b337c4be0a453824c8bd42b2a9ca6cb870a8

View file

@ -132,7 +132,7 @@ for various compilers, but these will become obsolete as Boost.Build matures..
<hr>
Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->19 August, 2001<!--webbot bot="Timestamp" endspan i-checksum="34359" -->
Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->13 September, 2001<!--webbot bot="Timestamp" endspan i-checksum="39334" -->
<p>Written by&nbsp; <a href="../people/jens_maurer.htm">Jens Maurer</a>
2001-02-11</p>

View file

@ -47,7 +47,7 @@ these are also reasonable guidelines for general use.
would be included by <tt>#include &lt;boost/furball.hpp&gt;</tt></li>
<li>The preferred ordering for class definitions is public members, protected
members, and finally private members.</li>
<li>Include the boost/config.hpp <a href="../libs/config/index.htm">configuration
<li>Include the boost/config.hpp <a href="../libs/config/config.htm">configuration
header</a> if there is a need to deal with compiler or platform
configuration issues.</li>
</ul>
@ -86,7 +86,7 @@ commenting ending braces, and similar formatting issues.&nbsp; These stylistic
issues are viewed as personal preferences and are not part of the Boost Header
Policy.</p>
<hr>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->06 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40406" --></p>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->18 September, 2001<!--webbot bot="Timestamp" endspan i-checksum="39344" --></p>
</body>

View file

@ -41,7 +41,7 @@ platform dependencies include compiler shortcomings, file systems, thread
mechanisms, and graphical user interfaces. The classic example of a performance
tradeoff is a fast implementation which uses a lot of memory versus a slower
implementation which uses less memory.</p>
<p>Boost libraries generally use a <a href="../libs/config/index.htm">configuration
<p>Boost libraries generally use a <a href="../libs/config/config.htm">configuration
header</a>, boost/config.hpp, to capture compiler and platform
dependencies.&nbsp; Although the use of boost/config.hpp is not required, it is
the preferred approach for simple configuration problems.&nbsp;&nbsp;</p>
@ -194,7 +194,7 @@ different, or when choice of variation is best done by some mechanism outside of
the program itself.&nbsp; Thus usually not appropriate to cope with platform
differences.</p>
<hr>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->06 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40406" --></p>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->18 September, 2001<!--webbot bot="Timestamp" endspan i-checksum="39344" --></p>
</body>

View file

@ -96,7 +96,7 @@ embarrassingly.</p>
<li>
<p align="left">There is no requirement that a library run on any particular
C++ compiler.&nbsp; Boost contributors often try to ensure their libraries
work with popular compilers.&nbsp; The boost/config.hpp <a href="../libs/config/index.htm">configuration
work with popular compilers.&nbsp; The boost/config.hpp <a href="../libs/config/config.htm">configuration
header</a> is the preferred mechanism for working around compiler
deficiencies.</li>
</ul>
@ -345,7 +345,7 @@ suggestion.&nbsp; Major contributions are usually acknowledged in the
documentation, while minor fixes are often mentioned in comments within the code
itself.</p>
<hr>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->24 April, 2001<!--webbot bot="Timestamp" endspan i-checksum="29814" --></p>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->18 September, 2001<!--webbot bot="Timestamp" endspan i-checksum="39344" --></p>
</body>

View file

@ -293,7 +293,7 @@ operator delete[], and for the <code>std::nothrow</code> variants.
<h3>[clib-namespace] C library names in global namespace instead of std</h3>
<p>Library names from the &lt;c...&gt; headers are in the global namespace
instead of namespace std.<p><b>Workaround:</b>&nbsp; The header <a href="../libs/config/index.htm">boost/config.hpp</a>
instead of namespace std.<p><b>Workaround:</b>&nbsp; The header <a href="../libs/config/config.htm">boost/config.hpp</a>
will define BOOST_NO_STDC_NAMESPACE. It can be used as follows:
<pre># ifdef BOOST_NO_STDC_NAMESPACE
namespace std { using ::abs; using ::fabs; }

View file

@ -119,7 +119,7 @@ of the products or services mentioned above.
<hr>
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED"
s-format="%d %B %Y" startspan -->20 July 2001<!--webbot bot="Timestamp" endspan i-checksum="18764" --></p>
s-format="%d %B %Y" startspan -->13 September 2001<!--webbot bot="Timestamp" endspan i-checksum="39493" --></p>
</body>
</html>