Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r49189 - trunk/libs/wave/doc
From: juergen.hunold_at_[hidden]
Date: 2008-10-08 16:22:28


Author: jhunold
Date: 2008-10-08 16:22:27 EDT (Wed, 08 Oct 2008)
New Revision: 49189
URL: http://svn.boost.org/trac/boost/changeset/49189

Log:
Redirect source file references to svn.boost.org

Text files modified:
   trunk/libs/wave/doc/class_ref_ctxpolicy_depr.html | 2 +-
   trunk/libs/wave/doc/class_reference_context.html | 2 +-
   trunk/libs/wave/doc/class_reference_ctxpolicy.html | 2 +-
   trunk/libs/wave/doc/class_reference_filepos.html | 2 +-
   trunk/libs/wave/doc/class_reference_inptpolcy.html | 2 +-
   trunk/libs/wave/doc/class_reference_lexer.html | 4 ++--
   trunk/libs/wave/doc/class_reference_tokentype.html | 2 +-
   7 files changed, 8 insertions(+), 8 deletions(-)

Modified: trunk/libs/wave/doc/class_ref_ctxpolicy_depr.html
==============================================================================
--- trunk/libs/wave/doc/class_ref_ctxpolicy_depr.html (original)
+++ trunk/libs/wave/doc/class_ref_ctxpolicy_depr.html 2008-10-08 16:22:27 EDT (Wed, 08 Oct 2008)
@@ -46,7 +46,7 @@
 </ul>
 <p>This policy type is used as a template parameter to the boost::wave::context<>
   object, where the default policy provides empty hook functions only.</p>
