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 30ebf201ac
commit a7b194ca92
5 changed files with 8 additions and 8 deletions

View File

@ -132,7 +132,7 @@ for various compilers, but these will become obsolete as Boost.Build matures..
<hr> <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> <p>Written by&nbsp; <a href="../people/jens_maurer.htm">Jens Maurer</a>
2001-02-11</p> 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> would be included by <tt>#include &lt;boost/furball.hpp&gt;</tt></li>
<li>The preferred ordering for class definitions is public members, protected <li>The preferred ordering for class definitions is public members, protected
members, and finally private members.</li> 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 header</a> if there is a need to deal with compiler or platform
configuration issues.</li> configuration issues.</li>
</ul> </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 issues are viewed as personal preferences and are not part of the Boost Header
Policy.</p> Policy.</p>
<hr> <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> </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 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 tradeoff is a fast implementation which uses a lot of memory versus a slower
implementation which uses less memory.</p> 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 header</a>, boost/config.hpp, to capture compiler and platform
dependencies.&nbsp; Although the use of boost/config.hpp is not required, it is dependencies.&nbsp; Although the use of boost/config.hpp is not required, it is
the preferred approach for simple configuration problems.&nbsp;&nbsp;</p> 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 the program itself.&nbsp; Thus usually not appropriate to cope with platform
differences.</p> differences.</p>
<hr> <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> </body>

View File

@ -96,7 +96,7 @@ embarrassingly.</p>
<li> <li>
<p align="left">There is no requirement that a library run on any particular <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 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 header</a> is the preferred mechanism for working around compiler
deficiencies.</li> deficiencies.</li>
</ul> </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 documentation, while minor fixes are often mentioned in comments within the code
itself.</p> itself.</p>
<hr> <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> </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> <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 <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: will define BOOST_NO_STDC_NAMESPACE. It can be used as follows:
<pre># ifdef BOOST_NO_STDC_NAMESPACE <pre># ifdef BOOST_NO_STDC_NAMESPACE
namespace std { using ::abs; using ::fabs; } namespace std { using ::abs; using ::fabs; }