[prev in list] [next in list] [prev in thread] [next in thread] 

List:       boost-commit
Subject:    [Boost-commit] svn:boost r41516 - in website/public_html/beta:
From:       grafikrobot () gmail ! com
Date:       2007-11-30 21:35:32
Message-ID: 20071130213532.C2A402F8181 () wowbagger ! osl ! iu ! edu
[Download RAW message or body]

Author: grafik
Date: 2007-11-30 16:35:30 EST (Fri, 30 Nov 2007)
New Revision: 41516
URL: http://svn.boost.org/trac/boost/changeset/41516

Log:
Rework feed format to allow inclusion of a custom download field. This allow removal \
of duplication between history and download entries. Removed:
   website/public_html/beta/feed/downloads/boost_1_33_1.qbk
   website/public_html/beta/feed/downloads/boost_1_33_1.xml
Text files modified: 
   website/public_html/beta/common/code/boost_feed.php    |     1                     \
  website/public_html/beta/feed/bbook2rss.py             |    15 +++                  \
  website/public_html/beta/feed/build.jam                |     4                      \
  website/public_html/beta/feed/downloads.rss            |   165 \
++++++++++-----------------------------   website/public_html/beta/feed/ext.qbk       \
|     5 +                                         \
website/public_html/beta/feed/history.rss              |    20 +++-                   \
  website/public_html/beta/feed/history/boost_1_31_0.qbk |     2                      \
  website/public_html/beta/feed/history/boost_1_31_0.xml |     3                      \
  website/public_html/beta/feed/history/boost_1_32_0.qbk |     2                      \
  website/public_html/beta/feed/history/boost_1_32_0.xml |     3                      \
  website/public_html/beta/feed/history/boost_1_33_0.qbk |     2                      \
  website/public_html/beta/feed/history/boost_1_33_0.xml |     3                      \
  website/public_html/beta/feed/history/boost_1_33_1.qbk |     2                      \
  website/public_html/beta/feed/history/boost_1_33_1.xml |     3                      \
  website/public_html/beta/feed/history/boost_1_34_0.qbk |     2                      \
  website/public_html/beta/feed/history/boost_1_34_0.xml |     3                      \
  website/public_html/beta/feed/history/boost_1_34_1.qbk |     2                      \
  website/public_html/beta/feed/history/boost_1_34_1.xml |     3                      \
  website/public_html/beta/feed/news.rss                 |    12 +                    \
  website/public_html/beta/users/download/index.php      |    12 ++                   \
  20 files changed, 128 insertions(+), 136 deletions(-)

Modified: website/public_html/beta/common/code/boost_feed.php
==============================================================================
--- website/public_html/beta/common/code/boost_feed.php	(original)
+++ website/public_html/beta/common/code/boost_feed.php	2007-11-30 16:35:30 EST (Fri, \
30 Nov 2007) @@ -46,6 +46,7 @@
                     case 'link':
                     case 'dc:date':
                     case 'boostbook:purpose':
+                    case 'boostbook:download':
                     {
                         if (isset($val['value']))
                         {

Modified: website/public_html/beta/feed/bbook2rss.py
==============================================================================
--- website/public_html/beta/feed/bbook2rss.py	(original)
+++ website/public_html/beta/feed/bbook2rss.py	2007-11-30 16:35:30 EST (Fri, 30 Nov \
2007) @@ -125,16 +125,22 @@
             klass='brief'
             )
         body_item = self.get_child(node,tag='title').nextSibling
+        download_item = None
         while body_item:
             item = self.x(body_item)
             if item:
-                description_xhtml.appendChild(item)
+                download_i = self.get_child(item,tag='boostbook:download')
+                if download_i:
+                    download_item = download_i
+                else:
+                    description_xhtml.appendChild(item)
             body_item = body_item.nextSibling
         return self.new_node(
             'item',
             self.new_text('title',node.getAttribute('name')),
             self.new_text('pubDate',node.getAttribute('last-revision')),
             self.new_text('boostbook:purpose',brief_xhtml.toxml('utf-8')),
+            download_item,
             self.new_text('description',description_xhtml.toxml('utf-8'))
             )
     
@@ -216,6 +222,10 @@
             klass='purpose',
             *self.x_children(node))
     
+    def x_download(self,node):
+        return self.new_text('boostbook:download',
+            self.get_child(node).data)
+    
     def get_child( self, root, tag = None, id = None, name = None):
         for n in root.childNodes:
             found = True
