Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r78736 - in website/public_html/live: feed/history generated generated/state users/history
From: dnljms_at_[hidden]
Date: 2012-05-28 16:41:44


Author: danieljames
Date: 2012-05-28 16:41:42 EDT (Mon, 28 May 2012)
New Revision: 78736
URL: http://svn.boost.org/trac/boost/changeset/78736

Log:
Website: Add wave to release notes + rebuild.
Text files modified:
   website/public_html/live/feed/history/boost_1_50_0.qbk | 9 +
   website/public_html/live/generated/dev.rss | 143 +++++++++++++++++++++++++++++++++++++++
   website/public_html/live/generated/state/feed-pages.txt | 12 +-
   website/public_html/live/users/history/version_1_50_0.html | 143 +++++++++++++++++++++++++++++++++++++++
   4 files changed, 296 insertions(+), 11 deletions(-)

Modified: website/public_html/live/feed/history/boost_1_50_0.qbk
==============================================================================
--- website/public_html/live/feed/history/boost_1_50_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_50_0.qbk 2012-05-28 16:41:42 EDT (Mon, 28 May 2012)
@@ -3,10 +3,10 @@
     [source-mode c++]
     [purpose New Libraries: Algorithm, Functional/OverloadedFunction,
     LocalFunction, Utility/IdentityType.
- Updated Libraries: Accumulators, Chrono, Foreach, Graph,
- Hash, Iostreams, MultiArray, Lexical cast, Locale, MSM,
+ Updated Libraries: Accumulators, Array, Chrono, Foreach, Graph,
+ Geometry, Hash, Iostreams, Iterator, MultiArray, Lexical cast, Locale, MSM,
     Program Options, PropertyMap, Proto, Ratio, ScopeExit,
- Thread, Unordered, xpressive]
+ Thread, Unordered, Wave, xpressive]
     [authors [Dawes, Beman]]
     [last-revision ]
 ]
@@ -232,6 +232,9 @@
     [@/doc/html/unordered/changes.html#unordered.changes.boost_1_50_0
     change log] for full details.
 
+* [phrase library..[@/libs/wave/index.html Wave]:]
+ * Wave V2.3.2, see the [@/libs/wave/ChangeLog Changelog] for details.
+
 * [phrase library..[@/libs/xpressive/ xpressive]:]
   * Remove very ugly `lexical_cast` hack with a slightly less ugly one.
   * Replace MPL assert with static assert since it's problematic in C++11, fixes [@https://svn.boost.org/trac/boost/ticket/6846 #6846].

Modified: website/public_html/live/generated/dev.rss
==============================================================================
--- website/public_html/live/generated/dev.rss (original)
+++ website/public_html/live/generated/dev.rss 2012-05-28 16:41:42 EDT (Mon, 28 May 2012)
@@ -16,7 +16,9 @@
         <div>
           <span class="library"><a href="http://www.boost.org/libs/algorithm/">Algorithm</a>:</span>
   A collection of
- useful generic algorithms, from Marshall Clow.
+ useful generic algorithms, from Marshall Clow. This includes several different
+ searching algorithms, as well as most of the new algorithms from the C++11
+ standard library
         </div>
       </li>
       <li>
@@ -73,6 +75,18 @@
       </li>
       <li>
         <div>
+ <span class="library"><a href="http://www.boost.org/libs/array/">Array</a>:</span>
+ <ul>
+ <li>
+ <div>
+ add support for Boost.Hash <a href="https://svn.boost.org/trac/boost/ticket/6791">#6791</a>.
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library"><a href="http://www.boost.org/libs/chrono/">Chrono</a>:</span>
           <ul>
             <li>
@@ -119,6 +133,94 @@
       </li>
       <li>
         <div>
