Boost logo

Boost-Commit :

From: grafikrobot_at_[hidden]
Date: 2007-10-28 11:40:32


Author: grafik
Date: 2007-10-28 11:40:31 EDT (Sun, 28 Oct 2007)
New Revision: 40528
URL: http://svn.boost.org/trac/boost/changeset/40528

Log:
Add history feed, and make the news feed a combination of the history and other news.
Added:
   website/public_html/beta/feed/downloads/boost_1_33_1.qbk
      - copied unchanged from r40527, /website/public_html/beta/feed/downloads/bost_1_33_1.qbk
   website/public_html/beta/feed/downloads/boost_1_33_1.xml
      - copied unchanged from r40527, /website/public_html/beta/feed/downloads/bost_1_33_1.xml
   website/public_html/beta/feed/history/
   website/public_html/beta/feed/history.rss (contents, props changed)
   website/public_html/beta/feed/history/boost_1_33_1_release.qbk
      - copied unchanged from r40527, /website/public_html/beta/feed/news/boost_1_33_1_release.qbk
   website/public_html/beta/feed/history/boost_1_33_1_release.xml
      - copied unchanged from r40527, /website/public_html/beta/feed/news/boost_1_33_1_release.xml
   website/public_html/beta/feed/history/build.jam
      - copied unchanged from r40527, /website/public_html/beta/feed/news/build.jam
Removed:
   website/public_html/beta/feed/downloads/bost_1_33_1.qbk
   website/public_html/beta/feed/downloads/bost_1_33_1.xml
   website/public_html/beta/feed/news/boost_1_33_1_release.qbk
   website/public_html/beta/feed/news/boost_1_33_1_release.xml
Properties modified:
   website/public_html/beta/feed/downloads.rss (props changed)
   website/public_html/beta/feed/news.rss (contents, props changed)
Text files modified:
   website/public_html/beta/feed/build.jam | 35 +++++++++++++++++++++++------------
   website/public_html/beta/feed/news.rss | 4 ++--
   2 files changed, 25 insertions(+), 14 deletions(-)

Modified: website/public_html/beta/feed/build.jam
==============================================================================
--- website/public_html/beta/feed/build.jam (original)
+++ website/public_html/beta/feed/build.jam 2007-10-28 11:40:31 EDT (Sun, 28 Oct 2007)
@@ -2,8 +2,9 @@
 # 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)
 
-build-project news ;
 build-project downloads ;
+build-project history ;
+build-project news ;
 
 import feature ;
 import property ;
@@ -22,34 +23,44 @@
 
 rule rss ( targets * : sources * : properties * )
 {
- on $(targets) TITLE
+ TITLE on $(targets)
         = [ get <title> : $(properties) ] ;
- on $(targets) LINK
+ LINK on $(targets)
         = [ get <uri> : $(properties) ] ;
- on $(targets) COUNT
+ COUNT on $(targets)
         = [ get <count> : $(properties) ] ;
- on $(targets) BBOOK2RSS
+ BB2RSS on $(targets)
         = [ path.native [ path.join [ get <cwd> : $(properties) ] bbook2rss.py ] ] ;
 }
 
 actions rss
 {
- python "$(BBOOK2RSS)" "--channel-title=$(TITLE)" "--channel-link=$(LINK)" "--count=$(COUNT)" "--output=$(<)" "$(>)"
+ python "$(BB2RSS)" "--channel-title=$(TITLE)" "--channel-link=$(LINK)" "--count=$(COUNT)" "--output=$(<)" "$(>)"
 }
 
 path-constant CWD : . ;
 
