|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r55804 - in website/public_html/live: . common/code community development feed feed/history feed/templates style/css_0 users/download users/history users/news
From: bdawes_at_[hidden]
Date: 2009-08-27 13:03:06
Author: bemandawes
Date: 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
New Revision: 55804
URL: http://svn.boost.org/trac/boost/changeset/55804
Log:
Release 1.40.0
Added:
website/public_html/live/development/report-jun-2009.html
- copied unchanged from r55803, /website/public_html/beta/development/report-jun-2009.html
website/public_html/live/development/report-jun-2009.rst
- copied unchanged from r55803, /website/public_html/beta/development/report-jun-2009.rst
website/public_html/live/feed/history/boost_1_40_0.qbk
- copied unchanged from r55803, /website/public_html/beta/feed/history/boost_1_40_0.qbk
Properties modified:
website/public_html/live/ (props changed)
Text files modified:
website/public_html/live/common/code/boost_feed.php | 54 ++
website/public_html/live/community/review_schedule.html | 29
website/public_html/live/development/requirements.html | 2
website/public_html/live/feed/downloads.rss | 405 +++++++----------
website/public_html/live/feed/history.rss | 529 ++++++++++++++++++++++-
website/public_html/live/feed/history/boost_1_21_1.qbk | 2
website/public_html/live/feed/history/boost_1_21_2.qbk | 2
website/public_html/live/feed/history/boost_1_22_0.qbk | 2
website/public_html/live/feed/history/boost_1_23_0.qbk | 2
website/public_html/live/feed/history/boost_1_24_0.qbk | 2
website/public_html/live/feed/history/boost_1_25_0.qbk | 2
website/public_html/live/feed/history/boost_1_25_1.qbk | 2
website/public_html/live/feed/history/boost_1_26_0.qbk | 2
website/public_html/live/feed/history/boost_1_27_0.qbk | 2
website/public_html/live/feed/history/boost_1_28_0.qbk | 2
website/public_html/live/feed/history/boost_1_29_0.qbk | 2
website/public_html/live/feed/history/boost_1_30_0.qbk | 2
website/public_html/live/feed/history/boost_1_30_2.qbk | 2
website/public_html/live/feed/history/boost_1_31_0.qbk | 2
website/public_html/live/feed/history/boost_1_32_0.qbk | 2
website/public_html/live/feed/history/boost_1_33_0.qbk | 2
website/public_html/live/feed/history/boost_1_33_1.qbk | 2
website/public_html/live/feed/history/boost_1_34_0.qbk | 2
website/public_html/live/feed/history/boost_1_34_1.qbk | 2
website/public_html/live/feed/history/boost_1_35_0.qbk | 2
website/public_html/live/feed/history/boost_1_36_0.qbk | 2
website/public_html/live/feed/history/boost_1_37_0.qbk | 2
website/public_html/live/feed/history/boost_1_38_0.qbk | 2
website/public_html/live/feed/history/boost_1_39_0.qbk | 2
website/public_html/live/feed/news.rss | 874 ++++++++++++++++++++++-----------------
website/public_html/live/feed/templates/boost_x_xx_x.qbk | 5
website/public_html/live/style/css_0/content.css | 14
website/public_html/live/users/download/entry.php | 4
website/public_html/live/users/download/index.php | 2
website/public_html/live/users/history/entry.php | 4
website/public_html/live/users/news/entry.php | 4
36 files changed, 1271 insertions(+), 703 deletions(-)
Modified: website/public_html/live/common/code/boost_feed.php
==============================================================================
--- website/public_html/live/common/code/boost_feed.php (original)
+++ website/public_html/live/common/code/boost_feed.php 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -110,5 +110,59 @@
$f = '_field_cmp_'.strtolower(str_replace('-','_',$field)).'_';
uasort($this->db,$f);
}
+
+ function echo_download_table($guid)
+ {
+ if($this->db[$guid]['boostbook:download']) {
+ $link = $this->db[$guid]['boostbook:download'];
+ if(preg_match('@/boost/(\d+)\.(\d+)\.(\d+)/$@', $link, $matches)) {
+ $base_name = 'boost_'.$matches[1].'_'.$matches[2].'_'.$matches[3];
+
+ /* Pick which files are available by examining the version number.
+ This could possibly be meta-data in the rss feed instead of being
+ hardcoded here. */
+
+ $downloads['unix'][] = $base_name.'.tar.bz2';
+ $downloads['unix'][] = $base_name.'.tar.gz';
+
+ if($matches[1] == 1 && $matches[2] >= 32 && $matches[2] <= 33) {
+ $downloads['windows'][] = $base_name.'.exe';
+ }
+ else if($matches[1] > 1 || $matches[2] > 34 || ($matches[2] == 34 && $matches[3] == 1)) {
+ $downloads['windows'][] = $base_name.'.7z';
+ }
+ $downloads['windows'][] = $base_name.'.zip';
+
+ /* Print the download table. */
+
+ echo '<table class="download-table">';
+ echo '<caption>Downloads</caption>';
+ echo '<tr><th scope="col">Platform</th><th scope="col">File</th></tr>';
+ foreach($downloads as $platform => $files) {
+ echo "\n";
+ echo '<tr><th scope="row"';
+ if(count($files) > 1) {
+ echo ' rowspan="'.count($files).'"';
+ }
+ echo '>'.htmlentities($platform).'</th>';
+ foreach($files as $index => $file) {
+ if($index > 0) echo '</tr><tr>';
+ echo '<td><a href="'.htmlentities($link.$file.'/download').'">'.
+ htmlentities($file).'</a></td>';
+ }
+ echo '</tr>';
+ }
+ echo '</table>';
+ }
+ else {
+ /* If the link didn't match the normal version number pattern
+ then just use the old fashioned link to sourceforge. */
+
+ echo '<p><span class="news-download"><a href="'.
+ htmlentities($link).
+ '">Download this release.</a></span></p>';
+ }
+ }
+ }
}
?>
Modified: website/public_html/live/community/review_schedule.html
==============================================================================
--- website/public_html/live/community/review_schedule.html (original)
+++ website/public_html/live/community/review_schedule.html 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -135,7 +135,7 @@
</tr>
<tr>
- <td>Task</td>
+ <td>Thread Pool</td>
<td>Oliver Kowalke</td>
@@ -258,6 +258,19 @@
<td>-</td>
</tr>
+ <tr>
+ <td>Polygon</td>
+
+ <td>Lucanus Simonson</td>
+
+ <td><a href="https://svn.boost.org/svn/boost/sandbox/gtl/boost/polygon/">
+ Boost Sandbox</a></td>
+
+ <td>Fernando Cacciola</td>
+
+ <td>August 24, 2009 - September 2, 2009</td>
+ </tr>
+
</tbody>
</table>
@@ -279,20 +292,6 @@
</thead>
<tr>
- <td>Polygon</td>
-
- <td>Lucanus Simonson</td>
-
- <td>Fernando Cacciola</td>
-
- <td>August 24, 2009 - September 2, 2009</td>
-
- <td><a href=
- "http://lists.boost.org/boost-announce/2009/08/0234.php">
- Ongoing</a></td>
- </tr>
-
- <tr>
<td>Review Wizard Status Report</td>
<td></td>
Modified: website/public_html/live/development/requirements.html
==============================================================================
--- website/public_html/live/development/requirements.html (original)
+++ website/public_html/live/development/requirements.html 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -694,7 +694,7 @@
<p>If you need more help with how to write documentation you
can check out the article on <a href=
- "/doc/libs/1_34_1/more/writingdoc/index.html">Writing
+ "/doc/libs/release/more/writingdoc/index.html">Writing
Documentation for Boost</a>.</p>
<h2><a name="Rationale" id="Rationale"></a>Rationale</h2>
Modified: website/public_html/live/feed/downloads.rss
==============================================================================
--- website/public_html/live/feed/downloads.rss (original)
+++ website/public_html/live/feed/downloads.rss 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<rss version="2.0" xmlns:boostbook="urn:boost.org:boostbook">
+<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:boostbook="urn:boost.org:boostbook">
<channel>
<generator>BoostBook2RSS</generator>
<title>Boost Downloads</title>
@@ -7,84 +6,31 @@
<description/>
<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.39.0</title><pubDate>Sat, 02 May 2009 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
- New Libraries: Signals2. Updated Libraries: Asio, Flyweight, Foreach, Hash,
- Interprocess, Intrusive, Program.Options, Proto, PtrContainer, Range, Unordered,
- Xpressive. Updated Tools: Boostbook, Quickbook.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=679861><description><div class="description">
+ <item><title>Version 1.40.0</title><pubDate>$Date$</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
+ Build System improvements. Updated Libraries: Accumulators, Circular Buffer,
+ Foreach, Function, Fusion, Hash, Interprocess, Intrusive, MPL, Program.Options,
+ Proto, Serialization, Unordered, Xpressive.
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.40.0.beta.1/><description><div class="description">
- <div id="version_1_39_0.new_libraries">
- <h3><span class="link">New Libraries</span></h3>
- <ul>
- <li>
- <span class="library"><a href="/libs/signals2/index.html">Signals2</a>:</span> Managed signals
- &amp; slots callback implementation (thread-safe version 2), from Frank Mori
- Hess.
- </li>
- </ul>
- </div>
- <div id="version_1_39_0.updated_libraries">
+ <div id="version_1_40_0.updated_libraries">
<h3><span class="link">Updated Libraries</span></h3>
<ul>
<li>
- <span class="library"><a href="/libs/asio/index.html">Asio</a>:</span>
+ <span class="library"><a href="/libs/accumulators/index.html">Accumulators</a>:</span>
<ul>
<li>
- Implement automatic resizing of the bucket array in the internal hash
- maps. This is to improve performance for very large numbers of asynchronous
- operations and also to reduce memory usage for very small numbers. A
- new macro <code><span class="identifier">BOOST_ASIO_HASH_MAP_BUCKETS</span></code>
- may be used to tweak the sizes used for the bucket arrays.
- </li>
- <li>
- Add performance optimisation for the Windows IOCP backend for when no
- timers are used.
- </li>
- <li>
- Prevent locale settings from affecting formatting of TCP and UDP endpoints
- (<a href="https://svn.boost.org/trac/boost/ticket/2682">#2682</a>).
- </li>
- <li>
- Fix a memory leak that occurred when an asynchronous SSL operation's
- completion handler threw an exception (<a href="https://svn.boost.org/trac/boost/ticket/2910">#2910</a>).
- </li>
- <li>
- Fix the implementation of <code><span class="identifier">io_control</span><span class="special">()</span></code> so that it adheres to the documented
- type requirements for IoControlCommand (<a href="https://svn.boost.org/trac/boost/ticket/2820">#2820</a>).
- </li>
- <li>
- Fix incompatibility between Asio and ncurses.h (<a href="https://svn.boost.org/trac/boost/ticket/2156">#2156</a>).
- </li>
- <li>
- On Windows, specifically handle the case when an overlapped <code><span class="identifier">ReadFile</span></code> call fails with <code><span class="identifier">ERROR_MORE_DATA</span></code>. This enables a hack
- where a <code><span class="identifier">windows</span><span class="special">::</span><span class="identifier">stream_handle</span></code> can be used with a message-oriented
- named pipe (<a href="https://svn.boost.org/trac/boost/ticket/2936">#2936</a>).
- </li>
- <li>
- Fix system call wrappers to always clear the error on success, as POSIX
- allows successful system calls to modify errno (<a href="https://svn.boost.org/trac/boost/ticket/2953">#2953</a>).
- </li>
- <li>
- Don't include termios.h if <code><span class="identifier">BOOST_ASIO_DISABLE_SERIAL_PORT</span></code>
- is defined (<a href="https://svn.boost.org/trac/boost/ticket/2917">#2917</a>).
- </li>
- <li>
- Cleaned up some more MSVC level 4 warnings (<a href="https://svn.boost.org/trac/boost/ticket/2828">#2828</a>).
- </li>
- <li>
- Various documentation fixes (<a href="https://svn.boost.org/trac/boost/ticket/2871">#2871</a>).
+ Works on GCC 4.4.
</li>
</ul>
</li>
<li>
- <span class="library"><a href="/libs/flyweight/index.html">Flyweight</a>:</span>
+ <span class="library"><a href="/libs/circular_buffer/index.html">Circular Buffer</a>:</span>
<ul>
<li>
- The <a href="/libs/flyweight/doc/tutorial/configuration.html#refcounted">refcounted</a>
- component was not thread-safe due to an incorrect implementation and
- could deadlock under heavy usage conditions. This problem has been corrected.
+ Fixed bugs <a href="https://svn.boost.org/trac/boost/ticket/2785">#2785</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3285">#3285</a>.
</li>
</ul>
</li>
@@ -92,230 +38,214 @@
<span class="library"><a href="/libs/foreach/index.html">Foreach</a>:</span>
<ul>
<li>
- Eliminate shadow warnings on gcc for nested <code><span class="identifier">FOREACH</span></code>
- loops
- </li>
- <li>
- Portability fix for Intel-Win toolset
+ Workaround for conflict with Python headers (<a href="https://svn.boost.org/trac/boost/ticket/3000">#3000</a>).
</li>
</ul>
</li>
<li>
- <span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
+ <span class="library"><a href="/libs/function/index.html">Function</a>:</span>
<ul>
<li>
- Remove deprecated headers for hashing containers. Everything that was
- in them is included in <code><span class="special">&lt;</span><span class="identifier">functional</span><span class="special">/</span><span class="identifier">hash</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>
- (<a href="https://svn.boost.org/trac/boost/ticket/2412">#2412</a>).
+ Optimize the use of small target objects.
</li>
<li>
- Other minor changes, full details in the library <a href="/doc/html/hash/changes.html#hash.changes.boost_1_39_0">change
- log</a>.
+ Make Boost.Function compile under BOOST_NO_EXCEPTIONS (<a href="https://svn.boost.org/trac/boost/ticket/2499">#2499</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2494">#2494</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2469">#2469</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2466">#2466</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2900">#2900</a>)
</li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/interprocess/index.html">Interprocess</a>:</span>
- <ul>
<li>
- Increased portability and bug fixes. Full details in the library <a href="/doc/html/interprocess/acknowledgements_notes.html#interprocess.acknowledgements_notes.release_notes.release_notes_boost_1_39_00">change
- log</a>.
+ Various minor fixes (<a href="https://svn.boost.org/trac/boost/ticket/2642">#2642</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2847">#2847</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2929">#2929</a>
+ <a href="https://svn.boost.org/trac/boost/ticket/3012">#3012</a>)
</li>
</ul>
</li>
<li>
- <span class="library"><a href="/libs/intrusive/index.html">Intrusive</a>:</span>
+ <span class="library"><a href="/libs/fusion/index.html">Fusion</a>:</span>
<ul>
<li>
- Optimizations and bug fixes. Full details in the library <a href="/doc/html/intrusive/release_notes.html#intrusive.release_notes.release_notes_boost_1_39_00">change
- log</a>.
+ Improved compile times for <code><span class="identifier">fusion</span><span class="special">::</span><span class="identifier">vector</span></code>.
</li>
</ul>
</li>
<li>
- <span class="library"><a href="/libs/program_options/index.html">Program.Options</a>:</span>
+ <span class="library"><a href="/libs/hash/index.html">Hash</a>:</span>
<ul>
<li>
- Multitoken options fixed (<a href="https://svn.boost.org/trac/boost/ticket/469">#469</a>).
+ Automatically configure the float functions using template metaprogramming
+ instead of trying to configure every possibility manually.
</li>
</ul>
</li>
<li>
- <span class="library"><a href="/libs/proto/index.html">Proto</a>:</span>
+ <span class="library"><a href="/libs/interprocess/index.html">Interprocess</a>:</span>
<ul>
<li>
- Work around incompatibility with standard Linux header.
+ Windows shared memory is created in Shared Documents folder so that it
+ can be shared between services and processes
</li>
<li>
- Add <code><span class="identifier">proto</span><span class="special">::</span><span class="identifier">noinvoke</span><span class="special">&lt;&gt;</span></code>
- to block metafunction invocation in object transforms.
+ Fixed bugs <a href="https://svn.boost.org/trac/boost/ticket/2967">#2967</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2973">#2973</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2992">#2992</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3138">#3138</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3166">#3166</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3205">#3205</a>.
</li>
</ul>
</li>
<li>
- <span class="library"><a href="/libs/ptr_container/index.html">PtrContainer</a>:</span>
+ <span class="library"><a href="/libs/intrusive/index.html">Intrusive</a>:</span>
<ul>
<li>
- Bug fixes from Trac applied.
+ Code cleanup in tree_algorithms.hpp and avl_tree_algorithms.hpp
</li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/range/index.html">Range</a>:</span>
- <ul>
<li>
- Bug fixes from Trac applied.
+ Fixed bug <a href="https://svn.boost.org/trac/boost/ticket/3164">#3164</a>.
</li>
</ul>
</li>
<li>
- <span class="library"><a href="/libs/unordered/index.html">Unordered</a>:</span>
+ <span class="library"><a href="/libs/mpl/index.html">MPL</a>:</span>
<ul>
<li>
- Fixed regression in 1.38 that prevented unordered from using more than
- about 1.5 million buckets (<a href="https://svn.boost.org/trac/boost/ticket/2975">#2975</a>).
+ Added <code><span class="identifier">mpl</span><span class="special">::</span><span class="identifier">char_</span></code> and <code><span class="identifier">mpl</span><span class="special">::</span><span class="identifier">string</span></code>
+ for compile-time string manipulation, based on multichar literals (<a href="https://svn.boost.org/trac/boost/ticket/2905">#2905</a>).
</li>
<li>
- Minor implementation changes, including <a href="https://svn.boost.org/trac/boost/ticket/2756">#2756</a>.
- Full details in the library <a href="/doc/html/unordered/changes.html#unordered.changes.boost_1_39_0">change
- log</a>.
+ Updated <a href="/libs/mpl/doc/refmanual.html">MPL Reference Manual</a>.
</li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/xpressive/index.html">Xpressive</a>:</span>
- <ul>
<li>
- Work around for gcc optimization problem resulting in pure virtual function
- call runtime error (<a href="https://svn.boost.org/trac/boost/ticket/2655">#2655</a>).
+ Bug fixes.
</li>
</ul>
</li>
- </ul>
- </div>
- <div id="version_1_39_0.updated_tools">
- <h3><span class="link">Updated Tools</span></h3>
- <ul>
<li>
- <span class="library"><a href="/tools/boostbook/index.html">Boostbook</a>:</span>
+ <span class="library"><a href="/libs/program_options/index.html">Program.Options</a>:</span>
<ul>
<li>
- Improved PDF generation.
- </li>
- <li>
- Preliminary HTMLHelp support.
- </li>
- <li>
- Add default path for callout images.
+ Support for building with disabled exceptions (<a href="https://svn.boost.org/trac/boost/ticket/2096">#2096</a>).
</li>
<li>
- Include data members' <code><span class="special">&lt;</span><span class="identifier">purpose</span><span class="special">&gt;</span></code>
- in the class synopsis.
+ Unicode parser no longer drops original tokens (<a href="https://svn.boost.org/trac/boost/ticket/2425">#2425</a>).
</li>
<li>
- Fix bug where a function's <code><span class="special">&lt;</span><span class="identifier">purpose</span><span class="special">&gt;</span></code>
- wasn't displayed if it was just plain text.
+ Fixed crash on user-inserted items in <code><span class="identifier">variables_map</span></code>
+ (<a href="https://svn.boost.org/trac/boost/ticket/2782">#2782</a>).
</li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/proto/index.html">Proto</a>:</span>
+ <ul>
<li>
- Support the alt tag in <code><span class="special">&lt;</span><span class="identifier">headername</span><span class="special">&gt;</span></code>
- and <code><span class="special">&lt;</span><span class="identifier">macroname</span><span class="special">&gt;</span></code>. Use this if the header or macro
- name is different to the contents of the tag (<a href="https://svn.boost.org/trac/boost/ticket/1977">#1977</a>).
+ PrimitiveTransforms have stricter conformance to ResultOf protocol. (Warning:
+ some invalid code may break.)
</li>
<li>
- Support links relative to the boost root in <code><span class="special">&lt;</span><span class="identifier">ulink</span><span class="special">&gt;</span></code>
- tags, using a custom url, see the <a href="/doc/html/boostbook/together.html#boostbook.linking">linking
- documentation</a> for details (<a href="https://svn.boost.org/trac/boost/ticket/1166">#1166</a>).
+ Add a sensible default for <code><span class="identifier">proto</span><span class="special">::</span><span class="identifier">_default</span></code>'s
+ template parameter.
</li>
<li>
- Avoid generating filenames that only differ in case for function, method
- and macro documentation.
+ Improved default evaluation strategy for pointers to members.
</li>
<li>
- Run the docbook chunker quietly, unless boostbook.verbose is set. This
- parameter might be used in other places in future releases.
+ GCC 3.4 portability fixes (<a href="https://svn.boost.org/trac/boost/ticket/3021">#3021</a>).
</li>
<li>
- Make the 1.1 DTD available.
+ Work around Visual C++'s non-std-compliant ciso646 macros.
</li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/serialization/index.html">Serialization</a>:</span>
+ <ul>
<li>
- Fill in some missing reference documentation (partially fixes <a href="https://svn.boost.org/trac/boost/ticket/2153">#2153</a>).
+ Removed deprecated headers: <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">static_warning</span><span class="special">.</span><span class="identifier">hpp</span></code>,
+ <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">state_saver</span><span class="special">.</span><span class="identifier">hpp</span></code>, <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">smart_cast</span><span class="special">.</span><span class="identifier">hpp</span></code>,
+ <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">pfto</span><span class="special">.</span><span class="identifier">hpp</span></code>. Use the the equivalent headers
+ in the <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">serialization</span><span class="special">/</span></code>
+ directory instead (<a href="https://svn.boost.org/trac/boost/ticket/3062">#3062</a>).
</li>
<li>
- Changes to doxygen integration:
- <ul>
- <li>
- Support <code><span class="special">\</span><span class="keyword">throw</span></code>.
- </li>
- <li>
- Support global variables and enums.
- </li>
- <li>
- Better support for documentation written in function and method bodies.
- </li>
- <li>
- Workaround a problem with doxygen 1.5.8's xml output (<a href="https://svn.boost.org/trac/boost/ticket/2937">#2937</a>).
- </li>
- </ul>
+ <code><span class="identifier">detail</span><span class="special">::</span><span class="identifier">archive_serializer_map</span></code> should now be
+ used instead of <code><span class="identifier">detail</span><span class="special">::</span><span class="identifier">archive_pointer_iserializer</span></code>.
+ For more details see <a href="/doc/libs/1_40_0/libs/serialization/doc/release.html">the
+ library release notes</a>.
</li>
</ul>
</li>
<li>
- <span class="library"><a href="/tools/quickbook/index.html">Quickbook</a>:</span>
+ <span class="library"><a href="/libs/unordered/index.html">Unordered</a>:</span>
<ul>
<li>
- Return an error code and error count if there are any errors (<a href="https://svn.boost.org/trac/boost/ticket/1399">#1399</a>).
+ Implement <code><span class="identifier">emplace</span></code> for
+ all compilers, not just ones with rvalue references and variadic templates
+ (<a href="https://svn.boost.org/trac/boost/ticket/1978">#1978</a>).
</li>
<li>
- Support both windows and cygwin paths at the compile line when compiled
- with cygwin.
+ Create less buckets by default.
</li>
<li>
- Fix some issues with C++ and Python code:
- <ul>
- <li>
- Fail gracefully for a mismatched <code><span class="char">''</span></code>.
- </li>
- <li>
- Warn if any unexpected character are encountered and write them out
- properly (<a href="https://svn.boost.org/trac/boost/ticket/1170">#1170</a>).
- </li>
- <li>
- Fix a bug for hex encoded characters in strings (<a href="https://svn.boost.org/trac/boost/ticket/2860">#2860</a>).
- </li>
- </ul>
- </li>
- <li>
- Improved testing, including tests for expected failures.
+ Some minor tweaks for better compiler support (<a href="https://svn.boost.org/trac/boost/ticket/2908">#2908</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3096">#3096</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3082">#3082</a>).
</li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/xpressive/index.html">Xpressive</a>:</span>
+ <ul>
<li>
- Generate valid document info for document types other than <code><span class="identifier">library</span></code> (<a href="https://svn.boost.org/trac/boost/ticket/2711">#2711</a>):
- <ul>
- <li>
- Remove library specific attributes.
- </li>
- <li>
- Put title before info block.
- </li>
- </ul>
+ Works on Visual C++ 10.0 (<a href="https://svn.boost.org/trac/boost/ticket/3124">#3124</a>).
</li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_40_0.build_system">
+ <h3><span class="link">Build System</span></h3>
+ <p>
+ The default naming of libraries in Unix-like environment now matches system
+ conventions, and does not include various decorations. Naming of libraries
+ on Cygwin was also fixed. Support for beta versions of Microsoft Visual Studio
+ 10 was added. With gcc, 64-bit compilation no longer requires that target architecture
+ be specified.
+ </p>
+ </div>
+ <div id="version_1_40_0.updated_tools">
+ <h3><span class="link">Updated Tools</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/tools/boostbook/index.html">Boostbook</a>:</span>
+ <ul>
<li>
- Fix a bug when calling templates.
+ Hide <code><span class="identifier">INTERNAL</span> <span class="identifier">ONLY</span></code>
+ enums in doxygen documentation (<a href="https://svn.boost.org/trac/boost/ticket/3242">#3242</a>).
</li>
<li>
- Less warnings when built using gcc.
+ Tweaked appearance of member classes/structs/unions in a class synopsis.
</li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/tools/quickbook/index.html">Quickbook</a>:</span>
+ <ul>
<li>
- Small documentation improvements (<a href="https://svn.boost.org/trac/boost/ticket/1213">#1213</a>,
- <a href="https://svn.boost.org/trac/boost/ticket/2701">#2701</a>).
+ Support python code snippets (<a href="https://svn.boost.org/trac/boost/ticket/3029">#3029</a>).
</li>
<li>
- Fix a bug with xinclude pages when outdir is the current directory (<a href="https://svn.boost.org/trac/boost/ticket/2921">#2921</a>).
+ Add <code><span class="identifier">teletype</span></code> source mode
+ (<a href="https://svn.boost.org/trac/boost/ticket/1202">#1202</a>)
</li>
</ul>
</li>
</ul>
</div>
- <div id="version_1_39_0.compilers_tested">
+ <div id="version_1_40_0.compilers_tested">
<h3><span class="link">Compilers Tested</span></h3>
<p>
Boost's primary test compilers are:
@@ -336,10 +266,7 @@
Linux:
<ul>
<li>
- GCC 4.3.2 on Ubuntu Linux.
- </li>
- <li>
- GCC 4.3.3 on Debian &quot;unstable&quot;.
+ GCC 4.3.3 on Ubuntu Linux.
</li>
</ul>
</li>
@@ -360,48 +287,55 @@
Linux:
<ul>
<li>
- Intel 9.0 on Red Hat Enterprise Linux
+ Intel 9.0 on Red Hat Enterprise Linux.
</li>
<li>
- Intel 10.0 on Red Hat Enterprise Linux
+ Intel 10.0 on Red Hat Enterprise Linux.
</li>
<li>
Intel 10.1 on 64-bit Linux Redhat 5.1 Server.
</li>
<li>
- Intel 10.1 on Suse Linux on 64 bit Itanium
+ Intel 10.1 on Suse Linux on 64 bit Itanium.
+ </li>
+ <li>
+ Intel 11.0 on Red Hat Enterprise Linux.
</li>
<li>
- Intel 11.0 on Red Hat Enterprise Linux
+ Intel 11.1 on Red Hat Enterprise Linux.
</li>
<li>
- GCC 4.1.1, 4.2.1 on 64-bit Red Hat Enterprise Linux
+ GCC 3.4.3, GCC 4.0.1, GCC 4.2.4, GCC 4.3.3 and GCC 4.4.0 on Red Hat Enterprise
+ Linux.
</li>
<li>
- GCC 4.1.2 on 64-bit Redhat Server 5.1
+ GCC 4.3.3 and GCC 4.4.0 with C++0x extensions on Red Hat Enterprise Linux.
</li>
<li>
- GCC 4.1.2 on Suse Linux on 64 bit Itanium
+ GCC 4.1.1, 4.2.1 on 64-bit Red Hat Enterprise Linux.
</li>
<li>
- GCC 3.4.3, GCC 4.0.1, GCC 4.2.4 and GCC 4.3.2 on Red Hat Enterprise Linux
+ GCC 4.1.2 on Suse Linux on 64 bit Itanium.
</li>
<li>
- GCC 4.3.2 with C++0x extensions on Red Hat Enterprise Linux
+ GCC 4.1.2 on 64-bit Redhat Server 5.1.
</li>
<li>
- GCC 4.2.1 on OpenSuSE Linux
+ GCC Open64 4.2.2 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ GCC 4.3.4 on Debian unstable.
</li>
<li>
QLogic PathScale(TM) Compiler Suite: Version 3.1 on Red Hat Enterprise
- Linux
+ Linux.
</li>
<li>
- GNU gcc version 4.2.0 (PathScale 3.2 driver) on 64-bit Red Hat Enterprise
- Linux
+ GCC version 4.2.0 (PathScale 3.2 driver) on 64-bit Red Hat Enterprise
+ Linux.
</li>
<li>
- Sun 5.9 on Red Hat Enterprise Linux
+ Sun 5.9 on Red Hat Enterprise Linux.
</li>
</ul>
</li>
@@ -409,13 +343,19 @@
OS X:
<ul>
<li>
- Intel 9.1, 10.1 on Tiger
+ Intel 10.1, 11.0 on Intel Leopard.
+ </li>
+ <li>
+ Intel 10.1, 11.0 on Intel Tiger.
</li>
<li>
- Intel 10.1, 11.0 on Leopard
+ GCC 4.0.1, 4.2.1 on Intel Leopard.
</li>
<li>
- GCC 4.2.1 on Leopard
+ GCC 4.0.1 on Intel Tiger.
+ </li>
+ <li>
+ GCC 4.0.1 on PowerPC Tiger.
</li>
</ul>
</li>
@@ -423,42 +363,45 @@
Windows:
<ul>
<li>
+ Visual C++ 7.1 on XP.
+ </li>
+ <li>
+ Visual C++ 9.0 on XP.
+ </li>
+ <li>
Visual C++ 9.0 on Vista.
</li>
<li>
+ Visual C++ 9.0 on Vista 64-bit.
+ </li>
+ <li>
Visual C++ 9.0, using STLport 5.2, on XP and Windows Mobile 5.0.
</li>
<li>
- Borland 5.9.3
+ Visual C++ 10.0 beta.
</li>
<li>
- Borland 6.1.0
+ Borland 5.9.3, 6.1.0, 6.1.3.
</li>
<li>
- Intel C++ 11.0, with a Visual C++ 9.0 backend, on XP 32-bit.
+ Borland C++ Builder 2007 and 2009.
</li>
<li>
- Intel C++ 11.0, with a Visual C++ 9.0 backend, on Vista 64-bit. (TODO:
- not recently)
+ Intel C++ 11.1, with a Visual C++ 9.0 backend, on Vista 32-bit.
</li>
<li>
- GCC 4.3.3, on Mingw
+ Intel C++ 11.1, with a Visual C++ 9.0 backend, on Vista 64-bit.
</li>
- </ul>
- </li>
- <li>
- AIX:
- <ul>
<li>
- IBM XL C/C++ Enterprise Edition for AIX, V10.1.0.0, on AIX Version 5.3.0.40
+ GCC 4.3.3 and 4.4.0, on Mingw with C++0x features.
</li>
</ul>
</li>
<li>
- NetBSD:
+ AIX:
<ul>
<li>
- GCC 4.1.2 on NetBSD 4.0/i386 and NetBSD 4.0/amd64.
+ IBM XL C/C++ Enterprise Edition for AIX, V10.1.0.0, on AIX Version 5.3.0.40.
</li>
</ul>
</li>
@@ -466,16 +409,16 @@
Solaris:
<ul>
<li>
- Sun C++ 5.7, 5.8, 5.9 on Solaris 5.10
+ Sun C++ 5.7, 5.8, 5.9 on Solaris 5.10.
</li>
<li>
- GCC 3.4.6 on Solaris 5.10
+ GCC 3.4.6 on Solaris 5.10.
</li>
</ul>
</li>
</ul>
</div>
- <div id="version_1_39_0.acknowledgements">
+ <div id="version_1_40_0.acknowledgements">
<h3><span class="link">Acknowledgements</span></h3>
<p>
<a href="/users/people/beman_dawes.html">Beman Dawes</a>, Eric Niebler,
Modified: website/public_html/live/feed/history.rss
Modified: website/public_html/live/feed/history/boost_1_21_1.qbk
Modified: website/public_html/live/feed/history/boost_1_21_2.qbk
Modified: website/public_html/live/feed/history/boost_1_22_0.qbk
Modified: website/public_html/live/feed/history/boost_1_23_0.qbk
Modified: website/public_html/live/feed/history/boost_1_24_0.qbk
Modified: website/public_html/live/feed/history/boost_1_25_0.qbk
Modified: website/public_html/live/feed/history/boost_1_25_1.qbk
Modified: website/public_html/live/feed/history/boost_1_26_0.qbk
Modified: website/public_html/live/feed/history/boost_1_27_0.qbk
Modified: website/public_html/live/feed/history/boost_1_28_0.qbk
Modified: website/public_html/live/feed/history/boost_1_29_0.qbk
Modified: website/public_html/live/feed/history/boost_1_30_0.qbk
Modified: website/public_html/live/feed/history/boost_1_30_2.qbk
Modified: website/public_html/live/feed/history/boost_1_31_0.qbk
Modified: website/public_html/live/feed/history/boost_1_32_0.qbk
Modified: website/public_html/live/feed/history/boost_1_33_0.qbk
Modified: website/public_html/live/feed/history/boost_1_33_1.qbk
Modified: website/public_html/live/feed/history/boost_1_34_0.qbk
Modified: website/public_html/live/feed/history/boost_1_34_1.qbk
Modified: website/public_html/live/feed/history/boost_1_35_0.qbk
Modified: website/public_html/live/feed/history/boost_1_36_0.qbk
Modified: website/public_html/live/feed/history/boost_1_37_0.qbk
Modified: website/public_html/live/feed/history/boost_1_38_0.qbk
Modified: website/public_html/live/feed/history/boost_1_39_0.qbk
Modified: website/public_html/live/feed/news.rss
Modified: website/public_html/live/feed/templates/boost_x_xx_x.qbk
Modified: website/public_html/live/style/css_0/content.css
Modified: website/public_html/live/users/download/entry.php
Modified: website/public_html/live/users/download/index.php
Modified: website/public_html/live/users/history/entry.php
Modified: website/public_html/live/users/news/entry.php
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
==============================================================================
--- website/public_html/live/feed/history.rss (original)
+++ website/public_html/live/feed/history.rss 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<rss version="2.0" xmlns:boostbook="urn:boost.org:boostbook">
+<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:boostbook="urn:boost.org:boostbook">
<channel>
<generator>BoostBook2RSS</generator>
<title>Boost History</title>
@@ -7,11 +6,487 @@
<description/>
<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.39.0</title><pubDate>Sat, 02 May 2009 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
+ <item><title>Version 1.40.0</title><pubDate>$Date$</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
+ Build System improvements. Updated Libraries: Accumulators, Asio, Circular
+ Buffer, Foreach, Function, Fusion, Hash, Interprocess, Intrusive, MPL, Program.Options,
+ Proto, Serialization, Unordered, Xpressive.
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.40.0.beta.1/><description><div class="description">
+
+
+
+ <div id="version_1_40_0.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/accumulators/index.html">Accumulators</a>:</span>
+ <ul>
+ <li>
+ Works on GCC 4.4.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/asio/index.html">Asio</a>:</span>
+ <ul>
+ <li>
+ Added a new ping example to illustrate the use of ICMP sockets.
+ </li>
+ <li>
+ Changed the <code><span class="identifier">buffered</span><span class="special">*</span><span class="identifier">_stream</span><span class="special">&lt;&gt;</span></code> templates to treat 0-byte reads
+ and writes as no-ops, to comply with the documented type requirements
+ for <code><span class="identifier">SyncReadStream</span></code>,
+ <code><span class="identifier">AsyncReadStream</span></code>, <code><span class="identifier">SyncWriteStream</span></code> and <code><span class="identifier">AsyncWriteStream</span></code>.
+ </li>
+ <li>
+ Changed some instances of the <code><span class="keyword">throw</span></code>
+ keyword to <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">throw_exception</span><span class="special">()</span></code>
+ to allow Asio to be used when exception support is disabled. Note that
+ the SSL wrappers still require exception support (<a href="https://svn.boost.org/trac/boost/ticket/2754">#2754</a>).
+ </li>
+ <li>
+ Made Asio compatible with the OpenSSL 1.0 beta (<a href="https://svn.boost.org/trac/boost/ticket/3256">#3256</a>).
+ </li>
+ <li>
+ Eliminated a redundant system call in the Solaris <tt>/dev/poll</tt>
+ backend.
+ </li>
+ <li>
+ Fixed a bug in resizing of the bucket array in the internal hash maps
+ (<a href="https://svn.boost.org/trac/boost/ticket/3095">#3095</a>).
+ </li>
+ <li>
+ Ensured correct propagation of the error code when a synchronous accept
+ fails (<a href="https://svn.boost.org/trac/boost/ticket/3216">#3216</a>).
+ </li>
+ <li>
+ Ensured correct propagation of the error code when a synchronous read
+ or write on a Windows HANDLE fails.
+ </li>
+ <li>
+ Fixed failures reported when <code><span class="identifier">_GLIBCXX_DEBUG</span></code>
+ is defined (<a href="https://svn.boost.org/trac/boost/ticket/3098">#3098</a>).
+ </li>
+ <li>
+ Fixed custom memory allocation support for timers (<a href="https://svn.boost.org/trac/boost/ticket/3107">#3107</a>).
+ </li>
+ <li>
+ Tidied up various warnings reported by g++ (<a href="https://svn.boost.org/trac/boost/ticket/1341">#1341</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2618">#2618</a>).
+ </li>
+ <li>
+ Various documentation improvements, including more obvious hyperlinks
+ to function overloads, header file information, examples for the handler
+ type requirements, and adding enum values to the index (<a href="https://svn.boost.org/trac/boost/ticket/3157">#3157</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2620">#2620</a>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/circular_buffer/index.html">Circular Buffer</a>:</span>
+ <ul>
+ <li>
+ Fixed bugs <a href="https://svn.boost.org/trac/boost/ticket/2785">#2785</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3285">#3285</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/foreach/index.html">Foreach</a>:</span>
+ <ul>
+ <li>
+ Workaround for conflict with Python headers (<a href="https://svn.boost.org/trac/boost/ticket/3000">#3000</a>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function/index.html">Function</a>:</span>
+ <ul>
+ <li>
+ Optimize the use of small target objects.
+ </li>
+ <li>
+ Make Boost.Function compile under BOOST_NO_EXCEPTIONS (<a href="https://svn.boost.org/trac/boost/ticket/2499">#2499</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2494">#2494</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2469">#2469</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2466">#2466</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2900">#2900</a>)
+ </li>
+ <li>
+ Various minor fixes (<a href="https://svn.boost.org/trac/boost/ticket/2642">#2642</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2847">#2847</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2929">#2929</a>
+ <a href="https://svn.boost.org/trac/boost/ticket/3012">#3012</a>)
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/fusion/index.html">Fusion</a>:</span>
+ <ul>
+ <li>
+ Improved compile times for <code><span class="identifier">fusion</span><span class="special">::</span><span class="identifier">vector</span></code>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/hash/index.html">Hash</a>:</span>
+ <ul>
+ <li>
+ Automatically configure the float functions using template metaprogramming
+ instead of trying to configure every possibility manually.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/interprocess/index.html">Interprocess</a>:</span>
+ <ul>
+ <li>
+ Windows shared memory is created in Shared Documents folder so that it
+ can be shared between services and processes
+ </li>
+ <li>
+ Fixed bugs <a href="https://svn.boost.org/trac/boost/ticket/2967">#2967</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2973">#2973</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2992">#2992</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3138">#3138</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3166">#3166</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3205">#3205</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/intrusive/index.html">Intrusive</a>:</span>
+ <ul>
+ <li>
+ Code cleanup in tree_algorithms.hpp and avl_tree_algorithms.hpp
+ </li>
+ <li>
+ Fixed bug <a href="https://svn.boost.org/trac/boost/ticket/3164">#3164</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/mpl/index.html">MPL</a>:</span>
+ <ul>
+ <li>
+ Added <code><span class="identifier">mpl</span><span class="special">::</span><span class="identifier">char_</span></code> and <code><span class="identifier">mpl</span><span class="special">::</span><span class="identifier">string</span></code>
+ for compile-time string manipulation, based on multichar literals (<a href="https://svn.boost.org/trac/boost/ticket/2905">#2905</a>).
+ </li>
+ <li>
+ Updated <a href="/libs/mpl/doc/refmanual.html">MPL Reference Manual</a>.
+ </li>
+ <li>
+ Bug fixes.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/program_options/index.html">Program.Options</a>:</span>
+ <ul>
+ <li>
+ Support for building with disabled exceptions (<a href="https://svn.boost.org/trac/boost/ticket/2096">#2096</a>).
+ </li>
+ <li>
+ Unicode parser no longer drops original tokens (<a href="https://svn.boost.org/trac/boost/ticket/2425">#2425</a>).
+ </li>
+ <li>
+ Fixed crash on user-inserted items in <code><span class="identifier">variables_map</span></code>
+ (<a href="https://svn.boost.org/trac/boost/ticket/2782">#2782</a>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/proto/index.html">Proto</a>:</span>
+ <ul>
+ <li>
+ PrimitiveTransforms have stricter conformance to ResultOf protocol. (Warning:
+ some invalid code may break.)
+ </li>
+ <li>
+ Add a sensible default for <code><span class="identifier">proto</span><span class="special">::</span><span class="identifier">_default</span></code>'s
+ template parameter.
+ </li>
+ <li>
+ Improved default evaluation strategy for pointers to members.
+ </li>
+ <li>
+ GCC 3.4 portability fixes (<a href="https://svn.boost.org/trac/boost/ticket/3021">#3021</a>).
+ </li>
+ <li>
+ Work around Visual C++'s non-std-compliant ciso646 macros.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/serialization/index.html">Serialization</a>:</span>
+ <ul>
+ <li>
+ Removed deprecated headers: <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">static_warning</span><span class="special">.</span><span class="identifier">hpp</span></code>,
+ <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">state_saver</span><span class="special">.</span><span class="identifier">hpp</span></code>, <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">smart_cast</span><span class="special">.</span><span class="identifier">hpp</span></code>,
+ <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">pfto</span><span class="special">.</span><span class="identifier">hpp</span></code>. Use the the equivalent headers
+ in the <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">serialization</span><span class="special">/</span></code>
+ directory instead (<a href="https://svn.boost.org/trac/boost/ticket/3062">#3062</a>).
+ </li>
+ <li>
+ <code><span class="identifier">detail</span><span class="special">::</span><span class="identifier">archive_serializer_map</span></code> should now be
+ used instead of <code><span class="identifier">detail</span><span class="special">::</span><span class="identifier">archive_pointer_iserializer</span></code>.
+ For more details see <a href="/doc/libs/1_40_0/libs/serialization/doc/release.html">the
+ library release notes</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/unordered/index.html">Unordered</a>:</span>
+ <ul>
+ <li>
+ Implement <code><span class="identifier">emplace</span></code> for
+ all compilers, not just ones with rvalue references and variadic templates
+ (<a href="https://svn.boost.org/trac/boost/ticket/1978">#1978</a>).
+ </li>
+ <li>
+ Create less buckets by default.
+ </li>
+ <li>
+ Some minor tweaks for better compiler support (<a href="https://svn.boost.org/trac/boost/ticket/2908">#2908</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3096">#3096</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3082">#3082</a>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/xpressive/index.html">Xpressive</a>:</span>
+ <ul>
+ <li>
+ Works on Visual C++ 10.0 (<a href="https://svn.boost.org/trac/boost/ticket/3124">#3124</a>).
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_40_0.build_system">
+ <h3><span class="link">Build System</span></h3>
+ <p>
+ The default naming of libraries in Unix-like environment now matches system
+ conventions, and does not include various decorations. Naming of libraries
+ on Cygwin was also fixed. Support for beta versions of Microsoft Visual Studio
+ 10 was added. With gcc, 64-bit compilation no longer requires that target architecture
+ be specified.
+ </p>
+ </div>
+ <div id="version_1_40_0.updated_tools">
+ <h3><span class="link">Updated Tools</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/tools/boostbook/index.html">Boostbook</a>:</span>
+ <ul>
+ <li>
+ Hide <code><span class="identifier">INTERNAL</span> <span class="identifier">ONLY</span></code>
+ enums in doxygen documentation (<a href="https://svn.boost.org/trac/boost/ticket/3242">#3242</a>).
+ </li>
+ <li>
+ Tweaked appearance of member classes/structs/unions in a class synopsis.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/tools/quickbook/index.html">Quickbook</a>:</span>
+ <ul>
+ <li>
+ Support python code snippets (<a href="https://svn.boost.org/trac/boost/ticket/3029">#3029</a>).
+ </li>
+ <li>
+ Add <code><span class="identifier">teletype</span></code> source mode
+ (<a href="https://svn.boost.org/trac/boost/ticket/1202">#1202</a>)
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_40_0.compilers_tested">
+ <h3><span class="link">Compilers Tested</span></h3>
+ <p>
+ Boost's primary test compilers are:
+ </p>
+ <ul>
+ <li>
+ OS X:
+ <ul>
+ <li>
+ GCC 4.0.1 on Intel Tiger and Leopard
+ </li>
+ <li>
+ GCC 4.0.1 on PowerPC Tiger
+ </li>
+ </ul>
+ </li>
+ <li>
+ Linux:
+ <ul>
+ <li>
+ GCC 4.3.3 on Ubuntu Linux.
+ </li>
+ </ul>
+ </li>
+ <li>
+ Windows:
+ <ul>
+ <li>
+ Visual C++ 7.1 SP1, 8.0 SP1 and 9.0 SP1 on Windows XP.
+ </li>
+ </ul>
+ </li>
+ </ul>
+ <p>
+ Boost's additional test compilers include:
+ </p>
+ <ul>
+ <li>
+ Linux:
+ <ul>
+ <li>
+ Intel 9.0 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ Intel 10.0 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ Intel 10.1 on 64-bit Linux Redhat 5.1 Server.
+ </li>
+ <li>
+ Intel 10.1 on Suse Linux on 64 bit Itanium.
+ </li>
+ <li>
+ Intel 11.0 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ Intel 11.1 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ GCC 3.4.3, GCC 4.0.1, GCC 4.2.4, GCC 4.3.3 and GCC 4.4.0 on Red Hat Enterprise
+ Linux.
+ </li>
+ <li>
+ GCC 4.3.3 and GCC 4.4.0 with C++0x extensions on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ GCC 4.1.1, 4.2.1 on 64-bit Red Hat Enterprise Linux.
+ </li>
+ <li>
+ GCC 4.1.2 on Suse Linux on 64 bit Itanium.
+ </li>
+ <li>
+ GCC 4.1.2 on 64-bit Redhat Server 5.1.
+ </li>
+ <li>
+ GCC Open64 4.2.2 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ GCC 4.3.4 on Debian unstable.
+ </li>
+ <li>
+ QLogic PathScale(TM) Compiler Suite: Version 3.1 on Red Hat Enterprise
+ Linux.
+ </li>
+ <li>
+ GCC version 4.2.0 (PathScale 3.2 driver) on 64-bit Red Hat Enterprise
+ Linux.
+ </li>
+ <li>
+ Sun 5.9 on Red Hat Enterprise Linux.
+ </li>
+ </ul>
+ </li>
+ <li>
+ OS X:
+ <ul>
+ <li>
+ Intel 10.1, 11.0 on Intel Leopard.
+ </li>
+ <li>
+ Intel 10.1, 11.0 on Intel Tiger.
+ </li>
+ <li>
+ GCC 4.0.1, 4.2.1 on Intel Leopard.
+ </li>
+ <li>
+ GCC 4.0.1 on Intel Tiger.
+ </li>
+ <li>
+ GCC 4.0.1 on PowerPC Tiger.
+ </li>
+ </ul>
+ </li>
+ <li>
+ Windows:
+ <ul>
+ <li>
+ Visual C++ 7.1 on XP.
+ </li>
+ <li>
+ Visual C++ 9.0 on XP.
+ </li>
+ <li>
+ Visual C++ 9.0 on Vista.
+ </li>
+ <li>
+ Visual C++ 9.0 on Vista 64-bit.
+ </li>
+ <li>
+ Visual C++ 9.0, using STLport 5.2, on XP and Windows Mobile 5.0.
+ </li>
+ <li>
+ Visual C++ 10.0 beta.
+ </li>
+ <li>
+ Borland 5.9.3, 6.1.0, 6.1.3.
+ </li>
+ <li>
+ Borland C++ Builder 2007 and 2009.
+ </li>
+ <li>
+ Intel C++ 11.1, with a Visual C++ 9.0 backend, on Vista 32-bit.
+ </li>
+ <li>
+ Intel C++ 11.1, with a Visual C++ 9.0 backend, on Vista 64-bit.
+ </li>
+ <li>
+ GCC 4.3.3 and 4.4.0, on Mingw with C++0x features.
+ </li>
+ </ul>
+ </li>
+ <li>
+ AIX:
+ <ul>
+ <li>
+ IBM XL C/C++ Enterprise Edition for AIX, V10.1.0.0, on AIX Version 5.3.0.40.
+ </li>
+ </ul>
+ </li>
+ <li>
+ Solaris:
+ <ul>
+ <li>
+ Sun C++ 5.7, 5.8, 5.9 on Solaris 5.10.
+ </li>
+ <li>
+ GCC 3.4.6 on Solaris 5.10.
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_40_0.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <a href="/users/people/beman_dawes.html">Beman Dawes</a>, Eric Niebler,
+ <a href="/users/people/rene_rivera.html">Rene Rivera</a>, and Daniel
+ James managed this release.
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.39.0</title><pubDate>Sat, 02 May 2009 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Signals2. Updated Libraries: Asio, Flyweight, Foreach, Hash,
Interprocess, Intrusive, Program.Options, Proto, PtrContainer, Range, Unordered,
Xpressive. Updated Tools: Boostbook, Quickbook.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=679861><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.39.0/><description><div class="description">
@@ -489,7 +964,7 @@
Intrusive, Lexical Cast, Math, Multi-index Containers, Proto, Regex, Thread,
TR1, Type Traits, Unordered, Xpressive. Other Changes: Experimental CMake build
system.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=659602><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.38.0/><description><div class="description">
@@ -1073,7 +1548,7 @@
</div></description></item><item><title>Version 1.37.0</title><pubDate>Mon, 03 Nov 2008 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Library: Proto. Updated Libraries: Asio, Circular Buffer, Dynamic Bitset,
Exception, Hash, Interprocess, Intrusive, Math, Type Traits, Unordered
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=637761><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.37.0/><description><div class="description">
@@ -1362,7 +1837,7 @@
New Libraries: Accumulators, Exception, Units, Unordered. Updated Libraries:
Asio, Assign, Circular Buffer, Foreach, Function, Hash, Interprocess, Intrusive,
Math, Multi-index Containers, MPI, PtrContainer, Spirit, Thread, Wave, Xpressive.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=619445><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.36.0/><description><div class="description">
@@ -1766,7 +2241,7 @@
Intrusive, Math/Special Functions, Math/Statistical Distributions, MPI, System.
Updated Libraries: Graph, Hash, Iostreams, Multi Array, Multi-index Containers,
Serialization, Thread, Wave, Xpressive.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=587936><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.35.0/><description><div class="description">
@@ -2148,7 +2623,7 @@
</div>
</div></description></item><item><title>Version 1.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Bugfix Release.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.34.1/><description><div class="description">
@@ -2239,7 +2714,7 @@
Assign, Date_time, Filesystem, Function, Hash, Graph, MultiArray, Multi-Index,
Optional, Parameter, Pointer Container, Python, Signals, Smart Pointer, String
Algorithm, Wave
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=507975><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.34.0/><description><div class="description">
@@ -2719,7 +3194,7 @@
</div></description></item><item><title>Version 1.33.1</title><pubDate>Tue, 5 Dec 2006 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Any, Config, Python, Smart Pointer, Regex, Iostreams, Functional/Hash,
Multi-index Containers, Graph, Signals, Thread, and Wave.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=376197><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.33.1/><description><div class="description">
@@ -2921,7 +3396,7 @@
New Libraries: Iostream, Hash, Parameter, Pointer Container, Wave. Updated
Libraries: Any, Assignment, Bind, Date-Time, Graph, Multi-Index, Program Options,
Property Map, Python, Random Number, Range, Regex, Serialization, Signals.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=348655><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.33.0/><description><div class="description">
@@ -3259,7 +3734,7 @@
New Libraries: Assignment, Minmax, Multi-Index, Numeric Conversion, Program
Options, Range, Serialization, String, Tribool. Updated Libraries: Graph, MPL,
Python, Signals, Utility, Test. Removed Libraries: Compose.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=284047><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.32.0/><description><div class="description">
@@ -3484,7 +3959,7 @@
New Libraries: enable_if, Variant. Updated Libraries: Date Time, Filesystem,
Iterator, MultiArray, Python, Random Number, Regex, Spirit, Test. Deprecated
Libraries: Compose.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=214915><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.31.0/><description><div class="description">
@@ -3670,7 +4145,7 @@
</div>
</div></description></item><item><title>Version 1.30.2</title><pubDate>Tue, 19 Aug 2003 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Bugfix release
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=178835><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.30.2/><description><div class="description">
@@ -3766,7 +4241,7 @@
</div></description></item><item><title>Version 1.30.0</title><pubDate>Wed, 19 Mar 2003 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Filesystem, Optional, Interval, MPL, Spirit Updated Libraries:
Smart Pointers, Utility, Date-Time, Function, Operators, Test
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=147682><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.30.0/><description><div class="description">
@@ -3864,7 +4339,7 @@
</div></description></item><item><title>Version 1.29.0</title><pubDate>Thu, 10 Oct 2002 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Date-Time, Dynamic Bitset, Format. Updated Libraries: Function,
Multi-Array, Preprocessor, Python, Signals, uBLASH.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=137397><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.29.0/><description><div class="description">
@@ -3925,7 +4400,7 @@
</div></description></item><item><title>Version 1.28.0</title><pubDate>Wed, 15 May 2002 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Lambda, I/O State Saver. Updated Libraries: Configuration, Random
Number, Smart Pointers, Function Utility.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=123324><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.28.0/><description><div class="description">
@@ -3977,7 +4452,7 @@
</div></description></item><item><title>Version 1.27.0</title><pubDate>Tue, 5 Feb 2002 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Python, Integer, Function, Quaternions, Octonions, Smart
Pointers, Preprocessor, Threads.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=77358><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.27.0/><description><div class="description">
@@ -4035,7 +4510,7 @@
</div></description></item><item><title>Version 1.26.0</title><pubDate>Fri, 30 Nov 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Common Factor, Preprocessor. Updated Libraries: Iterator Adaptor,
Random Number, Operators.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138095><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.26.0/><description><div class="description">
@@ -4076,7 +4551,7 @@
</ul>
</div></description></item><item><title>Version 1.25.1</title><pubDate>Mon, 5 Nov 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Graph, Thread, Function.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138097><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.25.1/><description><div class="description">
@@ -4117,7 +4592,7 @@
</div></description></item><item><title>Version 1.25.0</title><pubDate>Mon, 1 Oct 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Thread, Bind. Updated Libraries: Utility, Array, Config, Random
Number, Math, Tokenizer.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138098><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.25.0/><description><div class="description">
@@ -4168,7 +4643,7 @@
</ul>
</div></description></item><item><title>Version 1.24.0</title><pubDate>Sun, 19 Aug 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Library: Tuple.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138099><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.24.0/><description><div class="description">
@@ -4195,7 +4670,7 @@
</div></description></item><item><title>Version 1.23.0</title><pubDate>Fri, 6 Jul 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Any, Function, Tokenizer, Special functions, Octonions, Quaternions.
Updated Library: Smart Pointer.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138102><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.23.0/><description><div class="description">
@@ -4231,7 +4706,7 @@
</ul>
</div></description></item><item><title>Version 1.22.0</title><pubDate>Fri, 25 May 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libary: CRC. Updated Libraries: Graph, Integer, Regex, Smart Pointer, Utility.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138104><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.22.0/><description><div class="description">
@@ -4264,7 +4739,7 @@
</ul>
</div></description></item><item><title>Version 1.21.2</title><pubDate>Tue, 24 Apr 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Compatibility. Updated Libraries: Random Number, Integer, Graph.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138108><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.21.2/><description><div class="description">
@@ -4304,7 +4779,7 @@
</ul>
</div></description></item><item><title>Version 1.21.1</title><pubDate>Wed, 14 Mar 2001 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Updated Libraries: Graph, Python, Regex.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138111><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.21.1/><description><div class="description">
==============================================================================
--- website/public_html/live/feed/history/boost_1_21_1.qbk (original)
+++ website/public_html/live/feed/history/boost_1_21_1.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -9,7 +9,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138111]
+[download http://sourceforge.net/projects/boost/files/boost/1.21.1/]
* New download page. The .zip and .tar.gz files now live on the SourceForge ftp
site.
==============================================================================
--- website/public_html/live/feed/history/boost_1_21_2.qbk (original)
+++ website/public_html/live/feed/history/boost_1_21_2.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -11,7 +11,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138108]
+[download http://sourceforge.net/projects/boost/files/boost/1.21.2/]
* [phrase library..[@/libs/compatibility/index.html Compatibility Library]]
added: Help for non-conforming standard libraries missing CXX headers from
==============================================================================
--- website/public_html/live/feed/history/boost_1_22_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_22_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -11,7 +11,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138104]
+[download http://sourceforge.net/projects/boost/files/boost/1.22.0/]
* [phrase library..[@/libs/crc/index.html CRC Library]] added. Compute cyclic
redundancy codes from Daryle Walker.
==============================================================================
--- website/public_html/live/feed/history/boost_1_23_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_23_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -11,7 +11,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138102]
+[download http://sourceforge.net/projects/boost/files/boost/1.23.0/]
* [phrase library..[@/libs/any/index.html Any Library]] added. Safe, generic
container for single values of different value types, from Kevlin Henney.
==============================================================================
--- website/public_html/live/feed/history/boost_1_24_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_24_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -9,7 +9,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138099]
+[download http://sourceforge.net/projects/boost/files/boost/1.24.0/]
* [phrase library..[@/libs/tuple/doc/tuple_users_guide.html Tuple Library]]
added. Tuples ease definition of functions returning multiple values, and
==============================================================================
--- website/public_html/live/feed/history/boost_1_25_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_25_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -11,7 +11,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138098]
+[download http://sourceforge.net/projects/boost/files/boost/1.25.0/]
* [phrase library..[@/libs/thread/doc/index.html Thread Library]] added.
Portable C++ multi-programming at last, from William Kempf.
==============================================================================
--- website/public_html/live/feed/history/boost_1_25_1.qbk (original)
+++ website/public_html/live/feed/history/boost_1_25_1.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -9,7 +9,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138097]
+[download http://sourceforge.net/projects/boost/files/boost/1.25.1/]
* [phrase library..[@/tools/build/index.html Boost Build System]:] Continued improvements.
* [phrase library..[@/libs/config/config.htm Config Library]:] Continued refinements.
==============================================================================
--- website/public_html/live/feed/history/boost_1_26_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_26_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -11,7 +11,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=138095]
+[download http://sourceforge.net/projects/boost/files/boost/1.26.0/]
* [phrase library..[@/libs/math/doc/common_factor.html Common Factor Library]]
added. Greatest common divisor and least common multiple, from Daryle Walker.
==============================================================================
--- website/public_html/live/feed/history/boost_1_27_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_27_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -9,7 +9,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=77358]
+[download http://sourceforge.net/projects/boost/files/boost/1.27.0/]
* [phrase library..[@/libs/python/doc/index.html Python Library]:] Scott Snyder
contributed inplace operator support.
==============================================================================
--- website/public_html/live/feed/history/boost_1_28_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_28_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -11,7 +11,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=123324]
+[download http://sourceforge.net/projects/boost/files/boost/1.28.0/]
* The Boost mailing lists are now also accessible as
[@/more/mailing_lists.htm#newsgroup newsgroups].
==============================================================================
--- website/public_html/live/feed/history/boost_1_29_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_29_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -11,7 +11,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=137397]
+[download http://sourceforge.net/projects/boost/files/boost/1.29.0/]
* [phrase library..[@/libs/date_time/doc/index.html Date-Time Library]] added -
Dates, times, leap seconds, infinity, and more, from Jeff Garland.
==============================================================================
--- website/public_html/live/feed/history/boost_1_30_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_30_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -12,7 +12,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=147682]
+[download http://sourceforge.net/projects/boost/files/boost/1.30.0/]
* [phrase library..[@/libs/filesystem/doc/index.htm Filesystem Library]] added
- Portable paths, iteration over directories, and other useful filesystem
==============================================================================
--- website/public_html/live/feed/history/boost_1_30_2.qbk (original)
+++ website/public_html/live/feed/history/boost_1_30_2.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -8,7 +8,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=178835]
+[download http://sourceforge.net/projects/boost/files/boost/1.30.2/]
* [@http://www.boost-consulting.com Boost Consulting] is now hosting Boost CVS
mirrors - see our [@/more/getting_started.html#CVS download page].
==============================================================================
--- website/public_html/live/feed/history/boost_1_31_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_31_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -14,7 +14,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=214915]
+[download http://sourceforge.net/projects/boost/files/boost/1.31.0/]
[section New License]
==============================================================================
--- website/public_html/live/feed/history/boost_1_32_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_32_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -15,7 +15,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=284047]
+[download http://sourceforge.net/projects/boost/files/boost/1.32.0/]
[section Important - New Toolset Names]
==============================================================================
--- website/public_html/live/feed/history/boost_1_33_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_33_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -14,7 +14,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=348655]
+[download http://sourceforge.net/projects/boost/files/boost/1.33.0/]
[section New Libraries]
==============================================================================
--- website/public_html/live/feed/history/boost_1_33_1.qbk (original)
+++ website/public_html/live/feed/history/boost_1_33_1.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -8,7 +8,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=376197]
+[download http://sourceforge.net/projects/boost/files/boost/1.33.1/]
[section Updated Libraries]
==============================================================================
--- website/public_html/live/feed/history/boost_1_34_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_34_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -13,7 +13,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=507975]
+[download http://sourceforge.net/projects/boost/files/boost/1.34.0/]
[section New Libraries]
==============================================================================
--- website/public_html/live/feed/history/boost_1_34_1.qbk (original)
+++ website/public_html/live/feed/history/boost_1_34_1.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -8,7 +8,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428]
+[download http://sourceforge.net/projects/boost/files/boost/1.34.1/]
This is a bug fix release addressing many problems with the 1.34.0 release. It
is a recommended upgrade for all users of Boost 1.34.0. For a complete list of
==============================================================================
--- website/public_html/live/feed/history/boost_1_35_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_35_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -12,7 +12,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=587936]
+[download http://sourceforge.net/projects/boost/files/boost/1.35.0/]
[section New Libraries]
==============================================================================
--- website/public_html/live/feed/history/boost_1_36_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_36_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -11,7 +11,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=619445]
+[download http://sourceforge.net/projects/boost/files/boost/1.36.0/]
[section New Libraries]
==============================================================================
--- website/public_html/live/feed/history/boost_1_37_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_37_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -10,7 +10,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=637761]
+[download http://sourceforge.net/projects/boost/files/boost/1.37.0/]
[section New Libraries]
==============================================================================
--- website/public_html/live/feed/history/boost_1_38_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_38_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -13,7 +13,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=659602]
+[download http://sourceforge.net/projects/boost/files/boost/1.38.0/]
[section New Libraries]
==============================================================================
--- website/public_html/live/feed/history/boost_1_39_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_39_0.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -12,7 +12,7 @@
[include ext.qbk]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=679861]
+[download http://sourceforge.net/projects/boost/files/boost/1.39.0/]
[section New Libraries]
==============================================================================
--- website/public_html/live/feed/news.rss (original)
+++ website/public_html/live/feed/news.rss 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<rss version="2.0" xmlns:boostbook="urn:boost.org:boostbook">
+<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:boostbook="urn:boost.org:boostbook">
<channel>
<generator>BoostBook2RSS</generator>
<title>Boost News</title>
@@ -7,11 +6,487 @@
<description/>
<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.39.0</title><pubDate>Sat, 02 May 2009 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
+ <item><title>Version 1.40.0</title><pubDate>$Date$</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
+ Build System improvements. Updated Libraries: Accumulators, Asio, Circular
+ Buffer, Foreach, Function, Fusion, Hash, Interprocess, Intrusive, MPL, Program.Options,
+ Proto, Serialization, Unordered, Xpressive.
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.40.0.beta.1/><description><div class="description">
+
+
+
+ <div id="version_1_40_0.updated_libraries">
+ <h3><span class="link">Updated Libraries</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/libs/accumulators/index.html">Accumulators</a>:</span>
+ <ul>
+ <li>
+ Works on GCC 4.4.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/asio/index.html">Asio</a>:</span>
+ <ul>
+ <li>
+ Added a new ping example to illustrate the use of ICMP sockets.
+ </li>
+ <li>
+ Changed the <code><span class="identifier">buffered</span><span class="special">*</span><span class="identifier">_stream</span><span class="special">&lt;&gt;</span></code> templates to treat 0-byte reads
+ and writes as no-ops, to comply with the documented type requirements
+ for <code><span class="identifier">SyncReadStream</span></code>,
+ <code><span class="identifier">AsyncReadStream</span></code>, <code><span class="identifier">SyncWriteStream</span></code> and <code><span class="identifier">AsyncWriteStream</span></code>.
+ </li>
+ <li>
+ Changed some instances of the <code><span class="keyword">throw</span></code>
+ keyword to <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">throw_exception</span><span class="special">()</span></code>
+ to allow Asio to be used when exception support is disabled. Note that
+ the SSL wrappers still require exception support (<a href="https://svn.boost.org/trac/boost/ticket/2754">#2754</a>).
+ </li>
+ <li>
+ Made Asio compatible with the OpenSSL 1.0 beta (<a href="https://svn.boost.org/trac/boost/ticket/3256">#3256</a>).
+ </li>
+ <li>
+ Eliminated a redundant system call in the Solaris <tt>/dev/poll</tt>
+ backend.
+ </li>
+ <li>
+ Fixed a bug in resizing of the bucket array in the internal hash maps
+ (<a href="https://svn.boost.org/trac/boost/ticket/3095">#3095</a>).
+ </li>
+ <li>
+ Ensured correct propagation of the error code when a synchronous accept
+ fails (<a href="https://svn.boost.org/trac/boost/ticket/3216">#3216</a>).
+ </li>
+ <li>
+ Ensured correct propagation of the error code when a synchronous read
+ or write on a Windows HANDLE fails.
+ </li>
+ <li>
+ Fixed failures reported when <code><span class="identifier">_GLIBCXX_DEBUG</span></code>
+ is defined (<a href="https://svn.boost.org/trac/boost/ticket/3098">#3098</a>).
+ </li>
+ <li>
+ Fixed custom memory allocation support for timers (<a href="https://svn.boost.org/trac/boost/ticket/3107">#3107</a>).
+ </li>
+ <li>
+ Tidied up various warnings reported by g++ (<a href="https://svn.boost.org/trac/boost/ticket/1341">#1341</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2618">#2618</a>).
+ </li>
+ <li>
+ Various documentation improvements, including more obvious hyperlinks
+ to function overloads, header file information, examples for the handler
+ type requirements, and adding enum values to the index (<a href="https://svn.boost.org/trac/boost/ticket/3157">#3157</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2620">#2620</a>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/circular_buffer/index.html">Circular Buffer</a>:</span>
+ <ul>
+ <li>
+ Fixed bugs <a href="https://svn.boost.org/trac/boost/ticket/2785">#2785</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3285">#3285</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/foreach/index.html">Foreach</a>:</span>
+ <ul>
+ <li>
+ Workaround for conflict with Python headers (<a href="https://svn.boost.org/trac/boost/ticket/3000">#3000</a>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/function/index.html">Function</a>:</span>
+ <ul>
+ <li>
+ Optimize the use of small target objects.
+ </li>
+ <li>
+ Make Boost.Function compile under BOOST_NO_EXCEPTIONS (<a href="https://svn.boost.org/trac/boost/ticket/2499">#2499</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2494">#2494</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2469">#2469</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2466">#2466</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2900">#2900</a>)
+ </li>
+ <li>
+ Various minor fixes (<a href="https://svn.boost.org/trac/boost/ticket/2642">#2642</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2847">#2847</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2929">#2929</a>
+ <a href="https://svn.boost.org/trac/boost/ticket/3012">#3012</a>)
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/fusion/index.html">Fusion</a>:</span>
+ <ul>
+ <li>
+ Improved compile times for <code><span class="identifier">fusion</span><span class="special">::</span><span class="identifier">vector</span></code>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/hash/index.html">Hash</a>:</span>
+ <ul>
+ <li>
+ Automatically configure the float functions using template metaprogramming
+ instead of trying to configure every possibility manually.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/interprocess/index.html">Interprocess</a>:</span>
+ <ul>
+ <li>
+ Windows shared memory is created in Shared Documents folder so that it
+ can be shared between services and processes
+ </li>
+ <li>
+ Fixed bugs <a href="https://svn.boost.org/trac/boost/ticket/2967">#2967</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2973">#2973</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2992">#2992</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3138">#3138</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3166">#3166</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3205">#3205</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/intrusive/index.html">Intrusive</a>:</span>
+ <ul>
+ <li>
+ Code cleanup in tree_algorithms.hpp and avl_tree_algorithms.hpp
+ </li>
+ <li>
+ Fixed bug <a href="https://svn.boost.org/trac/boost/ticket/3164">#3164</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/mpl/index.html">MPL</a>:</span>
+ <ul>
+ <li>
+ Added <code><span class="identifier">mpl</span><span class="special">::</span><span class="identifier">char_</span></code> and <code><span class="identifier">mpl</span><span class="special">::</span><span class="identifier">string</span></code>
+ for compile-time string manipulation, based on multichar literals (<a href="https://svn.boost.org/trac/boost/ticket/2905">#2905</a>).
+ </li>
+ <li>
+ Updated <a href="/libs/mpl/doc/refmanual.html">MPL Reference Manual</a>.
+ </li>
+ <li>
+ Bug fixes.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/program_options/index.html">Program.Options</a>:</span>
+ <ul>
+ <li>
+ Support for building with disabled exceptions (<a href="https://svn.boost.org/trac/boost/ticket/2096">#2096</a>).
+ </li>
+ <li>
+ Unicode parser no longer drops original tokens (<a href="https://svn.boost.org/trac/boost/ticket/2425">#2425</a>).
+ </li>
+ <li>
+ Fixed crash on user-inserted items in <code><span class="identifier">variables_map</span></code>
+ (<a href="https://svn.boost.org/trac/boost/ticket/2782">#2782</a>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/proto/index.html">Proto</a>:</span>
+ <ul>
+ <li>
+ PrimitiveTransforms have stricter conformance to ResultOf protocol. (Warning:
+ some invalid code may break.)
+ </li>
+ <li>
+ Add a sensible default for <code><span class="identifier">proto</span><span class="special">::</span><span class="identifier">_default</span></code>'s
+ template parameter.
+ </li>
+ <li>
+ Improved default evaluation strategy for pointers to members.
+ </li>
+ <li>
+ GCC 3.4 portability fixes (<a href="https://svn.boost.org/trac/boost/ticket/3021">#3021</a>).
+ </li>
+ <li>
+ Work around Visual C++'s non-std-compliant ciso646 macros.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/serialization/index.html">Serialization</a>:</span>
+ <ul>
+ <li>
+ Removed deprecated headers: <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">static_warning</span><span class="special">.</span><span class="identifier">hpp</span></code>,
+ <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">state_saver</span><span class="special">.</span><span class="identifier">hpp</span></code>, <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">smart_cast</span><span class="special">.</span><span class="identifier">hpp</span></code>,
+ <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">pfto</span><span class="special">.</span><span class="identifier">hpp</span></code>. Use the the equivalent headers
+ in the <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">serialization</span><span class="special">/</span></code>
+ directory instead (<a href="https://svn.boost.org/trac/boost/ticket/3062">#3062</a>).
+ </li>
+ <li>
+ <code><span class="identifier">detail</span><span class="special">::</span><span class="identifier">archive_serializer_map</span></code> should now be
+ used instead of <code><span class="identifier">detail</span><span class="special">::</span><span class="identifier">archive_pointer_iserializer</span></code>.
+ For more details see <a href="/doc/libs/1_40_0/libs/serialization/doc/release.html">the
+ library release notes</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/unordered/index.html">Unordered</a>:</span>
+ <ul>
+ <li>
+ Implement <code><span class="identifier">emplace</span></code> for
+ all compilers, not just ones with rvalue references and variadic templates
+ (<a href="https://svn.boost.org/trac/boost/ticket/1978">#1978</a>).
+ </li>
+ <li>
+ Create less buckets by default.
+ </li>
+ <li>
+ Some minor tweaks for better compiler support (<a href="https://svn.boost.org/trac/boost/ticket/2908">#2908</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3096">#3096</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3082">#3082</a>).
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/libs/xpressive/index.html">Xpressive</a>:</span>
+ <ul>
+ <li>
+ Works on Visual C++ 10.0 (<a href="https://svn.boost.org/trac/boost/ticket/3124">#3124</a>).
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_40_0.build_system">
+ <h3><span class="link">Build System</span></h3>
+ <p>
+ The default naming of libraries in Unix-like environment now matches system
+ conventions, and does not include various decorations. Naming of libraries
+ on Cygwin was also fixed. Support for beta versions of Microsoft Visual Studio
+ 10 was added. With gcc, 64-bit compilation no longer requires that target architecture
+ be specified.
+ </p>
+ </div>
+ <div id="version_1_40_0.updated_tools">
+ <h3><span class="link">Updated Tools</span></h3>
+ <ul>
+ <li>
+ <span class="library"><a href="/tools/boostbook/index.html">Boostbook</a>:</span>
+ <ul>
+ <li>
+ Hide <code><span class="identifier">INTERNAL</span> <span class="identifier">ONLY</span></code>
+ enums in doxygen documentation (<a href="https://svn.boost.org/trac/boost/ticket/3242">#3242</a>).
+ </li>
+ <li>
+ Tweaked appearance of member classes/structs/unions in a class synopsis.
+ </li>
+ </ul>
+ </li>
+ <li>
+ <span class="library"><a href="/tools/quickbook/index.html">Quickbook</a>:</span>
+ <ul>
+ <li>
+ Support python code snippets (<a href="https://svn.boost.org/trac/boost/ticket/3029">#3029</a>).
+ </li>
+ <li>
+ Add <code><span class="identifier">teletype</span></code> source mode
+ (<a href="https://svn.boost.org/trac/boost/ticket/1202">#1202</a>)
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_40_0.compilers_tested">
+ <h3><span class="link">Compilers Tested</span></h3>
+ <p>
+ Boost's primary test compilers are:
+ </p>
+ <ul>
+ <li>
+ OS X:
+ <ul>
+ <li>
+ GCC 4.0.1 on Intel Tiger and Leopard
+ </li>
+ <li>
+ GCC 4.0.1 on PowerPC Tiger
+ </li>
+ </ul>
+ </li>
+ <li>
+ Linux:
+ <ul>
+ <li>
+ GCC 4.3.3 on Ubuntu Linux.
+ </li>
+ </ul>
+ </li>
+ <li>
+ Windows:
+ <ul>
+ <li>
+ Visual C++ 7.1 SP1, 8.0 SP1 and 9.0 SP1 on Windows XP.
+ </li>
+ </ul>
+ </li>
+ </ul>
+ <p>
+ Boost's additional test compilers include:
+ </p>
+ <ul>
+ <li>
+ Linux:
+ <ul>
+ <li>
+ Intel 9.0 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ Intel 10.0 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ Intel 10.1 on 64-bit Linux Redhat 5.1 Server.
+ </li>
+ <li>
+ Intel 10.1 on Suse Linux on 64 bit Itanium.
+ </li>
+ <li>
+ Intel 11.0 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ Intel 11.1 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ GCC 3.4.3, GCC 4.0.1, GCC 4.2.4, GCC 4.3.3 and GCC 4.4.0 on Red Hat Enterprise
+ Linux.
+ </li>
+ <li>
+ GCC 4.3.3 and GCC 4.4.0 with C++0x extensions on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ GCC 4.1.1, 4.2.1 on 64-bit Red Hat Enterprise Linux.
+ </li>
+ <li>
+ GCC 4.1.2 on Suse Linux on 64 bit Itanium.
+ </li>
+ <li>
+ GCC 4.1.2 on 64-bit Redhat Server 5.1.
+ </li>
+ <li>
+ GCC Open64 4.2.2 on Red Hat Enterprise Linux.
+ </li>
+ <li>
+ GCC 4.3.4 on Debian unstable.
+ </li>
+ <li>
+ QLogic PathScale(TM) Compiler Suite: Version 3.1 on Red Hat Enterprise
+ Linux.
+ </li>
+ <li>
+ GCC version 4.2.0 (PathScale 3.2 driver) on 64-bit Red Hat Enterprise
+ Linux.
+ </li>
+ <li>
+ Sun 5.9 on Red Hat Enterprise Linux.
+ </li>
+ </ul>
+ </li>
+ <li>
+ OS X:
+ <ul>
+ <li>
+ Intel 10.1, 11.0 on Intel Leopard.
+ </li>
+ <li>
+ Intel 10.1, 11.0 on Intel Tiger.
+ </li>
+ <li>
+ GCC 4.0.1, 4.2.1 on Intel Leopard.
+ </li>
+ <li>
+ GCC 4.0.1 on Intel Tiger.
+ </li>
+ <li>
+ GCC 4.0.1 on PowerPC Tiger.
+ </li>
+ </ul>
+ </li>
+ <li>
+ Windows:
+ <ul>
+ <li>
+ Visual C++ 7.1 on XP.
+ </li>
+ <li>
+ Visual C++ 9.0 on XP.
+ </li>
+ <li>
+ Visual C++ 9.0 on Vista.
+ </li>
+ <li>
+ Visual C++ 9.0 on Vista 64-bit.
+ </li>
+ <li>
+ Visual C++ 9.0, using STLport 5.2, on XP and Windows Mobile 5.0.
+ </li>
+ <li>
+ Visual C++ 10.0 beta.
+ </li>
+ <li>
+ Borland 5.9.3, 6.1.0, 6.1.3.
+ </li>
+ <li>
+ Borland C++ Builder 2007 and 2009.
+ </li>
+ <li>
+ Intel C++ 11.1, with a Visual C++ 9.0 backend, on Vista 32-bit.
+ </li>
+ <li>
+ Intel C++ 11.1, with a Visual C++ 9.0 backend, on Vista 64-bit.
+ </li>
+ <li>
+ GCC 4.3.3 and 4.4.0, on Mingw with C++0x features.
+ </li>
+ </ul>
+ </li>
+ <li>
+ AIX:
+ <ul>
+ <li>
+ IBM XL C/C++ Enterprise Edition for AIX, V10.1.0.0, on AIX Version 5.3.0.40.
+ </li>
+ </ul>
+ </li>
+ <li>
+ Solaris:
+ <ul>
+ <li>
+ Sun C++ 5.7, 5.8, 5.9 on Solaris 5.10.
+ </li>
+ <li>
+ GCC 3.4.6 on Solaris 5.10.
+ </li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+ <div id="version_1_40_0.acknowledgements">
+ <h3><span class="link">Acknowledgements</span></h3>
+ <p>
+ <a href="/users/people/beman_dawes.html">Beman Dawes</a>, Eric Niebler,
+ <a href="/users/people/rene_rivera.html">Rene Rivera</a>, and Daniel
+ James managed this release.
+ </p>
+ </div>
+</div></description></item><item><title>Version 1.39.0</title><pubDate>Sat, 02 May 2009 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Signals2. Updated Libraries: Asio, Flyweight, Foreach, Hash,
Interprocess, Intrusive, Program.Options, Proto, PtrContainer, Range, Unordered,
Xpressive. Updated Tools: Boostbook, Quickbook.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=679861><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.39.0/><description><div class="description">
@@ -489,7 +964,7 @@
Intrusive, Lexical Cast, Math, Multi-index Containers, Proto, Regex, Thread,
TR1, Type Traits, Unordered, Xpressive. Other Changes: Experimental CMake build
system.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=659602><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.38.0/><description><div class="description">
@@ -1073,7 +1548,7 @@
</div></description></item><item><title>Version 1.37.0</title><pubDate>Mon, 03 Nov 2008 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Library: Proto. Updated Libraries: Asio, Circular Buffer, Dynamic Bitset,
Exception, Hash, Interprocess, Intrusive, Math, Type Traits, Unordered
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=637761><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.37.0/><description><div class="description">
@@ -1362,7 +1837,7 @@
New Libraries: Accumulators, Exception, Units, Unordered. Updated Libraries:
Asio, Assign, Circular Buffer, Foreach, Function, Hash, Interprocess, Intrusive,
Math, Multi-index Containers, MPI, PtrContainer, Spirit, Thread, Wave, Xpressive.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=619445><description><div class="description">
+ </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.36.0/><description><div class="description">
@@ -1761,390 +2236,5 @@
Rivera</a>, and Daniel James managed this release.
</p>
</div>
-</div></description></item><item><title>Version 1.35.0</title><pubDate>Sat, 29 Mar 2008 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
- New Libraries: Asio, Bimap, Circular Buffer, Function Types, Fusion, GIL, Interprocess,
- Intrusive, Math/Special Functions, Math/Statistical Distributions, MPI, System.
- Updated Libraries: Graph, Hash, Iostreams, Multi Array, Multi-index Containers,
- Serialization, Thread, Wave, Xpressive.
- </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=587936><description><div class="description">
-
-
-
- <div id="version_1_35_0.new_libraries">
- <h3><span class="link">New Libraries</span></h3>
- <ul>
- <li>
- <span class="library"><a href="/libs/asio/index.html">Asio</a>:</span> Portable networking,
- including sockets, timers, hostname resolution and socket iostreams, from
- Chris Kohlhoff.
- </li>
- <li>
- <span class="library"><a href="/libs/bimap/index.html">Bimap</a>:</span> Boost.Bimap is a
- bidirectional maps library for C++. With Boost.Bimap you can create associative
- containers in which both types can be used as key, from Matias Capeletto.
- </li>
- <li>
- <span class="library"><a href="/libs/circular_buffer/index.html">Circular Buffer</a>:</span> STL
- compliant container also known as ring or cyclic buffer, from Jan Gaspar.
- </li>
- <li>
- <span class="library"><a href="/libs/function_types/index.html">Function Types</a>:</span>
- Boost.FunctionTypes
- provides functionality to classify, decompose and synthesize function, function
- pointer, function reference and pointer to member types. From Tobias Schwinger.
- </li>
- <li>
- <span class="library"><a href="/libs/fusion/index.html">Fusion</a>:</span>
- Library for working
- with tuples, including various containers, algorithms, etc. From Joel de
- Guzman, Dan Marsden and Tobias Schwinger.
- </li>
- <li>
- <span class="library"><a href="/libs/gil/doc/index.html">GIL</a>:</span>
- Generic Image Library,
- from Lubomir Bourdev and Hailin Jin.
- </li>
- <li>
- <span class="library"><a href="/libs/interprocess/index.html">Interprocess</a>:</span>
- Shared
- memory, memory mapped files, process-shared mutexes, condition variables,
- containers and allocators, from Ion Gaztañaga.
- </li>
- <li>
- <span class="library"><a href="/libs/intrusive/index.html">Intrusive</a>:</span>
- Intrusive
- containers and algorithms, from Ion Gaztañaga.
- </li>
- <li>
- <span class="library"><a href="/libs/math/doc/sf_and_dist/html/index.html">Math/Special
- Functions</a>:</span>
- A wide selection of mathematical special functions from
- John Maddock, Paul Bristow, Hubert Holin and Xiaogang Zhang.
- </li>
- <li>
- <span class="library"><a href="/libs/math/doc/sf_and_dist/html/index.html">Math/Statistical
- Distributions</a>:</span>
- A wide selection of univariate statistical distributions
- and functions that operate on them from John Maddock and Paul Bristow
- </li>
- <li>
- <span class="library"><a href="/doc/html/mpi.html">MPI</a>:</span>
- Message Passing Interface
- library, for use in distributed-memory parallel application programming,
- from Douglas Gregor and Matthias Troyer.
- </li>
- <li>
- <span class="library"><a href="/libs/system/index.html">System</a>:</span>
- Operating system
- support, including the diagnostics support that will be part of the C++0x
- standard library, from Beman Dawes.
- </li>
- </ul>
- </div>
- <div id="version_1_35_0.updated_libraries">
- <h3><span class="link">Updated Libraries</span></h3>
- <ul>
- <li>
- <span class="library"><a href="/libs/graph/doc/index.html">Graph</a>:</span>
- Generic graph
- components and algorithms. Highlights:
- <ul>
- <li>
- <code><span class="identifier">kolmogorov_max_flow</span></code>,
- from Stephan Diederich as part of the 2006 Google Summer of Code.
- </li>
- <li>
- <code><span class="identifier">read_dimacs_max_flow</span></code>
- and <code><span class="identifier">write_dimacs_max_flow</span></code>
- for max-flow problems, from Stephan Diederich.
- </li>
- <li>
- <code><span class="identifier">read_graphml</span></code> and <code><span class="identifier">write_graphml</span></code> for GraphML input/output,
- from Tiago de Paula Peixoto.
- </li>
- <li>
- <code><span class="identifier">minimum_cycle_ratio</span></code> and
- <code><span class="identifier">maximum_cycle_ratio</span></code>,
- from Dmitry Bufistov and Andrey Parfenov.
- </li>
- <li>
- <code><span class="identifier">boyer_myrvold_planarity_test</span></code>,
- along with a suite of algorithms for planar graphs, from Aaron Windsor.
- </li>
- <li>
- LEDA Adaptor improvements, from Jens Müller.
- </li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
- A TR1 hash
- function object, from Daniel James. Highlights:
- <ul>
- <li>
- Support for <code><span class="keyword">long</span> <span class="keyword">long</span></code>,
- <code><span class="identifier">std</span><span class="special">::</span><span class="identifier">complex</span></code>.
- </li>
- <li>
- Improved the algorithm for hashing floating point numbers.
- </li>
- <li>
- A few bug and warning fixes.
- </li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/iostreams/index.html">Iostreams</a>:</span> Framework
- for defining streams, stream buffers and i/o filters, from Jonathan Turkanis.
- Highlights:
- <ul>
- <li>
- Clarified the semantics of close(). This fixes several bugs but will
- break some existing code. See <a href="/libs/iostreams/doc/index.html?path=12">Release
- Notes</a> for details.
- </li>
- <li>
- Numerous other bug fixes and optimizations.
- </li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/multi_array/index.html">Multi Array</a>:</span>
- <ul>
- <li>
- Added &quot;dimensionality&quot; compile-time constante to the MultiArray
- concept.
- </li>
- <li>
- For greater control over error situations, uses of C++ assert have been
- replaced with BOOST_ASSERT.
- </li>
- <li>
- Fixed a bug with simultaneous resizing and reindexing.
- </li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/multi_index/doc/index.html">Multi-index Containers</a>:</span>
- <ul>
- <li>
- New <a href="/libs/multi_index/doc/tutorial/key_extraction.html#global_fun"><code><span class="identifier">global_fun</span></code></a> predefined key extractor.
- </li>
- <li>
- Added <a href="/libs/multi_index/doc/tutorial/indices.html#iterator_to"><code><span class="identifier">iterator_to</span></code></a> facility.
- </li>
- <li>
- Included <a href="/libs/multi_index/doc/tutorial/creation.html#special_allocator">support
- for non-standard allocators</a> such as those of <a href="/libs/interprocess/index.html">Boost.Interprocess</a>,
- which makes <code><span class="identifier">multi_index_container</span></code>s
- placeable in shared memory.
- </li>
- <li>
- New versions of <code><span class="identifier">modify</span></code>
- and <code><span class="identifier">modify_key</span></code> with rollback,
- as described in the <a href="/libs/multi_index/doc/tutorial/basics.html#ord_updating">tutorial</a>.
- </li>
- <li>
- A number of optimizations and minor improvements have also been included.
- For a complete list of changes, see the library <a href="/libs/multi_index/doc/release_notes.html#boost_1_35">release
- notes</a>.
- </li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/serialization/index.html">Serialization</a>:</span>
- Boost.Serialization
- has been updated with optimizations for dense arrays.
- </li>
- <li>
- <span class="library"><a href="/libs/thread/index.html">Thread</a>:</span>
- <ul>
- <li>
- The Thread library has been updated to be more in line with the C++0x
- working draft.
- </li>
- <li>
- Instances of boost::thread and of the various lock types are now movable.
- </li>
- <li>
- Threads can be interrupted at interruption points.
- </li>
- <li>
- Condition variables can now be used with any type that implements the
- Lockable concept, through the use of <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition_variable_any</span></code>
- (<code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition</span></code> is a typedef to <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition_variable_any</span></code>, provided for
- backwards compatibility). <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">condition_variable</span></code>
- is provided as an optimization, and will only work with <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">unique_lock</span><span class="special">&lt;</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">&gt;</span></code>
- (<code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">::</span><span class="identifier">scoped_lock</span></code>).
- </li>
- <li>
- Thread IDs are separated from boost::thread, so a thread can obtain it's
- own ID (using <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">this_thread</span><span class="special">::</span><span class="identifier">get_id</span><span class="special">()</span></code>),
- and IDs can be used as keys in associative containers, as they have the
- full set of comparison operators.
- </li>
- <li>
- Timeouts are now implemented using the Boost DateTime library, through
- a typedef <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">system_time</span></code> for absolute timeouts,
- and with support for relative timeouts in many cases. <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">xtime</span></code>
- is supported for backwards compatibility only.
- </li>
- <li>
- Locks are implemented as publicly accessible templates <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">lock_guard</span></code>, <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">unique_lock</span></code>,
- <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">shared_lock</span></code>, and <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">upgrade_lock</span></code>,
- which are templated on the type of the mutex. The Lockable concept has
- been extended to include publicly available <code><span class="identifier">lock</span><span class="special">()</span></code> and <code><span class="identifier">unlock</span><span class="special">()</span></code> member functions, which are used by
- the lock types.
- </li>
- <li>
- <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">try_mutex</span></code> has been removed, and the
- functionality subsumed into <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span></code>.
- <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">try_mutex</span></code> is left as a typedef, but
- is no longer a separate class.
- </li>
- <li>
- <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">recursive_try_mutex</span></code> has been removed,
- and the functionality subsumed into <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">recursive_mutex</span></code>.
- <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">recursive_try_mutex</span></code> is left as a typedef,
- but is no longer a separate class.
- </li>
- <li>
- <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">detail</span><span class="special">::</span><span class="identifier">thread</span><span class="special">::</span><span class="identifier">lock_ops</span></code> has been removed. Code that
- relies on the <code><span class="identifier">lock_ops</span></code>
- implementation detail will no longer work, as this has been removed,
- as it is no longer necessary now that mutex types now have public <code><span class="identifier">lock</span><span class="special">()</span></code>
- and <code><span class="identifier">unlock</span><span class="special">()</span></code>
- member functions.
- </li>
- <li>
- <code><span class="identifier">scoped_lock</span></code> constructors
- with a second parameter of type bool are no longer provided. With previous
- boost releases, <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">::</span><span class="identifier">scoped_lock</span>
- <span class="identifier">some_lock</span><span class="special">(</span><span class="identifier">some_mutex</span><span class="special">,</span><span class="keyword">false</span><span class="special">);</span></code>
- could be used to create a lock object that was associated with a mutex,
- but did not lock it on construction. This facility has now been replaced
- with the constructor that takes a <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">defer_lock_type</span></code>
- as the second parameter: <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">mutex</span><span class="special">::</span><span class="identifier">scoped_lock</span>
- <span class="identifier">some_lock</span><span class="special">(</span><span class="identifier">some_mutex</span><span class="special">,</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">defer_lock</span><span class="special">);</span></code>
- </li>
- <li>
- The broken <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">read_write_mutex</span></code> has been replaced
- with <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">shared_mutex</span></code>.
- </li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/wave/index.html">Wave</a>:</span> Standards conformant
- implementation of the mandated C99/C++ preprocessor functionality packed
- behind an easy to use iterator interface, from Hartmut Kaiser. Highlights:
- <ul>
- <li>
- Added the possibility to continue the preprocessing after an error occured.
- </li>
- <li>
- Added the macro introspection API to the wave::context object.
- </li>
- <li>
- Added threading support to the library.
- </li>
- <li>
- Improved the overall performance by upto 30%.
- </li>
- <li>
- Changed and unified preprocessor hook interface (this is an interface
- breaking change!), added several new preprocessor hook functions.
- </li>
- <li>
- Added serialization support.
- </li>
- <li>
- Added new examples (for instance: Hannibal - a partial C++ parser, by
- Danny Havenith).
- </li>
- <li>
- Added a new lexical analyzer based on Ben Hansons Lexertl library.
- </li>
- <li>
- Fixed a large number of other bugs and problems.
- </li>
- </ul>
- </li>
- <li>
- <span class="library"><a href="/libs/xpressive/index.html">Xpressive</a>:</span> Regular
- expressions that can be written as strings or as expression templates, and
- that can refer to each other and themselves recursively with the power of
- context-free grammars, from Eric Niebler. Highlights:
- <ul>
- <li>
- Added <em>semantic actions</em> to static regexes. A semantic
- action is code that executes when part of a regular expression matches.
- </li>
- <li>
- Added <em>custom assertions</em> to static regexes. A custom
- assertion is a Boolean predicate that can participate in the regex match.
- </li>
- <li>
- Added <em>named regexes</em> for embedding a static or dynamic
- regex into a dynamic regex. This can be used to create dynamic regex
- grammars.
- </li>
- <li>
- Added <em>named captures</em> to dynamic regexes, like Perl.
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <div id="version_1_35_0.supported_compilers">
- <h3><span class="link">Supported Compilers</span></h3>
- <p>
- The following compilers are officially supported in this release:
- </p>
- <ul>
- <li>
- HP aC++ A.06.14 on HP-UX
- </li>
- <li>
- Darwin GCC 4.01.
- </li>
- <li>
- GNU GCC up to version 4.2.1, on Linux and Solaris.
- </li>
- <li>
- Intel C++ 9.1 on Linux.
- </li>
- <li>
- Intel C++ 10.1 on Windows.
- </li>
- <li>
- Microsoft Visual C++ 7.1 and 8 on Windows (Visual Sudio .NET 2003 and 2005).
- </li>
- </ul>
- <p>
- In addition the following compilers should be well supported, but weren't part
- of our release criteria for 1.35:
- </p>
- <ul>
- <li>
- IBM Visual Age 9.0 on AIX.
- </li>
- <li>
- Intel C++ 10 and later on Linux.
- </li>
- <li>
- GNU GCC 4.3 and later on Linux and Solaris.
- </li>
- <li>
- Microsoft Visual C++ 9 (Visual Studio .NET 2008).
- </li>
- </ul>
- </div>
- <div id="version_1_35_0.acknowledgements">
- <h3><span class="link">Acknowledgements</span></h3>
- <p>
- <a href="/users/people/beman_dawes.html">Beman Dawes</a> managed this
- release.
- </p>
- </div>
</div></description></item></channel>
</rss>
\ No newline at end of file
==============================================================================
--- website/public_html/live/feed/templates/boost_x_xx_x.qbk (original)
+++ website/public_html/live/feed/templates/boost_x_xx_x.qbk 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -8,9 +8,8 @@
[include ext.qbk]
-[/ TODO: Update download link on release, it currently just links to the list
- of versions of boost on sourceforge.]
-[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041]
+[/ TODO: Check download link on release.]
+[download http://sourceforge.net/projects/boost/files/boost/1.xx.x/]
[/
When adding libraries:
==============================================================================
--- website/public_html/live/style/css_0/content.css (original)
+++ website/public_html/live/style/css_0/content.css 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -531,3 +531,17 @@
color: #777;
font-size: 90%;
}
+/* Download table */
+#content .section table.download-table {
+ text-align: left;
+ margin: 1.5em 0;
+}
+
+#content .section table.download-table caption {
+ caption-side: top;
+ text-align: left;
+ margin: 0.5em 0;
+ font-family: 'Times New Roman', serif;
+ font-variant: small-caps;
+ font-size: 115%;
+}
\ No newline at end of file
==============================================================================
--- website/public_html/live/users/download/entry.php (original)
+++ website/public_html/live/users/download/entry.php 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -41,9 +41,7 @@
<p><span class=
"news-date"><?php print $_downloads->db[$_guid]['date']; ?></span></p>
- <?php if($_downloads->db[$_guid]['boostbook:download']) : ?>
- <p><span class="news-download">Download this release.</span></p>
- <? endif; ?>
+ <?php $_downloads->echo_download_table($_guid); ?>
<div class="news-description">
<?php print $_downloads->db[$_guid]['description']; ?>
==============================================================================
--- website/public_html/live/users/download/index.php (original)
+++ website/public_html/live/users/download/index.php 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -61,7 +61,7 @@
<p>Old versions of boost can be found on the <a href=
"/users/history/">version history</a> page or from <a class=
"external" href=
- "http://sourceforge.net/project/showfiles.php?group_id=7586">the
+ "http://sourceforge.net/projects/boost/files/">the
sourceforge download page</a>.</p>
<h2><a name="repository" id="repository"></a>Subversion
==============================================================================
--- website/public_html/live/users/history/entry.php (original)
+++ website/public_html/live/users/history/entry.php 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -51,9 +51,7 @@
<p><span class=
"news-date"><?php print $_history->db[$_guid]['date']; ?></span></p>
- <?php if($_history->db[$_guid]['boostbook:download']) : ?>
- <p><span class="news-download">Download this release.</span></p>
- <?php endif; ?>
+ <?php $_history->echo_download_table($_guid); ?>
<div class="news-description">
<?php print $_history->db[$_guid]['description']; ?>
==============================================================================
--- website/public_html/live/users/news/entry.php (original)
+++ website/public_html/live/users/news/entry.php 2009-08-27 13:03:03 EDT (Thu, 27 Aug 2009)
@@ -51,9 +51,7 @@
<p><span class=
"news-date"><?php print $_news->db[$_guid]['date']; ?></span></p>
- <?php if($_news->db[$_guid]['boostbook:download']) : ?>
- <p><span class="news-download">Download this release.</span></p>
- <?php endif; ?>
+ <?php $_news->echo_download_table($_guid); ?>
<div class="news-description">
<?php print $_news->db[$_guid]['description']; ?>