+ <span class="library"><a href="http://www.boost.org/libs/geometry/">Geometry</a>:</span>
+ <ul>
+ <li>
+ <div>
+ Fixed Bugs:
+ <ul>
+ <li>
+ <div>
+ the return type of comparable projected point strategy for
+ integer points was wrong (integer), fixed
+ </div>
+ </li>
+ <li>
+ <div>
+ several robustness issues in intersection of segments and polygons,
+ fixed
+ </div>
+ </li>
+ <li>
+ <div>
+ invalid intersection output is filtered out
+ </div>
+ </li>
+ <li>
+ <div>
+ disjoint for multi_polygon's might incorrectly return true,
+ fixed
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
+ Solved tickets
+ <ul>
+ <li>
+ <div>
+ <a href="http://svn.boost.org/trac/boost/ticket/6585">6585</a>
+ patch for alternative syntax multipoint, applied
+ </div>
+ </li>
+ <li>
+ <div>
+ <a href="http://svn.boost.org/trac/boost/ticket/6584">6584</a>
+ patch for bug in distance, applied
+ </div>
+ </li>
+ <li>
+ <div>
+ <a href="http://svn.boost.org/trac/boost/ticket/5730">5730</a>
+ same issue as 6584, fixed
+ </div>
+ </li>
+ <li>
+ <div>
+ <a href="http://svn.boost.org/trac/boost/ticket/6166">6166</a>
+ patch for missing transformation, applied
+ </div>
+ </li>
+ <li>
+ <div>
+ <a href="http://svn.boost.org/trac/boost/ticket/6696">6696</a>
+ invalid intersection output, was (by chance) already fixed
+ in Trunk before reported
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
+ Additional functionality
+ <ul>
+ <li>
+ <div>
+ added algorithm "touches" (OGC SF compliant) for
+ *polygon/*polygon
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library"><a href="http://www.boost.org/libs/graph/">Graph</a>:</span>
           <ul>
             <li>
@@ -279,6 +381,32 @@
       </li>
       <li>
         <div>
+ <span class="library"><a href="http://www.boost.org/libs/iterator/">Iterator</a>:</span>
+ <ul>
+ <li>
+ <div>
+ Fixed:
+ <ul>
+ <li>
+ <div>
+ <a href="https://svn.boost.org/trac/boost/ticket/5127">#5127</a>
+ Incorrect result_of usage in transform_iterator
+ </div>
+ </li>
+ <li>
+ <div>
+ <a href="https://svn.boost.org/trac/boost/ticket/5697">#5697</a>
+ iterator_facade::operator-> is broken for proxy references
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library"><a href="http://www.boost.org/libs/multi_array/">MultiArray</a>:</span>
           <ul>
             <li>
@@ -823,6 +951,19 @@
       </li>
       <li>
         <div>
+ <span class="library"><a href="http://www.boost.org/libs/wave/index.html">Wave</a>:</span>
+ <ul>
+ <li>
+ <div>
+ Wave V2.3.2, see the <a href="http://www.boost.org/libs/wave/ChangeLog">Changelog</a>
+ for details.
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library"><a href="http://www.boost.org/libs/xpressive/">xpressive</a>:</span>
           <ul>
             <li>

Modified: website/public_html/live/generated/state/feed-pages.txt
==============================================================================
--- website/public_html/live/generated/state/feed-pages.txt (original)
+++ website/public_html/live/generated/state/feed-pages.txt 2012-05-28 16:41:42 EDT (Mon, 28 May 2012)
@@ -1868,7 +1868,7 @@
 -id
 "version_1_50_0
 -last_modified
-.1338197600.9
+.1338237667.7
 -location
 "users/history/version_1_50_0.html
 -page_state
@@ -1877,16 +1877,16 @@
 -purpose
 "
 " New Libraries: Algorithm, Functional/OverloadedFunction, LocalFunction, Utility/IdentityType.
-" Updated Libraries: Accumulators, Chrono, Foreach, Graph, Hash, Iostreams, MultiArray,
-" Lexical cast, Locale, MSM, Program Options, PropertyMap, Proto, Ratio, ScopeExit,
-" Thread, Unordered, xpressive
+" Updated Libraries: Accumulators, Array, Chrono, Foreach, Graph, Geometry, Hash,
+" Iostreams, Iterator, MultiArray, Lexical cast, Locale, MSM, Program Options,
+" PropertyMap, Proto, Ratio, ScopeExit, Thread, Unordered, Wave, xpressive
 "
 -qbk_hash
-"2f9ff34f630e6e60ae1cca903174da76a8fe594ae8547e9b5cc505d33bc7b6da
+"62dae0e28c79f881622616822c868feef5d535422a5699a781dd818d91353092
 -release_status
 "dev
 -rss_hash
-"f40e908bc3a40aa283a88840518c7ade598be05062c50e2e229b6f04ba551447
+"02bcf7e1176502ace69121ae80d098c1e77c951ea942de27408354005f426bc7
 -title
 "Version 1.50.0
 -type

Modified: website/public_html/live/users/history/version_1_50_0.html
==============================================================================
--- website/public_html/live/users/history/version_1_50_0.html (original)
+++ website/public_html/live/users/history/version_1_50_0.html 2012-05-28 16:41:42 EDT (Mon, 28 May 2012)
@@ -55,7 +55,9 @@
         <div>
           <span class="library">Algorithm:</span>
   A collection of
- useful generic algorithms, from Marshall Clow.
+ useful generic algorithms, from Marshall Clow. This includes several different
+ searching algorithms, as well as most of the new algorithms from the C++11
+ standard library
         </div>
       </li>
       <li>
@@ -112,6 +114,18 @@
       </li>
       <li>
         <div>
+ <span class="library">Array:</span>
+ <ul>
+ <li>
+ <div>
+ add support for Boost.Hash #6791.
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library">Chrono:</span>
           <ul>
             <li>
@@ -158,6 +172,94 @@
       </li>
       <li>
         <div>
+ <span class="library">Geometry:</span>
+ <ul>
+ <li>
+ <div>
+ Fixed Bugs:
+ <ul>
+ <li>
+ <div>
+ the return type of comparable projected point strategy for
+ integer points was wrong (integer), fixed
+ </div>
+ </li>
+ <li>
+ <div>
+ several robustness issues in intersection of segments and polygons,
+ fixed
+ </div>
+ </li>
+ <li>
+ <div>
+ invalid intersection output is filtered out
+ </div>
+ </li>
+ <li>
+ <div>
+ disjoint for multi_polygon's might incorrectly return true,
+ fixed
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
+ Solved tickets
+ <ul>
+ <li>
+ <div>
+ 6585
+ patch for alternative syntax multipoint, applied
+ </div>
+ </li>
+ <li>
+ <div>
+ 6584
+ patch for bug in distance, applied
+ </div>
+ </li>
+ <li>
+ <div>
+ 5730
+ same issue as 6584, fixed
+ </div>
+ </li>
+ <li>
+ <div>
+ 6166
+ patch for missing transformation, applied
+ </div>
+ </li>
+ <li>
+ <div>
+ 6696
+ invalid intersection output, was (by chance) already fixed
+ in Trunk before reported
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
+ Additional functionality
+ <ul>
+ <li>
+ <div>
+ added algorithm &quot;touches&quot; (OGC SF compliant) for
+ *polygon/*polygon
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library">Graph:</span>
           <ul>
             <li>
@@ -318,6 +420,32 @@
       </li>
       <li>
         <div>
+ <span class="library">Iterator:</span>
+ <ul>
+ <li>
+ <div>
+ Fixed:
+ <ul>
+ <li>
+ <div>
+ #5127
+ Incorrect result_of usage in transform_iterator
+ </div>
+ </li>
+ <li>
+ <div>
+ #5697
+ iterator_facade::operator-&gt; is broken for proxy references
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library">MultiArray:</span>
           <ul>
             <li>
@@ -862,6 +990,19 @@
       </li>
       <li>
         <div>
+ <span class="library">Wave:</span>
+ <ul>
+ <li>
+ <div>
+ Wave V2.3.2, see the Changelog
+ for details.
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library">xpressive:</span>
           <ul>
             <li>


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