-make news.rss : [ glob news/*.xml ] : @rss :
- <title>"Boost News"
- <uri>"http://beta.boost.org/feed/news.rss"
+make downloads.rss : [ glob downloads/*.xml ]
+ : @rss :
+ <title>"Boost Downloads"
+ <uri>"http://www.boost.org/feed/download.rss"
     <count>5
     <location>$(CWD)
     <cwd>$(CWD)
     ;
 
-make downloads.rss : [ glob downloads/*.xml ] : @rss :
- <title>"Boost Downloads"
- <uri>"http://www.boost.org/feed/download.rss"
+make history.rss : [ glob history/*.xml ]
+ : @rss :
+ <title>"Boost History"
+ <uri>"http://beta.boost.org/feed/history.rss"
+ <location>$(CWD)
+ <cwd>$(CWD)
+ ;
+
+make news.rss : [ glob news/*.xml ] [ glob history/*.xml ]
+ : @rss :
+ <title>"Boost News"
+ <uri>"http://beta.boost.org/feed/news.rss"
     <count>5
     <location>$(CWD)
     <cwd>$(CWD)

Deleted: website/public_html/beta/feed/downloads/bost_1_33_1.qbk
==============================================================================
--- website/public_html/beta/feed/downloads/bost_1_33_1.qbk 2007-10-28 11:40:31 EDT (Sun, 28 Oct 2007)
+++ (empty file)
@@ -1,102 +0,0 @@
-[article Boost 1.33.1
- [quickbook 1.4]
- [source-mode c++]
- [purpose [@http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=376197]]
- [authors [Gregor, Douglas]]
- [last-revision Mon, 5 Dec 2005 18:00:00 GMT]
-]
-
-[include ext.qbk]
-
-[section Updated Libraries]
-
-* [phrase library..[@doc/html/any.html Any Library]:] Cast to reference types
- introduced in 1.33.0 is now documented on `any_cast` documentation page.
-* [phrase library..[@libs/config/index.html Config Library]:] Don't undef
- `BOOST_LIB_TOOLSET` after use.
-* [phrase library..[@libs/python/doc/index.html Boost.Python]:]
- * The build now assumes Python 2.4 by default, rather than 2.2
- * Support Python that's built without Unicode support
- * Support for wrapping classes with overloaded address-of (`&`) operators
-* [phrase library..[@libs/smart_ptr/index.html Smart Pointer Library]:] Fixed
- problems under Metrowerks CodeWarrior on PowerPC (Mac OS X) with inlining
- on, GNU GCC on PowerPC 64.
-* [phrase library..[@libs/regex/doc/index.html Regex Library]:] Fixed the
- supplied makefiles, and other small compiler specific changes. Refer to the
- [@libs/regex/doc/history.html regex history page] for more information on
- these and other small changes.
-* [phrase library..[@libs/iostreams/doc/index.html Iostreams Library]:]
- Improved the interface for accessing a chain's components, added `is_open`
- members to the file and file descriptor devices, fixed memory-mapped files on
- Windows, and made minor changes to the documentation.
-* [phrase library..[@libs/functional/hash/index.html Functional/Hash Library]:]
- Fixed the points example.
-* [phrase library..[@libs/multi_index/doc/index.html Multi-index Containers Library]:]
- Fixed a problem with multithreaded code, and other minor changes. Refer to
- the library [@libs/multi_index/doc/release_notes.html#boost_1_33_1 release
- notes] for further details.
-* [phrase library..[@libs/graph/doc/table_of_contents.html Graph Library]:]
- * Fixed a problem with the relaxed heap on x86 Linux (fixes bug in
- `dijkstra_shortest_paths`).
- * Fixed problems with [@libs/graph/doc/cuthill_mckee_ordering.html
- `cuthill_mckee_ordering`] and [@libs/graph/doc/king_ordering.html
- `king_ordering`] producing no results.
- * Added `color_map` parameter to `dijkstra_shortest_paths`.
-* [phrase library..[@libs/signals/doc/index.html Signals Library]:] Fixed
- problems with the use of Signals across shared library boundaries.
-* [phrase library..[@libs/thread/doc/index.html Thread library]:]
- `read_write_mutex` has been removed due to problems with deadlocks.
-* [phrase library..[@libs/wave/index.html Wave library] (V1.2.1):] Fixed a
- couple of problems, refer to the [@libs/wave/ChangeLog change log] for
- further details.
-
-[endsect]
-
-[section Supported Compilers]
-
-Boost is tested on a wide range of compilers and platforms. Since Boost
-libraries rely on modern C++ features not available in all compilers, not
-all Boost libraries will work with every compiler. The following compilers
-and platforms have been extensively tested with Boost, although many other
-compilers and platforms will work as well. For more information, see the
-[@http://www.boost.org/regression/release/user/ regression test results].
-
-*New for this release*: Support for building with the newest STLport-5.0 was
-added. The support includes building with MinGW Runtime 3.8 plus STLport-5.0
-improved to support wide character operations. Apple GCC 4.0, HP Tru64 C++,
-and Microsoft Visual C++ 8.0 are supported platforms. We have added an
-experimental autoconf-like [^configure] script for Unix-like systems: run
-[^configure --help] for more information.
-
-* [@http://developer.apple.com/ Apple GCC] 3.3, 4.0 on Mac OS X.
-* [@http://www.borland.com/us/products/cbuilder/ Borland C++] 5.6.4 on Windows.
-* [@http://gcc.gnu.org GNU C++] 2.95.3 (with and without STLport), 3.2.x.,
- 3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
-* [@http://h30097.www3.hp.com/cplus/ HP C++ for Tru64 UNIX 7.1].
-* [@http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm Intel C++]
- 8.1, 9.0 on Windows, Linux.
-* [@http://www.metrowerks.com Metrowerks CodeWarrior] 8.3, 9.4, 9.5 on Mac
- OS X and Windows.
-* [@http://msdn.microsoft.com/visualc/ Microsoft Visual C++] 6.0 (sp5, with
- and without STLport), 7.0, 7.1, 8.0. Note: Boost does not support the
- non-standard "Safe" C++ Library shipping with Visual C++ 8.0, which may
- result in many spurious warnings from Boost headers and other
- standards-conforming C++ code. To suppress these warnings, define the
- macro `_SCL_SECURE_NO_DEPRECATE`.
-
-[endsect]
-
-[section Acknowledgements]
-
-[i /gfx/boost_1_33_0.jpg Medieval Mr. Gregor]
-[@/people/doug_gregor.html Douglas Gregor] managed this release.
-
-A great number of people contributed their time and expertise to make this
-release possible. Special thanks go to Aleksey Gurtovoy and Misha Bergal,
-who managed to keep the regression testing system working throughout the
-release process; David Abrahams, Beman Dawes, Aleksey Gurtovoy, Bronek
-Kozicki, Rene Rivera and Jonathan Turkanis for greatly improving the quality
-of this release; Rene Rivera for the new Boost web page design; and Zoltan
-"cad" Juhasz for the new Boost logo.
-
-[endsect]

Deleted: website/public_html/beta/feed/downloads/bost_1_33_1.xml
==============================================================================
--- website/public_html/beta/feed/downloads/bost_1_33_1.xml 2007-10-28 11:40:31 EDT (Sun, 28 Oct 2007)
+++ (empty file)
@@ -1,178 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
-<article id="boost_1_33_1" name="Boost 1.33.1" dirname="boost_1_33_1" last-revision="Mon, 5 Dec 2005 18:00:00 GMT"
- xmlns:xi="http://www.w3.org/2001/XInclude">
- <articleinfo>
- <authorgroup>
- <author>
- <firstname>Douglas</firstname> <surname>Gregor</surname>
- </author>
- </authorgroup>
- <articlepurpose>
- <ulink url="http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=376197">http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=376197>
- </articlepurpose>
- </articleinfo>
- <title>Boost 1.33.1</title>
- <section id="boost_1_33_1.updated_libraries">
- <title><link linkend="boost_1_33_1.updated_libraries">Updated Libraries</link></title>
- <itemizedlist>
- <listitem>
- <phrase role="library"><ulink url="doc/html/any.html">Any Library</ulink>:</phrase> Cast to reference
- types introduced in 1.33.0 is now documented on <code><phrase role="identifier">any_cast</phrase></code>
- documentation page.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/config/index.html">Config Library</ulink>:</phrase> Don't undef
- <code><phrase role="identifier">BOOST_LIB_TOOLSET</phrase></code> after use.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/python/doc/index.html">Boost.Python</ulink>:</phrase>
- <itemizedlist>
- <listitem>
- The build now assumes Python 2.4 by default, rather than 2.2
- </listitem>
- <listitem>
- Support Python that's built without Unicode support
- </listitem>
- <listitem>
- Support for wrapping classes with overloaded address-of (<code><phrase
- role="special">&amp;</phrase></code>) operators
- </listitem>
- </itemizedlist>
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/smart_ptr/index.html">Smart Pointer Library</ulink>:</phrase> Fixed
- problems under Metrowerks CodeWarrior on PowerPC (Mac OS X) with inlining
- on, GNU GCC on PowerPC 64.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/regex/doc/index.html">Regex Library</ulink>:</phrase> Fixed
- the supplied makefiles, and other small compiler specific changes. Refer
- to the <ulink url="libs/regex/doc/history.html">regex history page</ulink>
- for more information on these and other small changes.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/iostreams/doc/index.html">Iostreams Library</ulink>:</phrase>
- Improved
- the interface for accessing a chain's components, added <code><phrase role="identifier">is_open</phrase></code>
- members to the file and file descriptor devices, fixed memory-mapped files
- on Windows, and made minor changes to the documentation.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/functional/hash/index.html">Functional/Hash Library</ulink>:</phrase>
- Fixed
- the points example.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/multi_index/doc/index.html">Multi-index Containers
- Library</ulink>:</phrase>
- Fixed a problem with multithreaded code, and other minor
- changes. Refer to the library <ulink url="libs/multi_index/doc/release_notes.html#boost_1_33_1">release
- notes</ulink> for further details.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/graph/doc/table_of_contents.html">Graph Library</ulink>:</phrase>
- <itemizedlist>
- <listitem>
- Fixed a problem with the relaxed heap on x86 Linux (fixes bug in <code><phrase
- role="identifier">dijkstra_shortest_paths</phrase></code>).
- </listitem>
- <listitem>
- Fixed problems with <ulink url="libs/graph/doc/cuthill_mckee_ordering.html"><code><phrase
- role="identifier">cuthill_mckee_ordering</phrase></code></ulink> and
- <ulink url="libs/graph/doc/king_ordering.html"><code><phrase role="identifier">king_ordering</phrase></code></ulink>
- producing no results.
- </listitem>
- <listitem>
- Added <code><phrase role="identifier">color_map</phrase></code> parameter
- to <code><phrase role="identifier">dijkstra_shortest_paths</phrase></code>.
- </listitem>
- </itemizedlist>
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/signals/doc/index.html">Signals Library</ulink>:</phrase> Fixed
- problems with the use of Signals across shared library boundaries.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/thread/doc/index.html">Thread library</ulink>:</phrase>
- <code><phrase
- role="identifier">read_write_mutex</phrase></code> has been removed due to
- problems with deadlocks.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/wave/index.html">Wave library</ulink> (V1.2.1):</phrase> Fixed
- a couple of problems, refer to the <ulink url="libs/wave/ChangeLog">change
- log</ulink> for further details.
- </listitem>
- </itemizedlist>
- </section>
- <section id="boost_1_33_1.supported_compilers">
- <title><link linkend="boost_1_33_1.supported_compilers">Supported Compilers</link></title>
- <para>
- Boost is tested on a wide range of compilers and platforms. Since Boost libraries
- rely on modern C++ features not available in all compilers, not all Boost libraries
- will work with every compiler. The following compilers and platforms have been
- extensively tested with Boost, although many other compilers and platforms
- will work as well. For more information, see the <ulink url="
http://www.boost.org/regression/release/user/">regression
- test results</ulink>.
- </para>
- <itemizedlist>
- <listitem>
- New for this release*: Support for building with the newest STLport-5.0 was
- added. The support includes building with MinGW Runtime 3.8 plus STLport-5.0
- improved to support wide character operations. Apple GCC 4.0, HP Tru64 C++,
- and Microsoft Visual C++ 8.0 are supported platforms. We have added an experimental
- autoconf-like <literal>configure</literal> script for Unix-like systems:
- run <literal>configure --help</literal> for more information.
- </listitem>
- <listitem>
- <ulink url="http://developer.apple.com/">Apple GCC</ulink> 3.3, 4.0 on Mac
- OS X.
- </listitem>
- <listitem>
- <ulink url="http://www.borland.com/us/products/cbuilder/">Borland C++</ulink>
- 5.6.4 on Windows.
- </listitem>
- <listitem>
- <ulink url="http://gcc.gnu.org">GNU C++</ulink> 2.95.3 (with and without
- STLport), 3.2.x., 3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
- </listitem>
- <listitem>
- <ulink url="http://h30097.www3.hp.com/cplus/">HP C++ for Tru64 UNIX 7.1</ulink>.
- </listitem>
- <listitem>
- <ulink url="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
- C++</ulink> 8.1, 9.0 on Windows, Linux.
- </listitem>
- <listitem>
- <ulink url="http://www.metrowerks.com">Metrowerks CodeWarrior</ulink> 8.3,
- 9.4, 9.5 on Mac OS X and Windows.
- </listitem>
- <listitem>
- <ulink url="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</ulink>
- 6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
- support the non-standard &quot;Safe&quot; C++ Library shipping with Visual
- C++ 8.0, which may result in many spurious warnings from Boost headers and
- other standards-conforming C++ code. To suppress these warnings, define the
- macro <code><phrase role="identifier">_SCL_SECURE_NO_DEPRECATE</phrase></code>.
- </listitem>
- </itemizedlist>
- </section>
- <section id="boost_1_33_1.acknowledgements">
- <title><link linkend="boost_1_33_1.acknowledgements">Acknowledgements</link></title>
- <para>
- <inlinemediaobject><imageobject><imagedata fileref="/gfx/boost_1_33_0.jpg"></imagedata></imageobject><textobject><phrase role="alt">Medieval Mr. Gregor</phrase></textobject></inlinemediaobject>
-<ulink url="/people/doug_gregor.html">Douglas
- Gregor</ulink> managed this release.
- </para>
- <para>
- A great number of people contributed their time and expertise to make this
- release possible. Special thanks go to Aleksey Gurtovoy and Misha Bergal, who
- managed to keep the regression testing system working throughout the release
- process; David Abrahams, Beman Dawes, Aleksey Gurtovoy, Bronek Kozicki, Rene
- Rivera and Jonathan Turkanis for greatly improving the quality of this release;
- Rene Rivera for the new Boost web page design; and Zoltan &quot;cad&quot; Juhasz
- for the new Boost logo.
- </para>
- </section>
-</article>

Added: website/public_html/beta/feed/history.rss
==============================================================================
--- (empty file)
+++ website/public_html/beta/feed/history.rss 2007-10-28 11:40:31 EDT (Sun, 28 Oct 2007)
@@ -0,0 +1,172 @@
+<?xml version="1.0" encoding="utf-8"?><rss version="2.0">
+ <channel>
+ <generator>BoostBook2RSS</generator>
+ <title>Boost History</title>
+ <link>http://beta.boost.org/feed/history.rss>
+ <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.33.1</title><pubDate>Tue, 5 Dec 2006 12:00:00 GMT</pubDate><description>&lt;span class=&quot;brief&quot;&gt;&lt;span class=&quot;purpose&quot;&gt;
+ Updated Libraries: Any, Config, Python, Smart Pointer, Regex, Iostreams, Functional/Hash,
+ Multi-index Containers, Graph, Signals, Thread, and Wave.
+ &lt;/span&gt;&lt;/span&gt;&lt;hr/&gt;&lt;div class=&quot;description&quot;&gt;
+ &lt;div id=&quot;version_1_33_1.updated_libraries&quot;&gt;
+ &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;Updated Libraries&lt;/span&gt;&lt;/h3&gt;
+ &lt;ul&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;doc/html/any.html&quot;&gt;Any Library&lt;/a&gt;:&lt;/span&gt; Cast to reference
+ types introduced in 1.33.0 is now documented on &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;any_cast&lt;/span&gt;&lt;/code&gt;
+ documentation page.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/config/index.html&quot;&gt;Config Library&lt;/a&gt;:&lt;/span&gt; Don't undef
+ &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;BOOST_LIB_TOOLSET&lt;/span&gt;&lt;/code&gt; after use.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/python/doc/index.html&quot;&gt;Boost.Python&lt;/a&gt;:&lt;/span&gt;
+ &lt;ul&gt;
+ &lt;li&gt;
+ The build now assumes Python 2.4 by default, rather than 2.2
+ &lt;/li&gt;
+ &lt;li&gt;
+ Support Python that's built without Unicode support
+ &lt;/li&gt;
+ &lt;li&gt;
+ Support for wrapping classes with overloaded address-of (&lt;code&gt;&lt;span class=&quot;special&quot;&gt;&amp;amp;&lt;/span&gt;&lt;/code&gt;) operators
+ &lt;/li&gt;
+ &lt;/ul&gt;
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/smart_ptr/index.html&quot;&gt;Smart Pointer Library&lt;/a&gt;:&lt;/span&gt; Fixed
+ problems under Metrowerks CodeWarrior on PowerPC (Mac OS X) with inlining
+ on, GNU GCC on PowerPC 64.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/regex/doc/index.html&quot;&gt;Regex Library&lt;/a&gt;:&lt;/span&gt; Fixed
+ the supplied makefiles, and other small compiler specific changes. Refer
+ to the &lt;a href=&quot;libs/regex/doc/history.html&quot;&gt;regex history page&lt;/a&gt;
+ for more information on these and other small changes.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/iostreams/doc/index.html&quot;&gt;Iostreams Library&lt;/a&gt;:&lt;/span&gt;
+ Improved
+ the interface for accessing a chain's components, added &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;is_open&lt;/span&gt;&lt;/code&gt;
+ members to the file and file descriptor devices, fixed memory-mapped files
+ on Windows, and made minor changes to the documentation.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/functional/hash/index.html&quot;&gt;Functional/Hash Library&lt;/a&gt;:&lt;/span&gt;
+ Fixed
+ the points example.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/multi_index/doc/index.html&quot;&gt;Multi-index Containers
+ Library&lt;/a&gt;:&lt;/span&gt;
+ Fixed a problem with multithreaded code, and other minor
+ changes. Refer to the library &lt;a href=&quot;libs/multi_index/doc/release_notes.html#boost_1_33_1&quot;&gt;release
+ notes&lt;/a&gt; for further details.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/graph/doc/table_of_contents.html&quot;&gt;Graph Library&lt;/a&gt;:&lt;/span&gt;
+ &lt;ul&gt;
+ &lt;li&gt;
+ Fixed a problem with the relaxed heap on x86 Linux (fixes bug in &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;dijkstra_shortest_paths&lt;/span&gt;&lt;/code&gt;).
+ &lt;/li&gt;
+ &lt;li&gt;
+ Fixed problems with &lt;a href=&quot;libs/graph/doc/cuthill_mckee_ordering.html&quot;&gt;&lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;cuthill_mckee_ordering&lt;/span&gt;&lt;/code&gt;&lt;/a&gt; and
+ &lt;a href=&quot;libs/graph/doc/king_ordering.html&quot;&gt;&lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;king_ordering&lt;/span&gt;&lt;/code&gt;&lt;/a&gt;
+ producing no results.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Added &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;color_map&lt;/span&gt;&lt;/code&gt; parameter
+ to &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;dijkstra_shortest_paths&lt;/span&gt;&lt;/code&gt;.
+ &lt;/li&gt;
+ &lt;/ul&gt;
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/signals/doc/index.html&quot;&gt;Signals Library&lt;/a&gt;:&lt;/span&gt; Fixed
+ problems with the use of Signals across shared library boundaries.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/thread/doc/index.html&quot;&gt;Thread library&lt;/a&gt;:&lt;/span&gt;
+ &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;read_write_mutex&lt;/span&gt;&lt;/code&gt; has been removed due to
+ problems with deadlocks.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;libs/wave/index.html&quot;&gt;Wave library&lt;/a&gt; (V1.2.1):&lt;/span&gt; Fixed
+ a couple of problems, refer to the &lt;a href=&quot;libs/wave/ChangeLog&quot;&gt;change
+ log&lt;/a&gt; for further details.
+ &lt;/li&gt;
+ &lt;/ul&gt;
+ &lt;/div&gt;
+ &lt;div id=&quot;version_1_33_1.supported_compilers&quot;&gt;
+ &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;Supported Compilers&lt;/span&gt;&lt;/h3&gt;
+ &lt;p&gt;
+ Boost is tested on a wide range of compilers and platforms. Since Boost libraries
+ rely on modern C++ features not available in all compilers, not all Boost libraries
+ will work with every compiler. The following compilers and platforms have been
+ extensively tested with Boost, although many other compilers and platforms
+ will work as well. For more information, see the &lt;a href=&quot;http://www.boost.org/regression/release/user/&quot;&gt;regression
+ test results&lt;/a&gt;.
+ &lt;/p&gt;
+ &lt;ul&gt;
+ &lt;li&gt;
+ New for this release*: Support for building with the newest STLport-5.0 was
+ added. The support includes building with MinGW Runtime 3.8 plus STLport-5.0
+ improved to support wide character operations. Apple GCC 4.0, HP Tru64 C++,
+ and Microsoft Visual C++ 8.0 are supported platforms. We have added an experimental
+ autoconf-like &lt;tt&gt;configure&lt;/tt&gt; script for Unix-like systems:
+ run &lt;tt&gt;configure --help&lt;/tt&gt; for more information.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;a href=&quot;http://developer.apple.com/&quot;&gt;Apple GCC&lt;/a&gt; 3.3, 4.0 on Mac
+ OS X.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;a href=&quot;http://www.borland.com/us/products/cbuilder/&quot;&gt;Borland C++&lt;/a&gt;
+ 5.6.4 on Windows.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;a href=&quot;http://gcc.gnu.org&quot;&gt;GNU C++&lt;/a&gt; 2.95.3 (with and without
+ STLport), 3.2.x., 3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;a href=&quot;http://h30097.www3.hp.com/cplus/&quot;&gt;HP C++ for Tru64 UNIX 7.1&lt;/a&gt;.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;a href=&quot;http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm&quot;&gt;Intel
+ C++&lt;/a&gt; 8.1, 9.0 on Windows, Linux.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;a href=&quot;http://www.metrowerks.com&quot;&gt;Metrowerks CodeWarrior&lt;/a&gt; 8.3,
+ 9.4, 9.5 on Mac OS X and Windows.
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;a href=&quot;http://msdn.microsoft.com/visualc/&quot;&gt;Microsoft Visual C++&lt;/a&gt;
+ 6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
+ support the non-standard &amp;quot;Safe&amp;quot; C++ Library shipping with Visual
+ C++ 8.0, which may result in many spurious warnings from Boost headers and
+ other standards-conforming C++ code. To suppress these warnings, define the
+ macro &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;_SCL_SECURE_NO_DEPRECATE&lt;/span&gt;&lt;/code&gt;.
+ &lt;/li&gt;
+ &lt;/ul&gt;
+ &lt;/div&gt;
+ &lt;div id=&quot;version_1_33_1.acknowledgements&quot;&gt;
+ &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;Acknowledgements&lt;/span&gt;&lt;/h3&gt;
+ &lt;p&gt;
+ &lt;span class=&quot;inset-left&quot;&gt;&lt;img alt=&quot;Medieval Mr. Gregor&quot; src=&quot;/gfx/boost_1_33_0.jpg&quot;/&gt;&lt;/span&gt;
+&lt;a href=&quot;/people/doug_gregor.html&quot;&gt;Douglas
+ Gregor&lt;/a&gt; managed this release.
+ &lt;/p&gt;
+ &lt;p&gt;
+ A great number of people contributed their time and expertise to make this
+ release possible. Special thanks go to Aleksey Gurtovoy and Misha Bergal, who
+ managed to keep the regression testing system working throughout the release
+ process; David Abrahams, Beman Dawes, Aleksey Gurtovoy, Bronek Kozicki, Rene
+ Rivera and Jonathan Turkanis for greatly improving the quality of this release;
+ Rene Rivera for the new Boost web page design; and Zoltan &amp;quot;cad&amp;quot; Juhasz
+ for the new Boost logo.
+ &lt;/p&gt;
+ &lt;/div&gt;
+&lt;/div&gt;</description></item></channel>
+</rss>
\ No newline at end of file

Modified: website/public_html/beta/feed/news.rss
==============================================================================
--- website/public_html/beta/feed/news.rss (original)
+++ website/public_html/beta/feed/news.rss 2007-10-28 11:40:31 EDT (Sun, 28 Oct 2007)
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="utf-8"?><rss version="2.0">
   <channel>
     <generator>BoostBook2RSS</generator>
- <title>Boost Downloads</title>
- <link>http://www.boost.org/feed/download.rss>
+ <title>Boost News</title>
+ <link>
http://beta.boost.org/feed/news.rss>
     <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>

Deleted: website/public_html/beta/feed/news/boost_1_33_1_release.qbk
==============================================================================
--- website/public_html/beta/feed/news/boost_1_33_1_release.qbk 2007-10-28 11:40:31 EDT (Sun, 28 Oct 2007)
+++ (empty file)
@@ -1,102 +0,0 @@
-[article Version 1.33.1
- [quickbook 1.4]
- [source-mode c++]
- [purpose Updated Libraries: Any, Config, Python, Smart Pointer, Regex, Iostreams, Functional/Hash, Multi-index Containers, Graph, Signals, Thread, and Wave.]
- [authors [Gregor, Douglas]]
- [last-revision Tue, 5 Dec 2006 12:00:00 GMT]
-]
-
-[include ext.qbk]
-
-[section Updated Libraries]
-
-* [phrase library..[@doc/html/any.html Any Library]:] Cast to reference types
- introduced in 1.33.0 is now documented on `any_cast` documentation page.
-* [phrase library..[@libs/config/index.html Config Library]:] Don't undef
- `BOOST_LIB_TOOLSET` after use.
-* [phrase library..[@libs/python/doc/index.html Boost.Python]:]
- * The build now assumes Python 2.4 by default, rather than 2.2
- * Support Python that's built without Unicode support
- * Support for wrapping classes with overloaded address-of (`&`) operators
-* [phrase library..[@libs/smart_ptr/index.html Smart Pointer Library]:] Fixed
- problems under Metrowerks CodeWarrior on PowerPC (Mac OS X) with inlining
- on, GNU GCC on PowerPC 64.
-* [phrase library..[@libs/regex/doc/index.html Regex Library]:] Fixed the
- supplied makefiles, and other small compiler specific changes. Refer to the
- [@libs/regex/doc/history.html regex history page] for more information on
- these and other small changes.
-* [phrase library..[@libs/iostreams/doc/index.html Iostreams Library]:]
- Improved the interface for accessing a chain's components, added `is_open`
- members to the file and file descriptor devices, fixed memory-mapped files on
- Windows, and made minor changes to the documentation.
-* [phrase library..[@libs/functional/hash/index.html Functional/Hash Library]:]
- Fixed the points example.
-* [phrase library..[@libs/multi_index/doc/index.html Multi-index Containers Library]:]
- Fixed a problem with multithreaded code, and other minor changes. Refer to
- the library [@libs/multi_index/doc/release_notes.html#boost_1_33_1 release
- notes] for further details.
-* [phrase library..[@libs/graph/doc/table_of_contents.html Graph Library]:]
- * Fixed a problem with the relaxed heap on x86 Linux (fixes bug in
- `dijkstra_shortest_paths`).
- * Fixed problems with [@libs/graph/doc/cuthill_mckee_ordering.html
- `cuthill_mckee_ordering`] and [@libs/graph/doc/king_ordering.html
- `king_ordering`] producing no results.
- * Added `color_map` parameter to `dijkstra_shortest_paths`.
-* [phrase library..[@libs/signals/doc/index.html Signals Library]:] Fixed
- problems with the use of Signals across shared library boundaries.
-* [phrase library..[@libs/thread/doc/index.html Thread library]:]
- `read_write_mutex` has been removed due to problems with deadlocks.
-* [phrase library..[@libs/wave/index.html Wave library] (V1.2.1):] Fixed a
- couple of problems, refer to the [@libs/wave/ChangeLog change log] for
- further details.
-
-[endsect]
-
-[section Supported Compilers]
-
-Boost is tested on a wide range of compilers and platforms. Since Boost
-libraries rely on modern C++ features not available in all compilers, not
-all Boost libraries will work with every compiler. The following compilers
-and platforms have been extensively tested with Boost, although many other
-compilers and platforms will work as well. For more information, see the
-[@http://www.boost.org/regression/release/user/ regression test results].
-
-*New for this release*: Support for building with the newest STLport-5.0 was
-added. The support includes building with MinGW Runtime 3.8 plus STLport-5.0
-improved to support wide character operations. Apple GCC 4.0, HP Tru64 C++,
-and Microsoft Visual C++ 8.0 are supported platforms. We have added an
-experimental autoconf-like [^configure] script for Unix-like systems: run
-[^configure --help] for more information.
-
-* [@http://developer.apple.com/ Apple GCC] 3.3, 4.0 on Mac OS X.
-* [@http://www.borland.com/us/products/cbuilder/ Borland C++] 5.6.4 on Windows.
-* [@http://gcc.gnu.org GNU C++] 2.95.3 (with and without STLport), 3.2.x.,
- 3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
-* [@http://h30097.www3.hp.com/cplus/ HP C++ for Tru64 UNIX 7.1].
-* [@http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm Intel C++]
- 8.1, 9.0 on Windows, Linux.
-* [@http://www.metrowerks.com Metrowerks CodeWarrior] 8.3, 9.4, 9.5 on Mac
- OS X and Windows.
-* [@http://msdn.microsoft.com/visualc/ Microsoft Visual C++] 6.0 (sp5, with
- and without STLport), 7.0, 7.1, 8.0. Note: Boost does not support the
- non-standard "Safe" C++ Library shipping with Visual C++ 8.0, which may
- result in many spurious warnings from Boost headers and other
- standards-conforming C++ code. To suppress these warnings, define the
- macro `_SCL_SECURE_NO_DEPRECATE`.
-
-[endsect]
-
-[section Acknowledgements]
-
-[phrase inset-left [i /gfx/boost_1_33_0.jpg Medieval Mr. Gregor]]
-[@/people/doug_gregor.html Douglas Gregor] managed this release.
-
-A great number of people contributed their time and expertise to make this
-release possible. Special thanks go to Aleksey Gurtovoy and Misha Bergal,
-who managed to keep the regression testing system working throughout the
-release process; David Abrahams, Beman Dawes, Aleksey Gurtovoy, Bronek
-Kozicki, Rene Rivera and Jonathan Turkanis for greatly improving the quality
-of this release; Rene Rivera for the new Boost web page design; and Zoltan
-"cad" Juhasz for the new Boost logo.
-
-[endsect]

Deleted: website/public_html/beta/feed/news/boost_1_33_1_release.xml
==============================================================================
--- website/public_html/beta/feed/news/boost_1_33_1_release.xml 2007-10-28 11:40:31 EDT (Sun, 28 Oct 2007)
+++ (empty file)
@@ -1,179 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
-<article id="version_1_33_1" name="Version 1.33.1" dirname="version_1_33_1" last-revision="Tue, 5 Dec 2006 12:00:00 GMT"
- xmlns:xi="http://www.w3.org/2001/XInclude">
- <articleinfo>
- <authorgroup>
- <author>
- <firstname>Douglas</firstname> <surname>Gregor</surname>
- </author>
- </authorgroup>
- <articlepurpose>
- Updated Libraries: Any, Config, Python, Smart Pointer, Regex, Iostreams, Functional/Hash,
- Multi-index Containers, Graph, Signals, Thread, and Wave.
- </articlepurpose>
- </articleinfo>
- <title>Version 1.33.1</title>
- <section id="version_1_33_1.updated_libraries">
- <title><link linkend="version_1_33_1.updated_libraries">Updated Libraries</link></title>
- <itemizedlist>
- <listitem>
- <phrase role="library"><ulink url="doc/html/any.html">Any Library</ulink>:</phrase> Cast to reference
- types introduced in 1.33.0 is now documented on <code><phrase role="identifier">any_cast</phrase></code>
- documentation page.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/config/index.html">Config Library</ulink>:</phrase> Don't undef
- <code><phrase role="identifier">BOOST_LIB_TOOLSET</phrase></code> after use.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/python/doc/index.html">Boost.Python</ulink>:</phrase>
- <itemizedlist>
- <listitem>
- The build now assumes Python 2.4 by default, rather than 2.2
- </listitem>
- <listitem>
- Support Python that's built without Unicode support
- </listitem>
- <listitem>
- Support for wrapping classes with overloaded address-of (<code><phrase
- role="special">&amp;</phrase></code>) operators
- </listitem>
- </itemizedlist>
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/smart_ptr/index.html">Smart Pointer Library</ulink>:</phrase> Fixed
- problems under Metrowerks CodeWarrior on PowerPC (Mac OS X) with inlining
- on, GNU GCC on PowerPC 64.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/regex/doc/index.html">Regex Library</ulink>:</phrase> Fixed
- the supplied makefiles, and other small compiler specific changes. Refer
- to the <ulink url="libs/regex/doc/history.html">regex history page</ulink>
- for more information on these and other small changes.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/iostreams/doc/index.html">Iostreams Library</ulink>:</phrase>
- Improved
- the interface for accessing a chain's components, added <code><phrase role="identifier">is_open</phrase></code>
- members to the file and file descriptor devices, fixed memory-mapped files
- on Windows, and made minor changes to the documentation.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/functional/hash/index.html">Functional/Hash Library</ulink>:</phrase>
- Fixed
- the points example.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/multi_index/doc/index.html">Multi-index Containers
- Library</ulink>:</phrase>
- Fixed a problem with multithreaded code, and other minor
- changes. Refer to the library <ulink url="libs/multi_index/doc/release_notes.html#boost_1_33_1">release
- notes</ulink> for further details.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/graph/doc/table_of_contents.html">Graph Library</ulink>:</phrase>
- <itemizedlist>
- <listitem>
- Fixed a problem with the relaxed heap on x86 Linux (fixes bug in <code><phrase
- role="identifier">dijkstra_shortest_paths</phrase></code>).
- </listitem>
- <listitem>
- Fixed problems with <ulink url="libs/graph/doc/cuthill_mckee_ordering.html"><code><phrase
- role="identifier">cuthill_mckee_ordering</phrase></code></ulink> and
- <ulink url="libs/graph/doc/king_ordering.html"><code><phrase role="identifier">king_ordering</phrase></code></ulink>
- producing no results.
- </listitem>
- <listitem>
- Added <code><phrase role="identifier">color_map</phrase></code> parameter
- to <code><phrase role="identifier">dijkstra_shortest_paths</phrase></code>.
- </listitem>
- </itemizedlist>
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/signals/doc/index.html">Signals Library</ulink>:</phrase> Fixed
- problems with the use of Signals across shared library boundaries.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/thread/doc/index.html">Thread library</ulink>:</phrase>
- <code><phrase
- role="identifier">read_write_mutex</phrase></code> has been removed due to
- problems with deadlocks.
- </listitem>
- <listitem>
- <phrase role="library"><ulink url="libs/wave/index.html">Wave library</ulink> (V1.2.1):</phrase> Fixed
- a couple of problems, refer to the <ulink url="libs/wave/ChangeLog">change
- log</ulink> for further details.
- </listitem>
- </itemizedlist>
- </section>
- <section id="version_1_33_1.supported_compilers">
- <title><link linkend="version_1_33_1.supported_compilers">Supported Compilers</link></title>
- <para>
- Boost is tested on a wide range of compilers and platforms. Since Boost libraries
- rely on modern C++ features not available in all compilers, not all Boost libraries
- will work with every compiler. The following compilers and platforms have been
- extensively tested with Boost, although many other compilers and platforms
- will work as well. For more information, see the <ulink url="http://www.boost.org/regression/release/user/">regression
- test results</ulink>.
- </para>
- <itemizedlist>
- <listitem>
- New for this release*: Support for building with the newest STLport-5.0 was
- added. The support includes building with MinGW Runtime 3.8 plus STLport-5.0
- improved to support wide character operations. Apple GCC 4.0, HP Tru64 C++,
- and Microsoft Visual C++ 8.0 are supported platforms. We have added an experimental
- autoconf-like <literal>configure</literal> script for Unix-like systems:
- run <literal>configure --help</literal> for more information.
- </listitem>
- <listitem>
- <ulink url="http://developer.apple.com/">Apple GCC</ulink> 3.3, 4.0 on Mac
- OS X.
- </listitem>
- <listitem>
- <ulink url="http://www.borland.com/us/products/cbuilder/">Borland C++</ulink>
- 5.6.4 on Windows.
- </listitem>
- <listitem>
- <ulink url="http://gcc.gnu.org">GNU C++</ulink> 2.95.3 (with and without
- STLport), 3.2.x., 3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
- </listitem>
- <listitem>
- <ulink url="http://h30097.www3.hp.com/cplus/">HP C++ for Tru64 UNIX 7.1</ulink>.
- </listitem>
- <listitem>
- <ulink url="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
- C++</ulink> 8.1, 9.0 on Windows, Linux.
- </listitem>
- <listitem>
- <ulink url="http://www.metrowerks.com">Metrowerks CodeWarrior</ulink> 8.3,
- 9.4, 9.5 on Mac OS X and Windows.
- </listitem>
- <listitem>
- <ulink url="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</ulink>
- 6.0 (sp5, with and without STLport), 7.0, 7.1, 8.0. Note: Boost does not
- support the non-standard &quot;Safe&quot; C++ Library shipping with Visual
- C++ 8.0, which may result in many spurious warnings from Boost headers and
- other standards-conforming C++ code. To suppress these warnings, define the
- macro <code><phrase role="identifier">_SCL_SECURE_NO_DEPRECATE</phrase></code>.
- </listitem>
- </itemizedlist>
- </section>
- <section id="version_1_33_1.acknowledgements">
- <title><link linkend="version_1_33_1.acknowledgements">Acknowledgements</link></title>
- <para>
- <phrase role="inset-left"><inlinemediaobject><imageobject><imagedata fileref="/gfx/boost_1_33_0.jpg"></imagedata></imageobject><textobject><phrase role="alt">Medieval Mr. Gregor</phrase></textobject></inlinemediaobject></phrase>
-<ulink url="/people/doug_gregor.html">Douglas
- Gregor</ulink> managed this release.
- </para>
- <para>
- A great number of people contributed their time and expertise to make this
- release possible. Special thanks go to Aleksey Gurtovoy and Misha Bergal, who
- managed to keep the regression testing system working throughout the release
- process; David Abrahams, Beman Dawes, Aleksey Gurtovoy, Bronek Kozicki, Rene
- Rivera and Jonathan Turkanis for greatly improving the quality of this release;
- Rene Rivera for the new Boost web page design; and Zoltan &quot;cad&quot; Juhasz
- for the new Boost logo.
- </para>
- </section>
-</article>


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