$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
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&package_id=8041&release_id=376197">http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&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">&</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 "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 <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 "cad" 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><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><hr/><div class="description">
+  <div id="version_1_33_1.updated_libraries">
+    <h3><span class="link">Updated Libraries</span></h3>
+    <ul>
+      <li>
+        <span class="library"><a href="doc/html/any.html">Any Library</a>:</span> Cast to reference
+        types introduced in 1.33.0 is now documented on <code><span class="identifier">any_cast</span></code>
+        documentation page.
+      </li>
+      <li>
+        <span class="library"><a href="libs/config/index.html">Config Library</a>:</span> Don't undef
+        <code><span class="identifier">BOOST_LIB_TOOLSET</span></code> after use.
+      </li>
+      <li>
+        <span class="library"><a href="libs/python/doc/index.html">Boost.Python</a>:</span>
+        <ul>
+          <li>
+            The build now assumes Python 2.4 by default, rather than 2.2
+          </li>
+          <li>
+            Support Python that's built without Unicode support
+          </li>
+          <li>
+            Support for wrapping classes with overloaded address-of (<code><span class="special">&amp;</span></code>) operators
+          </li>
+        </ul>
+      </li>
+      <li>
+        <span class="library"><a href="libs/smart_ptr/index.html">Smart Pointer Library</a>:</span> Fixed
+        problems under Metrowerks CodeWarrior on PowerPC (Mac OS X) with inlining
+        on, GNU GCC on PowerPC 64.
+      </li>
+      <li>
+        <span class="library"><a href="libs/regex/doc/index.html">Regex Library</a>:</span> Fixed
+        the supplied makefiles, and other small compiler specific changes. Refer
+        to the <a href="libs/regex/doc/history.html">regex history page</a>
+        for more information on these and other small changes.
+      </li>
+      <li>
+        <span class="library"><a href="libs/iostreams/doc/index.html">Iostreams Library</a>:</span>
+  Improved
+        the interface for accessing a chain's components, added <code><span class="identifier">is_open</span></code>
+        members to the file and file descriptor devices, fixed memory-mapped files
+        on Windows, and made minor changes to the documentation.
+      </li>
+      <li>
+        <span class="library"><a href="libs/functional/hash/index.html">Functional/Hash Library</a>:</span>
+  Fixed
+        the points example.
+      </li>
+      <li>
+        <span class="library"><a href="libs/multi_index/doc/index.html">Multi-index Containers
+        Library</a>:</span>
+  Fixed a problem with multithreaded code, and other minor
+        changes. Refer to the library <a href="libs/multi_index/doc/release_notes.html#boost_1_33_1">release
+        notes</a> for further details.
+      </li>
+      <li>
+        <span class="library"><a href="libs/graph/doc/table_of_contents.html">Graph Library</a>:</span>
+        <ul>
+          <li>
+            Fixed a problem with the relaxed heap on x86 Linux (fixes bug in <code><span class="identifier">dijkstra_shortest_paths</span></code>).
+          </li>
+          <li>
+            Fixed problems with <a href="libs/graph/doc/cuthill_mckee_ordering.html"><code><span class="identifier">cuthill_mckee_ordering</span></code></a> and
+            <a href="libs/graph/doc/king_ordering.html"><code><span class="identifier">king_ordering</span></code></a>
+            producing no results.
+          </li>
+          <li>
+            Added <code><span class="identifier">color_map</span></code> parameter
+            to <code><span class="identifier">dijkstra_shortest_paths</span></code>.
+          </li>
+        </ul>
+      </li>
+      <li>
+        <span class="library"><a href="libs/signals/doc/index.html">Signals Library</a>:</span> Fixed
+        problems with the use of Signals across shared library boundaries.
+      </li>
+      <li>
+        <span class="library"><a href="libs/thread/doc/index.html">Thread library</a>:</span>
+  <code><span class="identifier">read_write_mutex</span></code> has been removed due to
+        problems with deadlocks.
+      </li>
+      <li>
+        <span class="library"><a href="libs/wave/index.html">Wave library</a> (V1.2.1):</span> Fixed
+        a couple of problems, refer to the <a href="libs/wave/ChangeLog">change
+        log</a> for further details.
+      </li>
+    </ul>
+  </div>
+  <div id="version_1_33_1.supported_compilers">
+    <h3><span class="link">Supported Compilers</span></h3>
+    <p>
+      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 <a href="http://www.boost.org/regression/release/user/">regression
+      test results</a>.
+    </p>
+    <ul>
+      <li>
+        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 <tt>configure</tt> script for Unix-like systems:
+        run <tt>configure --help</tt> for more information.
+      </li>
+      <li>
+        <a href="http://developer.apple.com/">Apple GCC</a> 3.3, 4.0 on Mac
+        OS X.
+      </li>
+      <li>
+        <a href="http://www.borland.com/us/products/cbuilder/">Borland C++</a>
+        5.6.4 on Windows.
+      </li>
+      <li>
+        <a href="http://gcc.gnu.org">GNU C++</a> 2.95.3 (with and without
+        STLport), 3.2.x., 3.3.x, 3.4.x, 4.0.x on Windows, Linux and Solaris.
+      </li>
+      <li>
+        <a href="http://h30097.www3.hp.com/cplus/">HP C++ for Tru64 UNIX 7.1</a>.
+      </li>
+      <li>
+        <a href="http://www.intel.com/cd/software/products/asmo-na/eng/compilers/index.htm">Intel
+        C++</a> 8.1, 9.0 on Windows, Linux.
+      </li>
+      <li>
+        <a href="http://www.metrowerks.com">Metrowerks CodeWarrior</a> 8.3,
+        9.4, 9.5 on Mac OS X and Windows.
+      </li>
+      <li>
+        <a href="http://msdn.microsoft.com/visualc/">Microsoft Visual C++</a>
+        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><span class="identifier">_SCL_SECURE_NO_DEPRECATE</span></code>.
+      </li>
+    </ul>
+  </div>
+  <div id="version_1_33_1.acknowledgements">
+    <h3><span class="link">Acknowledgements</span></h3>
+    <p>
+      <span class="inset-left"><img alt="Medieval Mr. Gregor" src="/gfx/boost_1_33_0.jpg"/></span>
+<a href="/people/doug_gregor.html">Douglas
+      Gregor</a> managed this release.
+    </p>
+    <p>
+      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.
+    </p>
+  </div>
+</div></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">&</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 "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 <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 "cad" Juhasz
-      for the new Boost logo.
-    </para>
-  </section>
-</article>