Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r59850 - in sandbox/tokenmap/libs/tokenmap/doc: . html html/tokenmap
From: sl_at_[hidden]
Date: 2010-02-22 19:31:20


Author: sl_
Date: 2010-02-22 19:31:19 EST (Mon, 22 Feb 2010)
New Revision: 59850
URL: http://svn.boost.org/trac/boost/changeset/59850

Log:
expanded rationale
Text files modified:
   sandbox/tokenmap/libs/tokenmap/doc/html/index.html | 4 ++--
   sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/examples_.html | 2 +-
   sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/rationale_.html | 2 +-
   sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/reference.html | 10 +++++-----
   sandbox/tokenmap/libs/tokenmap/doc/tokenmap.qbk | 2 +-
   5 files changed, 10 insertions(+), 10 deletions(-)

Modified: sandbox/tokenmap/libs/tokenmap/doc/html/index.html
==============================================================================
--- sandbox/tokenmap/libs/tokenmap/doc/html/index.html (original)
+++ sandbox/tokenmap/libs/tokenmap/doc/html/index.html 2010-02-22 19:31:19 EST (Mon, 22 Feb 2010)
@@ -27,7 +27,7 @@
 </h3></div></div>
 <div><p class="copyright">Copyright &#169; 2009 Slawomir Lisznianski</p></div>
 <div><div class="legalnotice">
-<a name="id494314"></a><p>
+<a name="id591867"></a><p>
         Distributed under the Boost Software License, Version 1.0. (See accompanying
         file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
       </p>
@@ -66,7 +66,7 @@
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: February 23, 2010 at 00:29:04 GMT</small></p></td>
+<td align="left"><p><small>Last revised: February 23, 2010 at 00:31:08 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>

Modified: sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/examples_.html
==============================================================================
--- sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/examples_.html (original)
+++ sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/examples_.html 2010-02-22 19:31:19 EST (Mon, 22 Feb 2010)
@@ -32,7 +32,7 @@
       them:
     </p>
 <div class="table">
-<a name="id504567"></a><p class="title"><b>Table&#160;1.1.&#160;Tutorial examples</b></p>
+<a name="id602120"></a><p class="title"><b>Table&#160;1.1.&#160;Tutorial examples</b></p>
 <div class="table-contents"><table class="table" summary="Tutorial examples">
 <colgroup>
 <col>

Modified: sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/rationale_.html
==============================================================================
--- sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/rationale_.html (original)
+++ sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/rationale_.html 2010-02-22 19:31:19 EST (Mon, 22 Feb 2010)
@@ -36,7 +36,7 @@
       hard to guess random keys.
     </p>
 <p>
- Another example is that of an API of a shared library. Consider a library which
+ Another example is that of an API of a library. Consider a shared library which
       internally manages resources on behave of its users. As an API author, you
       may wish not to share certain implementation details, such as pointers or iterators,
       with your users yet you would like to efficiently dispatch API calls. When

Modified: sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/reference.html
==============================================================================
--- sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/reference.html (original)
+++ sandbox/tokenmap/libs/tokenmap/doc/html/tokenmap/reference.html 2010-02-22 19:31:19 EST (Mon, 22 Feb 2010)
@@ -27,7 +27,7 @@
 <a name="tokenmap.reference"></a><a class="link" href="reference.html" title="Reference">Reference</a>
 </h2></div></div></div>
 <a name="tokenmap.reference.headers"></a><h4>
-<a name="id503562"></a>
+<a name="id601115"></a>
       <a class="link" href="reference.html#tokenmap.reference.headers">Headers</a>
     </h4>
 <p>
@@ -36,7 +36,7 @@
       to boost namespace.
     </p>
 <a name="tokenmap.reference.synopsis"></a><h4>
-<a name="id503589"></a>
+<a name="id601142"></a>
       <a class="link" href="reference.html#tokenmap.reference.synopsis">Synopsis</a>
     </h4>
 <pre class="programlisting"><span class="keyword">namespace</span> <span class="identifier">boost</span> <span class="special">{</span>
@@ -83,15 +83,15 @@
 </span><span class="special">}</span> <span class="comment">// namespace boost
 </span></pre>
 <a name="tokenmap.reference.class_template_tokenmap"></a><h4>
-<a name="id504176"></a>
+<a name="id601729"></a>
       <a class="link" href="reference.html#tokenmap.reference.class_template_tokenmap">Class template tokenmap</a>
     </h4>
 <a name="tokenmap.reference.nested_types"></a><h4>
-<a name="id504191"></a>
+<a name="id601744"></a>
       <a class="link" href="reference.html#tokenmap.reference.nested_types">Nested types</a>
     </h4>
 <a name="tokenmap.reference.constructors__copy_and_assignment"></a><h4>
-<a name="id504205"></a>
+<a name="id601758"></a>
       <a class="link" href="reference.html#tokenmap.reference.constructors__copy_and_assignment">Constructors,
       copy and assignment</a>
     </h4>

Modified: sandbox/tokenmap/libs/tokenmap/doc/tokenmap.qbk
==============================================================================
--- sandbox/tokenmap/libs/tokenmap/doc/tokenmap.qbk (original)
+++ sandbox/tokenmap/libs/tokenmap/doc/tokenmap.qbk 2010-02-22 19:31:19 EST (Mon, 22 Feb 2010)
@@ -255,7 +255,7 @@
 Today, developers often use `std::map` for the purpose of such mapping, which has sub-optimal
 performance and requires users to come up with sufficiently hard to guess random keys.
 
-Another example is that of an API of a shared library. Consider a library which internally manages
+Another example is that of an API of a library. Consider a shared library which internally manages
 resources on behave of its users. As an API author, you may wish not to share certain
 implementation details, such as pointers or iterators, with your users yet you would
 like to efficiently dispatch API calls. When you use `tokenmap` generated keys, you are not sharing


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