@@ -243,7 +253,8 @@
                 else:
                     result.setAttribute(k,kwargs[k])
         for c in child:
-            result.appendChild(c)
+            if c:
+                result.appendChild(c)
         return result
     
     def new_text( self, tag, data, **kwargs ):

Modified: website/public_html/beta/feed/build.jam
==============================================================================
--- website/public_html/beta/feed/build.jam	(original)
+++ website/public_html/beta/feed/build.jam	2007-11-30 16:35:30 EST (Fri, 30 Nov \
2007) @@ -40,7 +40,9 @@
 
 path-constant CWD : . ;
 
-make downloads.rss : [ glob downloads/*.xml ]
+make downloads.rss :
+    history/boost_1_34_1.xml
+    [ glob downloads/*.xml ]
     : @rss :
     <title>"Boost Downloads"
     <uri>"http://www.boost.org/feed/download.rss"

Modified: website/public_html/beta/feed/downloads.rss
==============================================================================
--- website/public_html/beta/feed/downloads.rss	(original)
+++ website/public_html/beta/feed/downloads.rss	2007-11-30 16:35:30 EST (Fri, 30 Nov \
2007) @@ -6,139 +6,64 @@
     <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>Boost 1.33.1</title><pubDate>Mon, 5 Dec 2005 18:00:00 \
GMT</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span \
                class=&quot;purpose&quot;&gt;
-      &lt;a href=&quot;http://sourceforge.net/project/showfiles.php?group_id=7586&amp \
;amp;package_id=8041&amp;amp;release_id=376197&quot;&gt;http://sourceforge.net/project \
/showfiles.php?group_id=7586&amp;amp;package_id=8041&amp;amp;release_id=376197&lt;/a&gt;
                
-    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div \
                class=&quot;description&quot;&gt;
-  &lt;div id=&quot;boost_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; +  <item><title>Version 1.34.1</title><pubDate>Tue, \
24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span \
class=&quot;brief&quot;&gt;&lt;span class=&quot;purpose&quot;&gt; +      Bugfix \
Release. +    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http:/ \
/sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=527428</boostbook:download><description>&lt;div \
class=&quot;description&quot;&gt; +  
+  &lt;p&gt;
+    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
+    fixes see &lt;a \
href=&quot;http://svn.boost.org/trac/boost/query?status=closed&amp;amp;milestone=Boost+1.34.1&quot;&gt;Boost
 +    Trac&lt;/a&gt;.
+  &lt;/p&gt;
+  &lt;div id=&quot;version_1_34_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;
+      New in this release is improved support for the IBM XL C/C++ compiler.
+    &lt;/p&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. New in this release 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;
-        &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;a href=&quot;http://developer.apple.com/&quot;&gt;Apple GCC&lt;/a&gt; \
4.0.1 on Mac OS +        X.
       &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;a href=&quot;http://www.borland.com/us/products/cbuilder/&quot;&gt;Borland \
C++&lt;/a&gt; +        5.8.2 on Windows.
       &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;a \
href=&quot;http://gcc.gnu.org/&quot;&gt;GNU C++&lt;/a&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;). + \
3.2.x., 3.3.x, 3.4.x, 4.0.x, 4.1.x on Linux  &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.
+            4.1.x on Solaris
           &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;. +  \
3.4.x on Windows  &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;boost_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;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://h30097.www3.hp.com/cplus/&quot;&gt;HP C++ for Tru64 \
UNIX 7.1&lt;/a&gt;. +        &lt;a href=&quot;http://www.hp.com/go/c++&quot;&gt;HP \
aC++ A.06.14&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.
+        C++&lt;/a&gt; 9.1 on Windows, 9.0 on 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;a href=&quot;http://www.metrowerks.com/&quot;&gt;Metrowerks \
CodeWarrior&lt;/a&gt; 9.4 +        on Windows.
       &lt;/li&gt;
       &lt;li&gt;
         &lt;a href=&quot;http://msdn.microsoft.com/visualc/&quot;&gt;Microsoft \
Visual C++&lt;/a&gt; @@ -148,23 +73,23 @@
         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;li&gt;
+        &lt;a href=&quot;http://developers.sun.com/sunstudio/compilers_index.html&quot;&gt;Sun
 +        Studio 11&lt;/a&gt; on Solaris.
+      &lt;/li&gt;
     &lt;/ul&gt;
   &lt;/div&gt;
-  &lt;div id=&quot;boost_1_33_1.acknowledgements&quot;&gt;
+  &lt;div id=&quot;version_1_34_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;img alt=&quot;Medieval Mr. Gregor&quot; \
                src=&quot;/gfx/boost_1_33_0.jpg&quot;/&gt;
-&lt;a href=&quot;/users/people/doug_gregor.html&quot;&gt;Douglas
-      Gregor&lt;/a&gt; managed this release.
+      &lt;a href=&quot;/users/people/thomas_witt.html&quot;&gt;Thomas Witt&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.
+      release possible. Special thanks go to Kim Barrett consolidating \
Boost.Iostreams +      changes from various branches and Rene Rivera for general \
build and installation +      support.
     &lt;/p&gt;
   &lt;/div&gt;
 &lt;/div&gt;</description></item></channel>

Deleted: website/public_html/beta/feed/downloads/boost_1_33_1.qbk
==============================================================================
--- website/public_html/beta/feed/downloads/boost_1_33_1.qbk	2007-11-30 16:35:30 EST \
                (Fri, 30 Nov 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]
-[@/users/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/boost_1_33_1.xml
==============================================================================
--- website/public_html/beta/feed/downloads/boost_1_33_1.xml	2007-11-30 16:35:30 EST \
                (Fri, 30 Nov 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;pack \
age_id=8041&amp;release_id=376197">http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=376197</ulink>
                
-    </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="/users/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>

Modified: website/public_html/beta/feed/ext.qbk
==============================================================================
--- website/public_html/beta/feed/ext.qbk	(original)
+++ website/public_html/beta/feed/ext.qbk	2007-11-30 16:35:30 EST (Fri, 30 Nov 2007)
@@ -19,3 +19,8 @@
     text := The text to mark.
 ]
 [template phrase[role text]'''<phrase role="'''[role]'''">'''[text]'''</phrase>''']
+
+[/  download[link]
+    Indicate the download link of a download or news item.
+]
+[template download[link]'''<download><![CDATA['''[`link]''']]></download>''']

Modified: website/public_html/beta/feed/history.rss
==============================================================================
--- website/public_html/beta/feed/history.rss	(original)
+++ website/public_html/beta/feed/history.rss	2007-11-30 16:35:30 EST (Fri, 30 Nov \
2007) @@ -8,7 +8,8 @@
     <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.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 \
GMT</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span \
class=&quot;purpose&quot;&gt;  Bugfix Release.
-    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=527428</boostbook:download><description>&lt;div \
class=&quot;description&quot;&gt; +  
   &lt;p&gt;
     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
@@ -96,7 +97,8 @@
       Assign, Date_time, Filesystem, Function, Hash, Graph, MultiArray, Multi-Index,
       Optional, Parameter, Pointer Container, Python, Signals, Smart Pointer, String
       Algorithm, Wave
-    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=507975</boostbook:download><description>&lt;div \
class=&quot;description&quot;&gt; +  
   &lt;div id=&quot;version_1_34_0.new_libraries&quot;&gt;
     &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;New \
Libraries&lt;/span&gt;&lt;/h3&gt;  &lt;ul&gt;
@@ -576,7 +578,8 @@
 &lt;/div&gt;</description></item><item><title>Version 1.33.1</title><pubDate>Tue, 5 \
Dec 2006 12:00:00 GMT</pubDate><boostbook:purpose>&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;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=376197</boostbook:download><description>&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;
@@ -775,7 +778,8 @@
       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.
-    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=348655</boostbook:download><description>&lt;div \
class=&quot;description&quot;&gt; +  
   &lt;div id=&quot;version_1_33_0.new_libraries&quot;&gt;
     &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;New \
Libraries&lt;/span&gt;&lt;/h3&gt;  &lt;ul&gt;
@@ -1110,7 +1114,8 @@
       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.
-    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=284047</boostbook:download><description>&lt;div \
class=&quot;description&quot;&gt; +  
   &lt;div id=&quot;version_1_32_0.important___new_toolset_names&quot;&gt;
     &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;Important
     - New Toolset Names&lt;/span&gt;&lt;/h3&gt;
@@ -1275,7 +1280,7 @@
   &lt;/ul&gt;
   &lt;p&gt;
     For complete list of changes see Test Library
-    &lt;a href=&quot;/libs/test/doc/release_notes.html#v1_32_0&quot;&gt;release \
notes&lt;/a&gt;. +    &lt;a \
href=&quot;/doc/libs/1_32_0/libs/test/doc/release_notes.html#v1_32_0&quot;&gt;release \
notes&lt;/a&gt;.  &lt;/p&gt;
 
       &lt;/li&gt;
@@ -1333,7 +1338,8 @@
       New Libraries: enable_if, Variant. Updated Libraries: Date Time, Filesystem,
       Iterator, MultiArray, Python, Random Number, Regex, Spirit, Test. Deprecated
       Libraries: Compose.
-    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=214915</boostbook:download><description>&lt;div \
class=&quot;description&quot;&gt; +  
   &lt;div id=&quot;version_1_31_0.new_license&quot;&gt;
     &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;New License&lt;/span&gt;&lt;/h3&gt;
     &lt;p&gt;

Modified: website/public_html/beta/feed/history/boost_1_31_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_31_0.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_31_0.qbk	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -14,6 +14,8 @@
 
 [include ext.qbk]
 
+[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=214915]
 +
 [section New License]
 A unified [@/doc/libs/1_31_0/more/license_info.html Boost Software License] has
 been developed and will gradually replace the individual licenses for most

Modified: website/public_html/beta/feed/history/boost_1_31_0.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_31_0.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_31_0.xml	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -15,6 +15,9 @@
     </articlepurpose>
   </articleinfo>
   <title>Version 1.31.0</title>
+  <para>
+    <download><![CDATA[http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=214915]]></download>
 +  </para>
   <section id="version_1_31_0.new_license">
     <title><link linkend="version_1_31_0.new_license">New License</link></title>
     <para>

Modified: website/public_html/beta/feed/history/boost_1_32_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_32_0.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_32_0.qbk	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -15,6 +15,8 @@
 
 [include ext.qbk]
 
+[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=284047]
 +
 [section Important - New Toolset Names]
 
 The names of some the Boost.Build

Modified: website/public_html/beta/feed/history/boost_1_32_0.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_32_0.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_32_0.xml	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -15,6 +15,9 @@
     </articlepurpose>
   </articleinfo>
   <title>Version 1.32.0</title>
+  <para>
+    <download><![CDATA[http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=284047]]></download>
 +  </para>
   <section id="version_1_32_0.important___new_toolset_names">
     <title><link linkend="version_1_32_0.important___new_toolset_names">Important
     - New Toolset Names</link></title>

Modified: website/public_html/beta/feed/history/boost_1_33_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_33_0.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_33_0.qbk	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -14,6 +14,8 @@
 
 [include ext.qbk]
 
+[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=348655]
 +
 [section New Libraries]
 
 * [phrase library..[@/doc/libs/1_33_1/libs/iostreams/doc/index.html Iostreams \
Library]:]

Modified: website/public_html/beta/feed/history/boost_1_33_0.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_33_0.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_33_0.xml	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -15,6 +15,9 @@
     </articlepurpose>
   </articleinfo>
   <title>Version 1.33.0</title>
+  <para>
+    <download><![CDATA[http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=348655]]></download>
 +  </para>
   <section id="version_1_33_0.new_libraries">
     <title><link linkend="version_1_33_0.new_libraries">New Libraries</link></title>
     <itemizedlist>

Modified: website/public_html/beta/feed/history/boost_1_33_1.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_33_1.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_33_1.qbk	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -8,6 +8,8 @@
 
 [include ext.qbk]
 
+[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=376197]
 +
 [section Updated Libraries]
 
 * [phrase library..[@/doc/libs/1_33_1/doc/html/any.html Any Library]:] Cast to \
reference types

Modified: website/public_html/beta/feed/history/boost_1_33_1.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_33_1.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_33_1.xml	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -14,6 +14,9 @@
     </articlepurpose>
   </articleinfo>
   <title>Version 1.33.1</title>
+  <para>
+    <download><![CDATA[http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=376197]]></download>
 +  </para>
   <section id="version_1_33_1.updated_libraries">
     <title><link linkend="version_1_33_1.updated_libraries">Updated \
Libraries</link></title>  <itemizedlist>

Modified: website/public_html/beta/feed/history/boost_1_34_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_34_0.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_34_0.qbk	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -13,6 +13,8 @@
 
 [include ext.qbk]
 
+[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=507975]
 +
 [section New Libraries]
 
 * [phrase library..[@/doc/libs/1_34_0/doc/html/foreach.html Foreach Library]:] \
`BOOST_FOREACH`

Modified: website/public_html/beta/feed/history/boost_1_34_0.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_34_0.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_34_0.xml	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -16,6 +16,9 @@
     </articlepurpose>
   </articleinfo>
   <title>Version 1.34.0</title>
+  <para>
+    <download><![CDATA[http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=507975]]></download>
 +  </para>
   <section id="version_1_34_0.new_libraries">
     <title><link linkend="version_1_34_0.new_libraries">New Libraries</link></title>
     <itemizedlist>

Modified: website/public_html/beta/feed/history/boost_1_34_1.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_34_1.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_34_1.qbk	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -8,6 +8,8 @@
 
 [include ext.qbk]
 
+[download http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428]
 +
 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
 fixes see

Modified: website/public_html/beta/feed/history/boost_1_34_1.xml
==============================================================================
--- website/public_html/beta/feed/history/boost_1_34_1.xml	(original)
+++ website/public_html/beta/feed/history/boost_1_34_1.xml	2007-11-30 16:35:30 EST \
(Fri, 30 Nov 2007) @@ -14,6 +14,9 @@
   </articleinfo>
   <title>Version 1.34.1</title>
   <para>
+    <download><![CDATA[http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=527428]]></download>
 +  </para>
+  <para>
     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
     fixes see <ulink \
url="http://svn.boost.org/trac/boost/query?status=closed&amp;milestone=Boost+1.34.1">Boost


Modified: website/public_html/beta/feed/news.rss
==============================================================================
--- website/public_html/beta/feed/news.rss	(original)
+++ website/public_html/beta/feed/news.rss	2007-11-30 16:35:30 EST (Fri, 30 Nov 2007)
@@ -8,7 +8,8 @@
     <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.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 \
GMT</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span \
class=&quot;purpose&quot;&gt;  Bugfix Release.
-    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=527428</boostbook:download><description>&lt;div \
class=&quot;description&quot;&gt; +  
   &lt;p&gt;
     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
@@ -96,7 +97,8 @@
       Assign, Date_time, Filesystem, Function, Hash, Graph, MultiArray, Multi-Index,
       Optional, Parameter, Pointer Container, Python, Signals, Smart Pointer, String
       Algorithm, Wave
-    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=507975</boostbook:download><description>&lt;div \
class=&quot;description&quot;&gt; +  
   &lt;div id=&quot;version_1_34_0.new_libraries&quot;&gt;
     &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;New \
Libraries&lt;/span&gt;&lt;/h3&gt;  &lt;ul&gt;
@@ -586,7 +588,8 @@
 &lt;/div&gt;</description></item><item><title>Version 1.33.1</title><pubDate>Tue, 5 \
Dec 2006 12:00:00 GMT</pubDate><boostbook:purpose>&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;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=376197</boostbook:download><description>&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;
@@ -785,7 +788,8 @@
       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.
-    &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><description>&lt;div \
class=&quot;description&quot;&gt; +    \
&lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.n \
et/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=348655</boostbook:download><description>&lt;div \
class=&quot;description&quot;&gt; +  
   &lt;div id=&quot;version_1_33_0.new_libraries&quot;&gt;
     &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;New \
Libraries&lt;/span&gt;&lt;/h3&gt;  &lt;ul&gt;

Modified: website/public_html/beta/users/download/index.php
==============================================================================
--- website/public_html/beta/users/download/index.php	(original)
+++ website/public_html/beta/users/download/index.php	2007-11-30 16:35:30 EST (Fri, \
30 Nov 2007) @@ -39,12 +39,20 @@
               Releases</h2><?php foreach ( $_downloads->db as $_guid => $_item ) { \
?>  
               <h3><span class=
-              "news-title"><?php print '<a name="'.$_item['guid'].'" \
id="'.$_item['guid'].'"></a><a href="'.$_item['link'].'">'; ?><?php print \
$_item['title']; ?><?php print '</a>'; ?></span></h3> +              \
"news-title"><?php print $_item['title']; ?></span></h3>  
               <p class="news-date"><?php print $_item['date']; ?></p>
 
               <p class="news-description">
-              <?php print $_item['boostbook:purpose']; ?></p><?php } ?>
+              <?php print $_item['boostbook:purpose']; ?></p>
+
+              <ul class="menu">
+                <li>
+                <?php print '<a href="'.$_item['link'].'">Details</a>'; ?></li>
+
+                <li>
+                <?php print '<a \
href="'.$_item['boostbook:download'].'">Download</a>'; ?></li> +              \
</ul><?php } ?>  
               <h2><a name="repository" id="repository"></a>Subversion
               Repository</h2>
_______________________________________________
Boost-commit mailing list
Boost-commit@lists.boost.org
http://lists.boost.org/mailman/listinfo.cgi/boost-commit


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic