$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r49384 - in website/public_html/beta/feed: . history
From: daniel_james_at_[hidden]
Date: 2008-10-19 06:59:07
Author: danieljames
Date: 2008-10-19 06:59:06 EDT (Sun, 19 Oct 2008)
New Revision: 49384
URL: http://svn.boost.org/trac/boost/changeset/49384
Log:
Updated dynamic_bitset release details.
Text files modified: 
   website/public_html/beta/feed/history.rss              |    43 ++++++++++++++++++++++++++++++++------- 
   website/public_html/beta/feed/history/boost_1_37_0.qbk |    12 +++++-----                              
   website/public_html/beta/feed/news.rss                 |    43 ++++++++++++++++++++++++++++++++------- 
   3 files changed, 76 insertions(+), 22 deletions(-)
Modified: website/public_html/beta/feed/history.rss
==============================================================================
--- website/public_html/beta/feed/history.rss	(original)
+++ website/public_html/beta/feed/history.rss	2008-10-19 06:59:06 EDT (Sun, 19 Oct 2008)
@@ -7,8 +7,8 @@
     <language>en-us</language>
     <copyright>Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)</copyright>
   <item><title>Version 1.37.0</title><pubDate>$Date$</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
-      New Library: Proto. Updated Libraries: Circular Buffer, Dynamic Bitset, Interprocess,
-      Intrusive
+      New Library: Proto. Updated Libraries: Circular Buffer, Dynamic Bitset, Hash,
+      Interprocess, Intrusive, Unordered
     </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=616969><description><div class="description">
   
   <div id="version_1_37_0.new_libraries">
@@ -40,16 +40,25 @@
         </ul>
       </li>
       <li>
-        <span class="library"><a href="/libs/dynamic_bitset/dynamic_bitset.html">Dynamic Bitset</a>:</span>
+        <span class="library"><a href="/libs/dynamic_bitset/">Dynamic Bitset</a>:</span>
         <ul>
           <li>
-            Implemented constructor <em>do-the-right-thing</em> dispatch,
-            a la standard sequences (mimics resolution of library issue 438, currently
-            in the <tt>C++0x</tt> working paper)
+            Constructor &quot;do the right thing&quot; dispatch, a la standard sequence
+            containers (mimics the proposed resolution of <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#438">library
+            issue 438</a>, currently in the <tt>C++0x</tt> working
+            paper).
           </li>
           <li>
-            Miscellaneous improvements to documentation, code examples and implementation
-            details.
+            Improvements to documentation, code examples and implementation.
+          </li>
+        </ul>
+      </li>
+      <li>
+        <span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
+        <ul>
+          <li>
+            Minor bug fix (see <a href="http://svn.boost.org/trac/boost/ticket/2264">Ticket
+            2264</a>).
           </li>
         </ul>
       </li>
@@ -85,6 +94,24 @@
           </li>
         </ul>
       </li>
+      <li>
+        <span class="library"><a href="/libs/unordered/index.html">Unordered</a>:</span>
+        <ul>
+          <li>
+            Rename overload of <code><span class="identifier">emplace</span></code>
+            with hint, to <code><span class="identifier">emplace_hint</span></code>
+            as specified in <a href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2691.pdf">n2691</a>.
+          </li>
+          <li>
+            Provide forwarding headers at <code><span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">unordered</span><span class="special">/</span><span class="identifier">unordered_map_fwd</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>
+            and <code><span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">unordered</span><span class="special">/</span><span class="identifier">unordered_set_fwd</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>.
+          </li>
+          <li>
+            Move all of the implementation inside the <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">unordered</span></code>
+            directory.
+          </li>
+        </ul>
+      </li>
     </ul>
   </div>
   <div id="version_1_37_0.compilers_tested">
Modified: website/public_html/beta/feed/history/boost_1_37_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_37_0.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_37_0.qbk	2008-10-19 06:59:06 EDT (Sun, 19 Oct 2008)
@@ -34,12 +34,12 @@
 * [phrase library..[@/libs/circular_buffer/index.html Circular Buffer]:]
   * Added new methods `is_linearized()` and `rotate(const_iterator)`.
   * Minor bug fixes and documentation updates.
-* [phrase library..[@/libs/dynamic_bitset/dynamic_bitset.html Dynamic Bitset]:]
-  * Implemented constructor ['do-the-right-thing] dispatch, a la
-    standard sequences (mimics resolution of library issue 438,
-    currently in the [^C++0x] working paper)
-  * Miscellaneous improvements to documentation, code examples and
-    implementation details.
+* [phrase library..[@/libs/dynamic_bitset/ Dynamic Bitset]:]
+  * Constructor "do the right thing" dispatch, a la standard sequence
+    containers (mimics the proposed resolution of
+    [@http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#438
+    library issue 438], currently in the [^C++0x] working paper).
+  * Improvements to documentation, code examples and implementation.
 * [phrase library..[@/libs/functional/hash/index.html Hash]:]
   * Minor bug fix (see [@http://svn.boost.org/trac/boost/ticket/2264 Ticket 2264]).
 * [phrase library..[@/libs/interprocess/index.html Interprocess]:]
Modified: website/public_html/beta/feed/news.rss
==============================================================================
--- website/public_html/beta/feed/news.rss	(original)
+++ website/public_html/beta/feed/news.rss	2008-10-19 06:59:06 EDT (Sun, 19 Oct 2008)
@@ -7,8 +7,8 @@
     <language>en-us</language>
     <copyright>Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)</copyright>
   <item><title>Version 1.37.0</title><pubDate>$Date$</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
-      New Library: Proto. Updated Libraries: Circular Buffer, Dynamic Bitset, Interprocess,
-      Intrusive
+      New Library: Proto. Updated Libraries: Circular Buffer, Dynamic Bitset, Hash,
+      Interprocess, Intrusive, Unordered
     </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=616969><description><div class="description">
   
   <div id="version_1_37_0.new_libraries">
@@ -40,16 +40,25 @@
         </ul>
       </li>
       <li>
-        <span class="library"><a href="/libs/dynamic_bitset/dynamic_bitset.html">Dynamic Bitset</a>:</span>
+        <span class="library"><a href="/libs/dynamic_bitset/">Dynamic Bitset</a>:</span>
         <ul>
           <li>
-            Implemented constructor <em>do-the-right-thing</em> dispatch,
-            a la standard sequences (mimics resolution of library issue 438, currently
-            in the <tt>C++0x</tt> working paper)
+            Constructor &quot;do the right thing&quot; dispatch, a la standard sequence
+            containers (mimics the proposed resolution of <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#438">library
+            issue 438</a>, currently in the <tt>C++0x</tt> working
+            paper).
           </li>
           <li>
-            Miscellaneous improvements to documentation, code examples and implementation
-            details.
+            Improvements to documentation, code examples and implementation.
+          </li>
+        </ul>
+      </li>
+      <li>
+        <span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
+        <ul>
+          <li>
+            Minor bug fix (see <a href="http://svn.boost.org/trac/boost/ticket/2264">Ticket
+            2264</a>).
           </li>
         </ul>
       </li>
@@ -85,6 +94,24 @@
           </li>
         </ul>
       </li>
+      <li>
+        <span class="library"><a href="/libs/unordered/index.html">Unordered</a>:</span>
+        <ul>
+          <li>
+            Rename overload of <code><span class="identifier">emplace</span></code>
+            with hint, to <code><span class="identifier">emplace_hint</span></code>
+            as specified in <a href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2691.pdf">n2691</a>.
+          </li>
+          <li>
+            Provide forwarding headers at <code><span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">unordered</span><span class="special">/</span><span class="identifier">unordered_map_fwd</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>
+            and <code><span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">unordered</span><span class="special">/</span><span class="identifier">unordered_set_fwd</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>.
+          </li>
+          <li>
+            Move all of the implementation inside the <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">unordered</span></code>
+            directory.
+          </li>
+        </ul>
+      </li>
     </ul>
   </div>
   <div id="version_1_37_0.compilers_tested">