-<h2><a name="header_synopsis"></a>Header wave/preprocessing_hooks.hpp
+<h2><a name="header_synopsis"></a>Header wave/preprocessing_hooks.hpp
   synopsis</h2>
 <pre>
 <span class="keyword">namespace</span> boost {

Modified: trunk/libs/wave/doc/class_reference_context.html
==============================================================================
--- trunk/libs/wave/doc/class_reference_context.html (original)
+++ trunk/libs/wave/doc/class_reference_context.html 2008-10-08 16:22:27 EDT (Wed, 08 Oct 2008)
@@ -45,7 +45,7 @@
     other options as for instance to control, whether to enable several extensions
     to the C++ Standard (as for instance variadics and placemarkers) or not.</p>
 </blockquote>
-<h2><b><a name="header_synopsis"></a>Header wave/cpp_context.hpp
+<h2><b><a name="header_synopsis"></a>Header wave/cpp_context.hpp
   synopsis</b></h2>
 <pre><span class="keyword">namespace</span> <span class="identifier">boost</span> {
 <span class="keyword">namespace</span> <span class="identifier">wave</span> {

Modified: trunk/libs/wave/doc/class_reference_ctxpolicy.html
==============================================================================
--- trunk/libs/wave/doc/class_reference_ctxpolicy.html (original)
+++ trunk/libs/wave/doc/class_reference_ctxpolicy.html 2008-10-08 16:22:27 EDT (Wed, 08 Oct 2008)
@@ -45,7 +45,7 @@
 </ul>
 <p>This policy type is used as a template parameter to the boost::wave::context<>
   object, where the default policy provides empty hook functions only.</p>
-<h2><a name="header_synopsis"></a>Header wave/preprocessing_hooks.hpp
+<h2><a name="header_synopsis"></a>Header wave/preprocessing_hooks.hpp
   synopsis</h2>
 <pre>
 <span class="keyword">namespace</span> boost {

Modified: trunk/libs/wave/doc/class_reference_filepos.html
==============================================================================
--- trunk/libs/wave/doc/class_reference_filepos.html (original)
+++ trunk/libs/wave/doc/class_reference_filepos.html 2008-10-08 16:22:27 EDT (Wed, 08 Oct 2008)
@@ -35,7 +35,7 @@
 <p>The file position template is used to represent a concrete token position inside
   the underlying input stream. This token position contains the corresponding
   filename, the line number and the column number, where the token was recognized.</p>
-<h2><b><a name="header_synopsis"></a>Header wave/util/file_position.hpp
+<h2><b><a name="header_synopsis"></a>Header wave/util/file_position.hpp
   synopsis</b></h2>
 <pre><span class="keyword">namespace</span> <span class="identifier">boost</span> {
 <span class="keyword">namespace</span> <span class="identifier">wave</span> {

Modified: trunk/libs/wave/doc/class_reference_inptpolcy.html
==============================================================================
--- trunk/libs/wave/doc/class_reference_inptpolcy.html (original)
+++ trunk/libs/wave/doc/class_reference_inptpolcy.html 2008-10-08 16:22:27 EDT (Wed, 08 Oct 2008)
@@ -39,7 +39,7 @@
   input sequence. If this template parameter is not given while instantiating
   the context object, it defaults to the <tt>iteration_context_policies::load_file_to_string</tt>
   type. </p>
-<h2><b><a name="header_synopsis"></a>Header wave/iteration_context.hpp
+<h2><b><a name="header_synopsis"></a>Header wave/iteration_context.hpp
   synopsis</b></h2>
 <p>The following code listing does not show the required interface only, but for
   brevity reasons the whole implementation of an input policy, which loads the

Modified: trunk/libs/wave/doc/class_reference_lexer.html
==============================================================================
--- trunk/libs/wave/doc/class_reference_lexer.html (original)
+++ trunk/libs/wave/doc/class_reference_lexer.html 2008-10-08 16:22:27 EDT (Wed, 08 Oct 2008)
@@ -34,7 +34,7 @@
 <h2><b><a name="introduction"></a>Introduction</b></h2>
 <p>Every lexer, which should be used in conjunction with the <tt>Wave</tt> library, has to return tokens formed from the input stream. These tokens should conform to the synopsis described in the topic The Token Type. The lexer type should expose an interface which conforms at least to a <tt>forward_iterator</tt> (in the sense defined by the the C++ Standard) returning the token type. The code sample below does not show the definition of this forward iterator interface because this is highly implementation defined.</p>
 <h2><a name="header_synopsis"></a>Wave lexer
- synopsis (header: wave/cpplexer/cpp_lexer_interface.hpp)</h2>
+ synopsis (header: wave/cpplexer/cpp_lexer_interface.hpp)</h2>
 <pre> <span class="keyword">struct</span> lex_iterator
     {
         <span class="keyword">typedef</span> boost::wave::lex_token&lt;&gt; token_type;
@@ -53,7 +53,7 @@
     };
 
 </pre>
-<p>Please note, that the <tt>lex_iterator</tt> defined in the library header wave/cpplexer/cpp_lexer_interface.hpp actually is a template class taking the token type to use as its template parameter. This is omitted in the synopsis above because it is an implementation detail of the Re2C lexer provided as part of the Wave library.</p>
+<p>Please note, that the <tt>lex_iterator</tt> defined in the library header wave/cpplexer/cpp_lexer_interface.hpp actually is a template class taking the token type to use as its template parameter. This is omitted in the synopsis above because it is an implementation detail of the Re2C lexer provided as part of the Wave library.</p>
 <p>If you want to use Wave in conjunction with your own lexing component this will have to conform to the interface described above only. </p>
 <h2><a name="public_typedefs" id="public_typedefs"></a>Public Typedefs</h2>
 <p>Besides the typedefs mandated for a <tt>forward_iterator</tt> by the C++ standard every lexer to be used with the <tt>Wave</tt> library should define the following typedefs: </p>

Modified: trunk/libs/wave/doc/class_reference_tokentype.html
==============================================================================
--- trunk/libs/wave/doc/class_reference_tokentype.html (original)
+++ trunk/libs/wave/doc/class_reference_tokentype.html 2008-10-08 16:22:27 EDT (Wed, 08 Oct 2008)
@@ -50,7 +50,7 @@
   library, which is used in conjunction with the two predefined C++ lexers contained
   in the <tt>Wave</tt> library too. If you need to use your own token type, it
   is required to implement the interafce described below.</p>
-<h2><b><a name="header_synopsis"></a>Header wave/cpplexer/cpp_lex_token.hpp
+<h2><b><a name="header_synopsis"></a>Header wave/cpplexer/cpp_lex_token.hpp
   synopsis</b></h2>
 <pre><span class="keyword">namespace</span> boost {
 <span class="keyword">namespace</span> wave {


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