Boost logo

Boost-Commit :

From: ramey_at_[hidden]
Date: 2007-11-01 16:28:08


Author: ramey
Date: 2007-11-01 16:28:08 EDT (Thu, 01 Nov 2007)
New Revision: 40663
URL: http://svn.boost.org/trac/boost/changeset/40663

Log:
class diagram - change from dispatch to route
conents - sync with docs
extended_type_info - synced with code
release - reversed sequence to lifo
Text files modified:
   branches/serialization_next_release/boost/libs/serialization/doc/class_diagram.html | 2 +-
   branches/serialization_next_release/boost/libs/serialization/doc/contents.html | 2 +-
   branches/serialization_next_release/boost/libs/serialization/doc/extended_type_info.html | 14 --------------
   branches/serialization_next_release/boost/libs/serialization/doc/release.html | 35 ++++++++++++++++++-----------------
   4 files changed, 20 insertions(+), 33 deletions(-)

Modified: branches/serialization_next_release/boost/libs/serialization/doc/class_diagram.html
==============================================================================
--- branches/serialization_next_release/boost/libs/serialization/doc/class_diagram.html (original)
+++ branches/serialization_next_release/boost/libs/serialization/doc/class_diagram.html 2007-11-01 16:28:08 EDT (Thu, 01 Nov 2007)
@@ -150,7 +150,7 @@
   </code></dt>
   <dd><p>
   This class implements the <code style="white-space: normal">polymorphic_iarchive</code> in terms of a specific
- concrete class. Virtual function calls are forwarded to the implementing class. In this example,
+ concrete class. Virtual function calls are routed to the implementing class. In this example,
   that implementing class would be text_iarchive_impl.
   
   <p><dt><code>

Modified: branches/serialization_next_release/boost/libs/serialization/doc/contents.html
==============================================================================
--- branches/serialization_next_release/boost/libs/serialization/doc/contents.html (original)
+++ branches/serialization_next_release/boost/libs/serialization/doc/contents.html 2007-11-01 16:28:08 EDT (Thu, 01 Nov 2007)
@@ -87,9 +87,9 @@
     <dt><img style="display:none" src="plus.gif" id="release_notes"><a target="detail" href="release.html">Release Notes</a></dt>
     <dd><div id="release_notes_detail"><dl class="page-index">
       <dt><img style="display:none" src="dot.gif"><a target="detail" href="release.html#requirements">Requirements</a></dt>
+ <dt><img style="display:none" src="dot.gif"><a target="detail" href="release.html#difference_1_34">Differences from version 1.34</a></dt>
       <dt><img style="display:none" src="dot.gif"><a target="detail" href="release.html#difference_1_32">Differences from version 1.32</a></dt>
       <dt><img style="display:none" src="dot.gif"><a target="detail" href="release.html#difference_1_33">Differences from version 1.33</a></dt>
- <dt><img style="display:none" src="dot.gif"><a target="detail" href="release.html#difference_1_34">Differences from version 1.34</a></dt>
       <dt><img style="display:none" src="dot.gif"><a target="detail" href="release.html#todo">Pending Issues</a></dt>
     </dl></div></dd>
     <dt><img style="display:none" src="plus.gif" id="overview"><a target="detail" href="overview.html">Overview</a></dt>

Modified: branches/serialization_next_release/boost/libs/serialization/doc/extended_type_info.html
==============================================================================
--- branches/serialization_next_release/boost/libs/serialization/doc/extended_type_info.html (original)
+++ branches/serialization_next_release/boost/libs/serialization/doc/extended_type_info.html 2007-11-01 16:28:08 EDT (Thu, 01 Nov 2007)
@@ -239,20 +239,6 @@
 </dd>
 </dl>
 
-It must define the following
-<a href="../../mpl/doc/refmanual/integral-constant.html">
-Itegral Constant</a>
-of type
-bool:
-<dl>
-<dt><h4><code style="white-space: normal"><pre>
-ETI::is_polymorphic
-</pre></code></h4></dt>
-<dd>
-</dd>
-
-</dl>
-
 <h3><a name="models">Models</a></h3>
 The serialization library includes two distinct
 <code style="white-space: normal"><a target="extended_type_info.hpp" href="../../../boost/serialization/extended_type_info.hpp">extended_type_info</a></code>

Modified: branches/serialization_next_release/boost/libs/serialization/doc/release.html
==============================================================================
--- branches/serialization_next_release/boost/libs/serialization/doc/release.html (original)
+++ branches/serialization_next_release/boost/libs/serialization/doc/release.html 2007-11-01 16:28:08 EDT (Thu, 01 Nov 2007)
@@ -27,9 +27,9 @@
 <hr>
 <dl class="index">
   <dt>Requirements</dt>
- <dt>Differences from version 1.32</dt>
- <dt>Differences from version 1.33</dt>
   <dt>Differences from version 1.34</dt>
+ <dt>Differences from version 1.33</dt>
+ <dt>Differences from version 1.32</dt>
   <dt>Pending Issues</dt>
 </dl>
 There are currently no known bugs. However, due to compiler/library quirks and or
@@ -52,6 +52,22 @@
 the directory which contains the version of spirit you plan to use is placed
 at the front of the list of include paths.
 
+<h2><a name="differences_1_34"></a>Differences from Boost 1.34</h2>
+<ul>
+ <li>Enhanced support for fast serialization for native binary archives. By Mattias Troyer.
+ <li>Improved implementation of "export" functionality. Removes header ordering
+ requirement and eliminates the maintenance of a pre-determined list of "known archives"
+ By David Abrahams.
+ <li>Library is now thread-safe.
+ <li>Improved support for STLPort.
+</ul>
+
+<h2><a name="differences_1_33"></a>Differences from Boost 1.33</h2>
+<ul>
+ <li>Native Binary archives use the <code style="white-space: normal">std::streambuf</code> interface.
+ This should result in noticeably faster execution in many cases.
+</ul>
+
 <h2><a name="differences_1_32"></a>Differences from Boost 1.32</h2>
 <ul>
     <li>Dynamic Linking Library (DLLs and shared libraries) for platforms which support them. See
@@ -79,20 +95,6 @@
     <li>More compilers tested and supported.
     <li>Miscellaneous bug fixes.
 </ul>
-<h2><a name="differences_1_33"></a>Differences from Boost 1.33</h2>
-<ul>
- <li>Native Binary archives use the <code style="white-space: normal">std::streambuf</code> interface.
- This should result in noticeably faster execution in many cases.
-</ul>
-
-<h2><a name="differences_1_34"></a>Differences from Boost 1.34</h2>
-<ul>
- <li>Enhanced support for fast serialization for native binary archives. By Mattias Troyer.
- <li>Improved implementation of "export" functionality. Removes header ordering
- requirement and eliminates the maintenance of a pre-determined list of "known archives"
- By David Abrahams.
- <li>Improved support for STLPort.
-</ul>
 
 <h2><a name="todo"></a>Pending issues</h2>
 <ul>
@@ -109,7 +111,6 @@
     is fixed in this version. Unfortunately, the fix breaks serialization of
     <code style="white-space: normal">std::map</code> for those compilers which do not support
     partial template specialization.
- <li>Floating point values which are number cannot be serialized to text base archives.
 </ul>
 <p>
 Aside from the above, there are a number of issues related to specific platforms.


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