|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r48987 - in trunk: libs/conversion libs/python/doc libs/python/doc/v2 libs/spirit/doc/lex libs/type_traits/doc libs/utility tools/inspect tools/quickbook
From: daniel_james_at_[hidden]
Date: 2008-09-28 08:21:41
Author: danieljames
Date: 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
New Revision: 48987
URL: http://svn.boost.org/trac/boost/changeset/48987
Log:
Clean up some link errors.
Text files modified:
trunk/libs/conversion/lexical_cast.htm | 6 +++---
trunk/libs/python/doc/building.html | 2 +-
trunk/libs/python/doc/v2/CallPolicies.html | 2 +-
trunk/libs/spirit/doc/lex/lexer_quickstart3.qbk | 2 +-
trunk/libs/spirit/doc/lex/tokens_values.qbk | 2 +-
trunk/libs/type_traits/doc/credits.qbk | 2 +-
trunk/libs/utility/operators.htm | 2 +-
trunk/tools/inspect/index.html | 6 +++---
trunk/tools/quickbook/index.html | 4 ++--
9 files changed, 14 insertions(+), 14 deletions(-)
Modified: trunk/libs/conversion/lexical_cast.htm
==============================================================================
--- trunk/libs/conversion/lexical_cast.htm (original)
+++ trunk/libs/conversion/lexical_cast.htm 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
@@ -81,7 +81,7 @@
conversions, such as where precision or formatting need tighter control than is
offered by the default behavior of <code>lexical_cast</code>, the conventional <code>
stringstream</code> approach is recommended. Where the conversions are
- numeric to numeric, <code>numeric_cast</code>
+ numeric to numeric, <code>numeric_cast</code>
may offer more reasonable behavior than <code>lexical_cast</code>.
<p>
For a good discussion of the options and issues involved in string-based
@@ -213,9 +213,9 @@
Lexical conversion to these types is simply reading a byte from source but since the source has
more than one byte, the exception is thrown.
<p>Please use other integer types such as <code>int</code> or <code>short int</code>. If bounds checking
- is important, you can also call numeric_cast:
+ is important, you can also call numeric_cast:
-<pre>numeric_cast<int8_t>(lexical_cast<int>("127"));</pre>
+<pre>numeric_cast<int8_t>(lexical_cast<int>("127"));</pre>
<p> Q: What does <code>lexical_cast<std::string></code> of an <code>int8_t</code> or <code>uint8_t</code> not do what I expect?
<br> A: As above, note that <code>int8_t</code> and <code>uint8_t</code> are actually chars and are formatted as such. To avoid this, cast to an integer type first:
Modified: trunk/libs/python/doc/building.html
==============================================================================
--- trunk/libs/python/doc/building.html (original)
+++ trunk/libs/python/doc/building.html 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
@@ -9,7 +9,7 @@
</head>
<body>
<div class="document" id="logo-boost-python-build-and-test-howto">
-<h1 class="title"><a class="reference external" href="../index.htm"><img alt="Boost C++ Libraries:" class="boost-logo" src="../../../boost.png" /></a> Boost.Python Build and Test HOWTO</h1>
+<h1 class="title"><a class="reference external" href="../index.html"><img alt="Boost C++ Libraries:" class="boost-logo" src="../../../boost.png" /></a> Boost.Python Build and Test HOWTO</h1>
<!-- Copyright David Abrahams 2006. Distributed under the Boost -->
<!-- Software License, Version 1.0. (See accompanying -->
Modified: trunk/libs/python/doc/v2/CallPolicies.html
==============================================================================
--- trunk/libs/python/doc/v2/CallPolicies.html (original)
+++ trunk/libs/python/doc/v2/CallPolicies.html 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
@@ -137,7 +137,7 @@
<td valign="top"><code>P::extract_return_type</code></td>
<td>A model of <a href=
- "../../../doc/refmanual/metafunction.html">Metafunction</a>.</td>
+ "../../../mpl/doc/refmanual/metafunction.html">Metafunction</a>.</td>
<td>An MPL unary <a href=
"../../../mpl/doc/refmanual/metafunction.html">Metafunction</a> used extract the return type from a given signature. By default it is derived from mpl::front.</td>
Modified: trunk/libs/spirit/doc/lex/lexer_quickstart3.qbk
==============================================================================
--- trunk/libs/spirit/doc/lex/lexer_quickstart3.qbk (original)
+++ trunk/libs/spirit/doc/lex/lexer_quickstart3.qbk 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
@@ -20,7 +20,7 @@
library. The [link spirit.lex.flowcontrol picture] below shows the common
flow control implemented while parsing combined with lexical analysis.
-[fig ./images/FlowOfControl.png..The common flow control implemented while parsing combined with lexical analysis..spirit.lex.flowcontrol]
+[fig ./images/flowofcontrol.png..The common flow control implemented while parsing combined with lexical analysis..spirit.lex.flowcontrol]
Another problem related to the integration of the lexical analyzer with the
parser was to find a way how the defined tokens syntactically could be blended
Modified: trunk/libs/spirit/doc/lex/tokens_values.qbk
==============================================================================
--- trunk/libs/spirit/doc/lex/tokens_values.qbk (original)
+++ trunk/libs/spirit/doc/lex/tokens_values.qbk 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
@@ -56,7 +56,7 @@
was matched in. The following [link spirit.lex.tokenstructure figure] shows the
schematic structure of a token.
-[fig ./images/TokenStructure.png..The structure of a token..spirit.lex.tokenstructure]
+[fig ./images/tokenstructure.png..The structure of a token..spirit.lex.tokenstructure]
The token value and the token state may be omitted for optimization reasons,
avoiding the token to carry more data than actually required. This
Modified: trunk/libs/type_traits/doc/credits.qbk
==============================================================================
--- trunk/libs/type_traits/doc/credits.qbk (original)
+++ trunk/libs/type_traits/doc/credits.qbk 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
@@ -8,7 +8,7 @@
[section:credits Credits]
This documentation was pulled together by John Maddock, using
-[@../../../../tools/quickbook/doc/html/index.html Boost.Quickbook]
+[@../../../../doc/html/quickbook.html Boost.Quickbook]
and [@../../../../doc/html/boostbook.html Boost.DocBook].
The original version of this library was created by Steve Cleary,
Modified: trunk/libs/utility/operators.htm
==============================================================================
--- trunk/libs/utility/operators.htm (original)
+++ trunk/libs/utility/operators.htm 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
@@ -2030,7 +2030,7 @@
</pre>
</blockquote>
- <p>Check the <a href="../../status/compiler_status.html">compiler status
+ <p>Check the <a href="http://www.boost.org/development/testing.html">compiler status
report</a> for the test results with selected platforms.</p>
<hr>
Modified: trunk/tools/inspect/index.html
==============================================================================
--- trunk/tools/inspect/index.html (original)
+++ trunk/tools/inspect/index.html 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
@@ -33,8 +33,8 @@
inspect.cpp</a></li>
<li>link_check.hpp and <a href="link_check.cpp">
link_check.cpp</a></li>
- <li>long_name_check.hpp and
- long_name_check.cpp</li>
+ <li>path_name_check.hpp and
+ path_name_check.cpp</li>
<li>tab_check.hpp and <a href="tab_check.cpp">
tab_check.cpp</a></li>
</ul>
@@ -56,4 +56,4 @@
</body>
-</html>
\ No newline at end of file
+</html>
Modified: trunk/tools/quickbook/index.html
==============================================================================
--- trunk/tools/quickbook/index.html (original)
+++ trunk/tools/quickbook/index.html 2008-09-28 08:21:39 EDT (Sun, 28 Sep 2008)
@@ -1,10 +1,10 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
- <meta http-equiv="refresh" content="0; URL=doc/html/index.html">
+ <meta http-equiv="refresh" content="0; URL=../../doc/html/quickbook.html">
</head>
<body>
Automatic redirection failed, click this
- link
+ link
</body>
</html>
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