Boost logo

Boost-Commit :

From: eric_at_[hidden]
Date: 2007-11-30 01:45:42


Author: eric_niebler
Date: 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
New Revision: 41488
URL: http://svn.boost.org/trac/boost/changeset/41488

Log:
Merged revisions 41443-41487 via svnmerge from
https://svn.boost.org/svn/boost/trunk

........
  r41446 | grafik | 2007-11-28 15:26:41 -0800 (Wed, 28 Nov 2007) | 1 line
  
  Fix usage of HTTPS for getting the boost-build.jam file when using an empty user, i.e. when using tarballs.
........
  r41447 | danieljames | 2007-11-28 15:40:38 -0800 (Wed, 28 Nov 2007) | 4 lines
  
  Move the review wizard reports to the new site. I'm not sure about how this is
  organized - I would the expect the review schedule (currently in
  community/reviews) and reports to be together. Refs #1368.
........
  r41457 | nesotto | 2007-11-29 01:19:24 -0800 (Thu, 29 Nov 2007) | 1 line
  
  fixed a serious oversigt
........
  r41458 | bgubenko | 2007-11-29 05:11:11 -0800 (Thu, 29 Nov 2007) | 1 line
  
  use full exact names for gcc toolsets on HP-UX
........
  r41459 | hkaiser | 2007-11-29 06:24:00 -0800 (Thu, 29 Nov 2007) | 1 line
  
  Fixing #1480 (Boost:::Spirit bug in tree_to_xml.ipp).
........
  r41460 | nesotto | 2007-11-29 06:33:29 -0800 (Thu, 29 Nov 2007) | 1 line
  
  added comment to warn about typical compile-error
........
  r41462 | hkaiser | 2007-11-29 06:44:34 -0800 (Thu, 29 Nov 2007) | 1 line
  
  Fixing compilation of Spirit test tree_to_xml for gcc.
........
  r41467 | hkaiser | 2007-11-29 09:54:16 -0800 (Thu, 29 Nov 2007) | 1 line
  
  Fixed tree_to_xml code for gcc3.4.4 (Cygwin).
........
  r41477 | chris_kohlhoff | 2007-11-29 14:26:02 -0800 (Thu, 29 Nov 2007) | 3 lines
  
  Update implementation notes to match current Win32 implementation where
  timers no longer require a separate thread.
........
  r41478 | chris_kohlhoff | 2007-11-29 14:26:44 -0800 (Thu, 29 Nov 2007) | 2 lines
  
  Add macro documentation.
........
  r41479 | danieljames | 2007-11-29 14:34:36 -0800 (Thu, 29 Nov 2007) | 4 lines
  
  Move the feature model diagrams into the community/C++ section of the beta
  site. Not a great fit but I couldn't find anywhere better to put it. Fixes
  #1349.
........
  r41480 | bemandawes | 2007-11-29 14:46:28 -0800 (Thu, 29 Nov 2007) | 1 line
  
  Add Tobias as function_types maintainer
........
  r41481 | danieljames | 2007-11-29 14:51:54 -0800 (Thu, 29 Nov 2007) | 4 lines
  
  We're missing a page for the root of the 'C++' section, so I just moved the
  links for the sub-pages from the old 'more' page into one. Obviously needs more
  work but it fills the hole for now.
........
  r41485 | grafik | 2007-11-29 17:41:20 -0800 (Thu, 29 Nov 2007) | 1 line
  
  Add combined architectures, from Mat Marcus, in support of Darwin universal builds.
........

Added:
   branches/proto/v3/libs/spirit/test/tree_to_xml.cpp
      - copied unchanged from r41485, /trunk/libs/spirit/test/tree_to_xml.cpp
Removed:
   branches/proto/v3/more/feature_model_diagrams.htm
   branches/proto/v3/more/report-apr-2006.html
   branches/proto/v3/more/report-jan-2006.html
   branches/proto/v3/more/report-nov-2007.html
   branches/proto/v3/more/report-sep-2007.html
Properties modified:
   branches/proto/v3/ (props changed)
Text files modified:
   branches/proto/v3/boost/ptr_container/clone_allocator.hpp | 6 ++
   branches/proto/v3/boost/range/iterator_range.hpp | 4
   branches/proto/v3/boost/spirit/tree/impl/tree_to_xml.ipp | 56 ++++++++++++++--------
   branches/proto/v3/libs/asio/doc/design/implementation.qbk | 6 -
   branches/proto/v3/libs/asio/doc/using.qbk | 96 ++++++++++++++++++++++++++++++++++++++++
   branches/proto/v3/libs/maintainers.txt | 1
   branches/proto/v3/libs/spirit/test/Jamfile.v2 | 1
   branches/proto/v3/more/index.htm | 18 -------
   branches/proto/v3/status/explicit-failures-markup.xml | 3
   branches/proto/v3/tools/build/v2/tools/builtin.jam | 5 ++
   branches/proto/v3/tools/regression/src/regression.py | 2
   11 files changed, 151 insertions(+), 47 deletions(-)

Modified: branches/proto/v3/boost/ptr_container/clone_allocator.hpp
==============================================================================
--- branches/proto/v3/boost/ptr_container/clone_allocator.hpp (original)
+++ branches/proto/v3/boost/ptr_container/clone_allocator.hpp 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -25,6 +25,12 @@
     template< class T >
     inline T* new_clone( const T& r )
     {
+ //
+ // @remark: if you get a compile-error here,
+ // it is most likely because you did not
+ // define new_clone( const T& ) in the namespace
+ // of T.
+ //
         T* res = new T( r );
         BOOST_ASSERT( typeid(r) == typeid(*res) &&
                       "Default new_clone() sliced object!" );

Modified: branches/proto/v3/boost/range/iterator_range.hpp
==============================================================================
--- branches/proto/v3/boost/range/iterator_range.hpp (original)
+++ branches/proto/v3/boost/range/iterator_range.hpp 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -77,8 +77,8 @@
         {
             typedef BOOST_DEDUCED_TYPENAME boost::range_difference<Left>::type sz_type;
 
- sz_type l_size = boost::size( l ),
- r_size = boost::size( r );
+ sz_type l_size = boost::distance( l ),
+ r_size = boost::distance( r );
 
             if( l_size != r_size )
                 return false;

Modified: branches/proto/v3/boost/spirit/tree/impl/tree_to_xml.ipp
==============================================================================
--- branches/proto/v3/boost/spirit/tree/impl/tree_to_xml.ipp (original)
+++ branches/proto/v3/boost/spirit/tree/impl/tree_to_xml.ipp 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -14,17 +14,20 @@
 #include <cstdio>
 #include <cstdarg>
 #include <locale>
+#include <string>
 
 #include <map>
 #include <iostream>
 #include <boost/config.hpp>
+#include <boost/assert.hpp>
+
 #ifdef BOOST_NO_STRINGSTREAM
 #include <strstream>
 #define BOOST_SPIRIT_OSSTREAM std::ostrstream
 inline
 std::string BOOST_SPIRIT_GETSTRING(std::ostrstream& ss)
 {
- ss << ends;
+ ss << std::ends;
     std::string rval = ss.str();
     ss.freeze(false);
     return rval;
@@ -58,16 +61,19 @@
             typedef std::ctype<wchar_t> ctype_t;
             return std::use_facet<ctype_t>(std::locale()).widen(c);
         }
- static std::wstring get(char const* source = "")
+ static std::basic_string<wchar_t> get(char const* source = "")
         {
- typedef std::ctype<wchar_t> ctype_t;
-
             using namespace std; // some systems have size_t in ns std
             size_t len = strlen(source);
             std::auto_ptr<wchar_t> result (new wchar_t[len+1]);
- std::use_facet<ctype_t>(std::locale())
- .widen(source, source + len, result.get());
+ result.get()[len] = '\0';
 
+ // working with wide character streams is supported only if the
+ // platform provides the std::ctype<wchar_t> facet
+ BOOST_ASSERT(std::has_facet<std::ctype<wchar_t> >(std::locale()));
+
+ std::use_facet<std::ctype<wchar_t> >(std::locale())
+ .widen(source, source + len, result.get());
             return result.get();
         }
     };
@@ -118,8 +124,9 @@
         {
         }
 
- attribute (CharT const *key_, CharT const *value_) :
- key (key_), value(value_)
+ attribute (std::basic_string<CharT> const& key_,
+ std::basic_string<CharT> const& value_)
+ : key (key_), value(value_)
         {
         }
 
@@ -183,8 +190,8 @@
     class node : public element<CharT>
     {
     public:
- node (std::basic_ostream<CharT> &ostrm_, CharT const *tag_,
- attribute<CharT> &attr)
+ node (std::basic_ostream<CharT> &ostrm_,
+ std::basic_string<CharT> const& tag_, attribute<CharT> &attr)
         : element<CharT>(ostrm_), tag(tag_)
         {
             this->output_space();
@@ -192,7 +199,8 @@
                   << impl::string_lit<CharT>::get("<") << tag_ << attr
                   << impl::string_lit<CharT>::get(">\n");
         }
- node (std::basic_ostream<CharT> &ostrm_, CharT const *tag_)
+ node (std::basic_ostream<CharT> &ostrm_,
+ std::basic_string<CharT> const& tag_)
         : element<CharT>(ostrm_), tag(tag_)
         {
             this->output_space();
@@ -216,8 +224,9 @@
     class text : public element<CharT>
     {
     public:
- text (std::basic_ostream<CharT> &ostrm_, CharT const *tag,
- CharT const *textlit)
+ text (std::basic_ostream<CharT> &ostrm_,
+ std::basic_string<CharT> const& tag,
+ std::basic_string<CharT> const& textlit)
         : element<CharT>(ostrm_)
         {
             this->output_space();
@@ -228,8 +237,10 @@
                   << impl::string_lit<CharT>::get(">\n");
         }
 
- text (std::basic_ostream<CharT> &ostrm_, CharT const *tag,
- CharT const *textlit, attribute<CharT> &attr)
+ text (std::basic_ostream<CharT> &ostrm_,
+ std::basic_string<CharT> const& tag,
+ std::basic_string<CharT> const& textlit,
+ attribute<CharT> &attr)
         : element<CharT>(ostrm_)
         {
             this->output_space();
@@ -240,9 +251,10 @@
                   << impl::string_lit<CharT>::get(">\n");
         }
 
- text (std::basic_ostream<CharT> &ostrm_, CharT const *tag,
- CharT const *textlit, attribute<CharT> &attr1,
- attribute<CharT> &attr2)
+ text (std::basic_ostream<CharT> &ostrm_,
+ std::basic_string<CharT> const& tag,
+ std::basic_string<CharT> const& textlit,
+ attribute<CharT> &attr1, attribute<CharT> &attr2)
         : element<CharT>(ostrm_)
         {
             this->output_space();
@@ -259,7 +271,8 @@
     class comment : public element<CharT>
     {
     public:
- comment (std::basic_ostream<CharT> &ostrm_, CharT const *commentlit)
+ comment (std::basic_ostream<CharT> &ostrm_,
+ std::basic_string<CharT> const& commentlit)
         : element<CharT>(ostrm_, false)
         {
             if ('\0' != commentlit[0])
@@ -285,8 +298,9 @@
                 "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n");
         }
 
- document (std::basic_ostream<CharT> &ostrm_, CharT const *mainnode,
- CharT const *dtd)
+ document (std::basic_ostream<CharT> &ostrm_,
+ std::basic_string<CharT> const& mainnode,
+ std::basic_string<CharT> const& dtd)
         : element<CharT>(ostrm_)
         {
             this->get_indent() = -1;

Modified: branches/proto/v3/libs/asio/doc/design/implementation.qbk
==============================================================================
--- branches/proto/v3/libs/asio/doc/design/implementation.qbk (original)
+++ branches/proto/v3/libs/asio/doc/design/implementation.qbk 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -194,8 +194,7 @@
 * Uses overlapped I/O and I/O completion ports for all asynchronous socket
 operations except for asynchronous connect.
 
-* Uses `select` for `deadline_timer` operations and for emulating asynchronous
-connect.
+* Uses `select` for emulating asynchronous connect.
 
 Threads:
 
@@ -204,8 +203,7 @@
 `io_service::poll_one()`.
 
 * An additional thread per `io_service` is used for the `select`
-demultiplexing. This thread is created whenever the first `deadline_timer` is
-created, or on the first call to `async_connect()`.
+demultiplexing. This thread is created on the first call to `async_connect()`.
 
 * An additional thread per `io_service` is used to emulate asynchronous host
 resolution. This thread is created on the first call to either

Modified: branches/proto/v3/libs/asio/doc/using.qbk
==============================================================================
--- branches/proto/v3/libs/asio/doc/using.qbk (original)
+++ branches/proto/v3/libs/asio/doc/using.qbk 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -130,4 +130,100 @@
 
 ]
 
+[heading Macros]
+
+The macros listed in the table below may be used to control the behaviour of
+Boost.Asio.
+
+[table
+ [[Macro][Description]]
+ [
+ [`BOOST_ASIO_ENABLE_BUFFER_DEBUGGING`]
+ [
+ Enables Boost.Asio's buffer debugging support, which can help identify when
+ invalid buffers are used in read or write operations (e.g. if a
+ std::string object being written is destroyed before the write operation
+ completes).
+
+ When using Microsoft Visual C++, this macro is defined automatically if
+ the compiler's iterator debugging support is enabled, unless
+ `BOOST_ASIO_DISABLE_BUFFER_DEBUGGING` has been defined.
+
+ When using g++, this macro is defined automatically if standard library
+ debugging is enabled (`_GLIBCXX_DEBUG` is defined), unless
+ `BOOST_ASIO_DISABLE_BUFFER_DEBUGGING` has been defined.
+ ]
+ ]
+ [
+ [`BOOST_ASIO_DISABLE_BUFFER_DEBUGGING`]
+ [
+ Explictly disables Boost.Asio's buffer debugging support.
+ ]
+ ]
+ [
+ [`BOOST_ASIO_DISABLE_DEV_POLL`]
+ [
+ Explicitly disables [^/dev/poll] support on Solaris, forcing the use of
+ a `select`-based implementation.
+ ]
+ ]
+ [
+ [`BOOST_ASIO_DISABLE_EPOLL`]
+ [
+ Explicitly disables `epoll` support on Linux, forcing the use of a
+ `select`-based implementation.
+ ]
+ ]
+ [
+ [`BOOST_ASIO_DISABLE_KQUEUE`]
+ [
+ Explicitly disables `kqueue` support on Mac OS X and BSD variants,
+ forcing the use of a `select`-based implementation.
+ ]
+ ]
+ [
+ [`BOOST_ASIO_DISABLE_IOCP`]
+ [
+ Explicitly disables I/O completion ports support on Windows, forcing the
+ use of a `select`-based implementation.
+ ]
+ ]
+ [
+ [`BOOST_ASIO_NO_WIN32_LEAN_AND_MEAN`]
+ [
+ By default, Boost.Asio will automatically define `WIN32_LEAN_AND_MEAN` when
+ compiling for Windows, to minimise the number of Windows SDK header files
+ and features that are included. The presence of
+ `BOOST_ASIO_NO_WIN32_LEAN_AND_MEAN` prevents `WIN32_LEAN_AND_MEAN` from
+ being defined.
+ ]
+ ]
+ [
+ [`BOOST_ASIO_NO_DEFAULT_LINKED_LIBS`]
+ [
+ When compiling for Windows using Microsoft Visual C++ or Borland C++, Boost.Asio
+ will automatically link in the necessary Windows SDK libraries for sockets
+ support (i.e. [^ws2_32.lib] and [^mswsock.lib], or [^ws2.lib] when
+ building for Windows CE). The `BOOST_ASIO_NO_DEFAULT_LINKED_LIBS` macro
+ prevents these libraries from being linked.
+ ]
+ ]
+ [
+ [`BOOST_ASIO_SOCKET_STREAMBUF_MAX_ARITY`]
+ [
+ Determines the maximum number of arguments that may be passed to the
+ `basic_socket_streambuf` class template's `connect` member function.
+ Defaults to 5.
+ ]
+ ]
+ [
+ [`BOOST_ASIO_SOCKET_IOSTREAM_MAX_ARITY`]
+ [
+ Determines the maximum number of arguments that may be passed to the
+ `basic_socket_iostream` class template's constructor and `connect` member
+ function. Defaults to 5.
+ ]
+ ]
+]
+
 [endsect]

Modified: branches/proto/v3/libs/maintainers.txt
==============================================================================
--- branches/proto/v3/libs/maintainers.txt (original)
+++ branches/proto/v3/libs/maintainers.txt 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -21,6 +21,7 @@
 functional
 functional/hash Daniel James <daniel_james -at- fmail.co.uk>
 fusion Joel de Guzman <joel -at- boost-consulting.com>, Dan Marsden <danmarsden -at- yahoo.co.uk>
+function_types Tobias Schwinger tschwinger -at- isonews2.com
 gil Lubomir Bourdev <lbourdev -at- adobe.com>, Hailin Jin <hljin -at- adobe.com>
 graph Douglas Gregor <dgregor -at- cs.indiana.edu>
 integer Daryle Walker <darylew -at- hotmail.com>

Modified: branches/proto/v3/libs/spirit/test/Jamfile.v2
==============================================================================
--- branches/proto/v3/libs/spirit/test/Jamfile.v2 (original)
+++ branches/proto/v3/libs/spirit/test/Jamfile.v2 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -104,6 +104,7 @@
         : [ spirit-run ast_calc_tests.cpp ]
           [ spirit-run group_match_bug.cpp ]
           [ spirit-run repeat_ast_tests.cpp ]
+ [ spirit-run tree_to_xml.cpp ]
           [ compile mix_and_match_trees.cpp ]
         ;
 

Deleted: branches/proto/v3/more/feature_model_diagrams.htm
==============================================================================
--- branches/proto/v3/more/feature_model_diagrams.htm 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
+++ (empty file)
@@ -1,112 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
-<meta name="ProgId" content="FrontPage.Editor.Document">
-<title>Feature Model Diagrams</title>
-</head>
-
-<body bgcolor="#FFFFFF" text="#000000">
-
-<p><img border="0" src="../boost.png" alt="Boost logo" width="277" height="86"></p>
-<h1>Feature Model Diagrams in text and HTML</h1>
-<p>By Beman Dawes</p>
-<h2>Introduction</h2>
-<p>In their seminal book, Generative Programming, Czarnecki and Eisenecker (C&E))
-describe how to build feature models [C&amp;E 4.4] consisting of a feature
-diagram plus semantic, rationale, and other attributes.&nbsp; Feature models are
-then used to drive design cycles which eventually lead to manual or automatic
-assembly of configurations.</p>
-<p>Feature models provide a language to describe the library variability that is
-often such an issue in boost.org discussions. The Whorf hypothesis that
-&quot;Language shapes the way we think, and determines what we can think
-about&quot; seems to apply.&nbsp; In discussion of library variability issues,
-we have been crippled by lack of a good language. With feature models we now
-have a language to carry on the dialog.</p>
-<p>The graphical feature diagrams presented by C&amp;E are not in a suitable
-form for the email discussions boost.org depends upon. The hierarchical nature
-of feature diagrams can be represented by a simple text-based feature diagram
-language.&nbsp; A feature model can also take advantage of the hyperlinks
-inherent in HTML.</p>
-<h2><a name="Grammar">Grammar</a></h2>
-<p>The grammar for the feature diagram language is expressed in Extended
-Bakus-Naur Form; ::= represents productions, [...] represents options, {...}
-represents zero or more instances, and represents | alternatives.</p>
-<blockquote>
- <pre>feature-model ::= concept-name details { feature }</pre>
- <pre>feature ::= feature-name [details]</pre>
- <pre>details ::= &quot;(&quot; feature-list &quot;)&quot; // required features
- | &quot;[&quot; feature-list &quot;]&quot; // optional features</pre>
- <pre>feature-list ::= element { &quot;|&quot; element } // one only
- | element { &quot;+&quot; element } // one or more
- | element { &quot;,&quot; element } // all
- // [a+b] equivalent to [a,b]</pre>
- <pre>element ::= feature
- | details</pre>
- <pre>concept-name ::= name</pre>
- <pre>feature-name ::= name</pre>
-</blockquote>
-<p>The usual lexical conventions apply. Names are case-insensitive and consist
-of a leading letter, followed by letters, digits, underscores or hyphens, with
-no spaces allowed.</p>
-<p>At least one instance of each name should be hyperlinked to the corresponding
-Feature Description.</p>
-<p>While the grammar is intended for written communication between people, it
-may also be trivially machine parsed for use by automatic tools.</p>
-<h2><a id="FeatureDescriptions" name="FeatureDescriptions"></a></h2>
-<p>Descriptive information is associated with each concept or feature. According
-to [C&amp;E 4.4.2] this includes:</p>
-<ul>
- <li>Semantic descriptions.</li>
- <li>Rationale.</li>
- <li>Stakeholders and client programs.</li>
- <li>Exemplar systems.</li>
- <li>Constraints and default dependency rules.</li>
- <li>Availability sites, binding sites, and binding mode.</li>
- <li>Open/Closed attribute.</li>
-</ul>
-<h2>What is a Feature?</h2>
-<p>A feature [C&amp;E 4.9.1] is &quot;anything users or client programs might
-want to control about a concept.&nbsp; Thus, during feature modeling, we
-document no only functional features ... but also implementation features, ...,
-various optimizations, alternative implementation techniques, and so on.&quot;</p>
-<h2>Example</h2>
-<blockquote>
- <pre>special-container ( organization,
- performance,
- interface ) // all required</pre>
- <pre>organization [ ordered + indexed ] // zero or more (4 configurations)</pre>
- <pre>indexed [ hash-function ] // zero or one (2 configurations)</pre>
- <pre>performance ( fast | small | balanced ) // exactly one (3 configurations)</pre>
- <pre>interface ( STL-style + cursor-style ) // one or more (3 configurations)</pre>
-</blockquote>
-<p>There should be feature descriptions for <code>some-container, organization,
-ordered, indexed, hash-function, performance, fast, small, balanced, interface,
-STL-style, and cursor-style</code>.</p>
-<p>The number of possible configurations is&nbsp; (2 + 2*2) * 3 * 3 = 54,
-assuming no constraints.</p>
-<p>There are equivalent representations. For example:</p>
-<blockquote>
- <pre>special-container ( organization[ ordered+indexed[ hash-function ]],
- performance( fast|small|balanced ),
- interface( STL-style+cursor-style ) )</pre>
-</blockquote>
-<h2>References</h2>
-<p>Krzysztof Czarnecki and Ulrich W. Eisenecker, <a href="http://www.generative-programming.org">Generative
-Programming</a>, Addison-Wesley, 2000, ISBN 0-201-30977-7</p>
-<hr>
-<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B %Y" startspan -->26 August 2004<!--webbot bot="Timestamp" endspan i-checksum="32277" --></p>
-<p>© Copyright Beman Dawes, 2000</p>
-
-<p>
- Distributed under the Boost Software License, Version 1.0. (See
- accompanying file LICENSE_1_0.txt or copy
- at <a href=
- "http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt>)
-</p>
-
-</body>
-
-</html>

Modified: branches/proto/v3/more/index.htm
==============================================================================
--- branches/proto/v3/more/index.htm (original)
+++ branches/proto/v3/more/index.htm 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -41,9 +41,6 @@
          <p>
Header Policy.&nbsp; Headers are where a
             library contacts its users, so programming practices are particularly
             important.</p>
- <p>Implementation Variations.&nbsp; Sometimes
- one size fits all, sometimes it doesn't.&nbsp; This page deals with the
- trade-offs.</p>
          <p>Library Reuse.&nbsp; Should Boost
             libraries use other boost libraries?&nbsp; What about the C++ Standard
             Library?&nbsp; It's another trade-off.</p>
@@ -77,8 +74,6 @@
             bugs.</p>
          <p><b>How to request features</b> Ways
             to request new library features.</p>
- <p><b>C++ Committee Meetings</b> FAQ for
- Boost Members wishing to attend a standards committee meeting.</p>
          <p><b><a href="boost_soc_06_overview.html">An overview of Boost participation in
             Google Summer of Code&trade; 2006</a></b> A report of our first experience
             in this open source initiative.</p>
@@ -87,19 +82,6 @@
       </blockquote>
       <h2>Articles and Papers</h2>
       <blockquote>
- <p>Error and Exception Handling describes
- approaches to errors and exceptions by <a href="../people/dave_abrahams.htm">David
- Abrahams</a>.
- </p>
- <p>Counted Body Techniques by <a href="../people/kevlin_henney.htm">
- Kevlin Henney</a> is must reading for those interested in reference
- counting, a widely used object management idiom.&nbsp; Originally published in <a href="http://www.accu.org/c++sig/public/Overload.html">
- Overload</a> magazine.</p>
- <p>Generic Programming Techniques by <a href="../people/dave_abrahams.htm">
- David Abrahams</a> and Jeremy Siek describe
- some of the techniques used in Boost libraries.</p>
- <p>Feature Model Diagrams in text and HTML
- describes how to represent feature model diagrams in text form.</p>
          <p>Portability Hints: Borland C++ 5.5.1 describes
             Borland C++ portability issues, with suggested workarounds.</p>
          <p>Portability Hints: Microsoft VC++ 6.0 SP4

Deleted: branches/proto/v3/more/report-apr-2006.html
==============================================================================
--- branches/proto/v3/more/report-apr-2006.html 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
+++ (empty file)
@@ -1,278 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.3.8: http://docutils.sourceforge.net/" />
-<title>Review Wizard Status Report for April 2006</title>
-<link rel="stylesheet" href="http://www.boost.org/rst.css" type="text/css" />
-</head>
-<body>
-<div class="document" id="review-wizard-status-report-for-april-2006">
-<h1 class="title">Review Wizard Status Report for April 2006</h1>
-<div class="section" id="news">
-<h1><a name="news">News</a></h1>
-<p>April 1, 2006 -- The &quot;Promotion Traits&quot; Review Begins (Fast-Track)
-Proposal to add promote, integral_promotion and
-floating_point_promotion class templates to type_traits library.</p>
-<p>April 6, 2006 -- The &quot;Function Types&quot; Review Begins (Fast-Track)
-This library provides a metaprogramming facility
-to classify, decompose and synthesize function-, function pointer-,
-function reference- and member function pointer types.</p>
-<p>March 22, 2006 -- Asio Accepted
-Announcement: <a class="reference" href="http://lists.boost.org/Archives/boost/2006/03/102287.php">http://lists.boost.org/Archives/boost/2006/03/102287.php></p>
-<p>February 17, 2006 - Shared Memory Library Accepted
-Announcement: <a class="reference" href="
http://lists.boost.org/boost-announce/2006/02/0083.php">http://lists.boost.org/boost-announce/2006/02/0083.php></p>
-<p>February 5, 2006 - Fixed String Library Rejected
-Announcement: <a class="reference" href="
http://lists.boost.org/boost-announce/2006/02/0081.php">http://lists.boost.org/boost-announce/2006/02/0081.php></p>
-<p>We need experienced review managers. Please take a look at
-the list of libraries in need of managers and check out their
-descriptions. If you can serve as review manager for any of
-them, email Ron Garcia or Tom Brinkman &quot;garcia at cs dot indiana dot edu&quot;
-and &quot;reportbase at gmail dot com&quot; respectively.</p>
-<p>A link to this report will be posted to www.boost.org.
-If you would like us to make any modifications or additions to this
-report before we do that, please email Ron or Tom.</p>
-<p>If you're library author and plan on submitting a library for review
-in the next 3-6 months, send Ron or Tom a
-short description of your library and we'll add it to the
-Libraries Under Construction below. We know that there are many
-libaries that are near completion, but we have hard time keeping
-track all of them. Please keep us informed about your progress.</p>
-</div>
-<div class="section" id="review-queue">
-<h1><a name="review-queue">Review Queue</a></h1>
-<blockquote>
-<ul class="simple">
-<li>Promotion Traits - April 1, 2006 (fast-track)</li>
-<li>Function Types - April 6, 2006 (fast-track)</li>
-<li>Fusion</li>
-<li>Pimpl Pointer</li>
-<li>Property Tree</li>
-<li>Physical Quantities System</li>
-<li>Intrusive Containers</li>
-</ul>
-</blockquote>
-<hr class="docutils" />
-<div class="section" id="function-types-mini-re-review">
-<h2><a name="function-types-mini-re-review">Function Types (mini-re-review)</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Tobias Schwinger</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Tom Brinkman</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://boost-sandbox.sourceforge.net/vault/">http://boost-sandbox.sourceforge.net/vault/></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">This library provides a metaprogramming facility to classify,
-decompose and synthesize function-, function pointer-, function
-reference- and member function pointer types. For the purpose of
-this documentation, these types are collectively referred to as
-function types (this differs from the standard definition and
-redefines the term from a programmer's perspective to refer to
-the most common types that involve functions).</p>
-<p>The classes introduced by this library shall conform to the
-concepts of the Boost Metaprogramming library (MPL).</p>
-<dl class="docutils">
-<dt>The Function Types library enables the user to:</dt>
-<dd><ul class="first last simple">
-<li>test an arbitrary type for being a function type of specified kind,</li>
-<li>inspect properties of function types,</li>
-<li>view and modify sub types of an encapsulated function type with
-MPL Sequence operations, and</li>
-<li>synthesize function types.</li>
-</ul>
-</dd>
-</dl>
-<p class="last">This library supports variadic functions and can be configured
-to support non-default calling conventions.</p>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="promotion-traits">
-<h2><a name="promotion-traits">Promotion Traits</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Alexander Nasonov</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Tobias Schwinger</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://cpp-experiment.sourceforge.net/promote-20050917.tar.gz">http://cpp-experiment.sourceforge.net/promote-20050917.tar.gz></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">Proposal to add promote, integral_promotion and
-floating_point_promotion class templates to type_traits library.</p>
-<p>Alexander tried it on different compilers with various success:
-GNU/Linux (gentoo-hardened): gcc 3.3 and 3.4, Intel 7, 8 and 9
-Windows: VC7 free compiler
-Sparc Solaris: Sun C++ 5.3 and 5.7</p>
-<p class="last">See comments at the beginning of
-promote_enum_test.cpp for what is broken.</p>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="intrusive-containers">
-<h2><a name="intrusive-containers">Intrusive Containers</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Olaf Krzikalla</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Thorsten Ottosen</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://people.freenet.de/turtle++/intrusive.zip">http://people.freenet.de/turtle++/intrusive.zip></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">While intrusive containers were and are widely used in C, they became
-more and more forgotten in the C++-world due to the presence of the
-standard containers, which don't support intrusive
-techniques. Boost.Intrusive not only reintroduces this technique to
-C++, but also encapsulates the implementation in STL-like
-interfaces. Hence anyone familiar with standard containers can use
-intrusive containers with ease.</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="fusion">
-<h2><a name="fusion">Fusion</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Joel de Guzman</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Ron Garcia</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://spirit.sourceforge.net/dl_more/fusion_v2/">http://spirit.sourceforge.net/dl_more/fusion_v2/>
-<a class="reference" href="
http://spirit.sourceforge.net/dl_more/fusion_v2.zip">http://spirit.sourceforge.net/dl_more/fusion_v2.zip></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">Fusion is a library of heterogenous containers and views and
-algorithms. A set of heterogenous containers (vector, list, set and
-map) is provided out of the box along with view classes that present
-various composable views over the data. The containers and views
-follow a common sequence concept with an underlying iterator concept
-that binds it all together, suitably making the algorithms fully
-generic over all sequence types.</p>
-<p class="last">The architecture is somewhat modeled after MPL which in turn is
-modeled after STL. It is code-named &quot;fusion&quot; because the library is
-the &quot;fusion&quot; of compile time metaprogramming with runtime programming.</p>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="pimpl-pointer">
-<h2><a name="pimpl-pointer">Pimpl Pointer</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Asger Mangaard</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body">Boost Sandbox (<a class="reference" href="
http://boost-consulting.com/vault/">http://boost-consulting.com/vault/>) under pimpl_ptr.</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">The pimpl idiom is widely used to reduce compile times and disable
-code coupling. It does so by moving private parts of a class from the
-.hpp file to the .cpp file.
-However, it's implementation can be tricky, and with many pitfalls
-(especially regarding memory management).
-The pimpl_ptr library is a single header file, implementing a special
-policy based smart pointer to greately ease the implementation of the
-pimpl idiom.</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="property-tree">
-<h2><a name="property-tree">Property Tree</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Marcin Kalicinski</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body">Boost Sandbox Vault - property_tree_rev4.zip
-<a class="reference" href="
http://kaalus.atspace.com/ptree">http://kaalus.atspace.com/ptree></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">Property tree is a data structure - a tree of (key, value)
-pairs. It differs from its cousin, &quot;usual&quot; property map, because
-it is hierarchical, not linear. Thus, it is more like a
-minimalistic Document Object Model, but not bound to any
-specific file format. It can store contents of XML files,
-windows registry, JSON files, INI files, even command line
-parameters. The library contains parsers for all these formats,
-and more.</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="physical-quantities-system">
-<h2><a name="physical-quantities-system">Physical Quantities System</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Andy Little</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://tinyurl.com/7m5l8">http://tinyurl.com/7m5l8></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">PQS (Physical Quantities System) is used for modelling
-physical-quantities in C++ programs. The advantages over using
-built-in types in the role include: trapping errors in
-dimensional analysis, detailed semantic specifications for
-reliable and repeatable conversions between units and
-self-documentation of source code. PQS is based around the
-principles and guidelines of the International System of Units
-(SI). The library predefines a large number of quantities,
-physical and maths constants using a common syntax. The library
-also includes (or will soon include) classes for manipulating
-quantities algebraically, for example angles (radians,
-steradians, degrees,minutes,seconds) and vectors, matrices and
-quaternions for more advanced modelling of physical systems.</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-</div>
-<div class="section" id="libraries-under-development">
-<h1><a name="libraries-under-development">Libraries under development</a></h1>
-<p>Geometry Library - Author - Andy Little (?)</p>
-<p>C2_functions Library - Author - Marcus Mendenhall</p>
-<p>Please let us know of any libraries you are currently
-developing that you intend to submit for review.</p>
-</div>
-</div>
-<hr class="docutils footer" />
-<div class="footer">
-Generated by <a class="reference" href="
http://docutils.sourceforge.net/">Docutils</a> from <a class="reference" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
-</div>
-</body>
-</html>

Deleted: branches/proto/v3/more/report-jan-2006.html
==============================================================================
--- branches/proto/v3/more/report-jan-2006.html 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
+++ (empty file)
@@ -1,325 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/" />
-<title>Review Wizard Status Report for January 2006</title>
-<link rel="stylesheet" href="http://www.boost.org/rst.css" type="text/css" />
-</head>
-<body>
-<div class="document" id="review-wizard-status-report-for-january-2006">
-<h1 class="title">Review Wizard Status Report for January 2006</h1>
-<div class="section">
-<h1><a id="news" name="news">News</a></h1>
-<p>Happy New Year! Here are some statistics regarding Boost Library
-reviews in 2005:</p>
-<blockquote>
-<ul class="simple">
-<li>12 Libraries were reviewed</li>
-<li>8 Libraries were accepted</li>
-<li>1 Library (Function Types) was accepted pending a mini-review</li>
-<li>2 Libraries were rejected</li>
-<li>1 Library has yet to receive a final verdict (ASIO)</li>
-</ul>
-</blockquote>
-<p>Policy Pointer has been removed from the review queue because the author has
-stated that it is not quite ready.</p>
-<p>We need review managers. Please take a look at the list of libraries
-in need of managers and check out their descriptions. If you can
-serve as review manager for any of them, send one of us an email.</p>
-<dl class="docutils">
-<dt>Note:</dt>
-<dd>If you have any suggestions about how we could improve
-the Review Wizard's status report,
-please email &quot;reportbase at gmail dot com&quot;
-and &quot;garcia at cs dot indiana dot edu&quot;.</dd>
-</dl>
-</div>
-<div class="section">
-<h1><a id="review-managers-needed" name="review-managers-needed">Review Managers Needed</a></h1>
-<p>There are a few libraries in the review queue in need
-of review managers. If you would like to volunteer to be a review
-manager, please contact Ron or Tom.</p>
-<p>The following libraries still require review managers:</p>
-<blockquote>
-<ul class="simple">
-<li>Fusion</li>
-<li>Shmem</li>
-<li>Pimpl Pointer</li>
-<li>Type Traits (modification)</li>
-<li>Function Types</li>
-</ul>
-</blockquote>
-</div>
-<div class="section">
-<h1><a id="review-queue" name="review-queue">Review Queue</a></h1>
-<blockquote>
-<ul class="simple">
-<li>Fixed Strings - January 19 2006 - January 28 2006</li>
-<li>Intrusive Containers</li>
-<li>Function Types (mini-re-review)</li>
-<li>Shmem</li>
-<li>Fusion</li>
-<li>Pimpl Pointer</li>
-<li>Type Traits (modification)</li>
-</ul>
-</blockquote>
-<hr class="docutils" />
-<div class="section">
-<h2><a id="fixed-strings" name="fixed-strings">Fixed Strings</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Reece Dunn</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Harmut Kaiser</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body">Boost Sandbox (<a class="reference" href="http://boost-sandbox.sourceforge.net/">http://boost-sandbox.sourceforge.net/>) under fixed_string</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">The fixed string library provides buffer overrun protection for static
-sized strings (char s[ n ]). It provides a C-style string
-interface for compatibility with C code (for
-example, porting a C program to C++).
-There is also a std::string-style interface using a class based on
-flex_string by Andre Alexandrescu with a few limitations due to the
-non-resizable nature of the class.</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section">
-<h2><a id="intrusive-containers" name="intrusive-containers">Intrusive Containers</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Olaf Krzikalla</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">to be determined</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://people.freenet.de/turtle++/intrusive.zip">http://people.freenet.de/turtle++/intrusive.zip></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">While intrusive containers were and are widely used in C, they became
-more and more forgotten in the C++-world due to the presence of the
-standard containers, which don't support intrusive
-techniques. Boost.Intrusive not only reintroduces this technique to
-C++, but also encapsulates the implementation in STL-like
-interfaces. Hence anyone familiar with standard containers can use
-intrusive containers with ease.</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section">
-<h2><a id="function-types-mini-re-review" name="function-types-mini-re-review">Function Types (mini-re-review)</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Tobias Schwinger</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body"><p class="first">to be determined</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference" href="
http://boost-sandbox.sourceforge.net/vault/">http://boost-sandbox.sourceforge.net/vault/></p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><dl class="first last docutils">
-<dt>This library provides a metaprogramming facility</dt>
-<dd><p class="first last">to classify, decompose and synthesize function-,
-function pointer-, function reference- and
-member function pointer types. For the purpose
-of this documentation, these types are
-collectively referred to as function
-types (this differs from the standard
-definition and redefines the term from
-a programmer's perspective to refer to
-the most common types that involve functions).</p>
-</dd>
-<dt>The classes introduced by this library</dt>
-<dd><p class="first last">shall conform to the concepts of the
-Boost Metaprogramming library (MPL).</p>
-</dd>
-<dt>The Function Types library enables the user to:</dt>
-<dd><ul class="first last simple">
-<li>test an arbitrary type for
-being a function type of specified kind,</li>
-<li>inspect properties of function types,</li>
-<li>view and modify sub types of an
-encapsulated function type with
-MPL Sequence operations, and</li>
-<li>synthesize function types.</li>
-</ul>
-</dd>
-<dt>This library supports variadic functions and</dt>
-<dd><p class="first last">can be configured to support
-non-default calling conventions.</p>
-</dd>
-</dl>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section">
-<h2><a id="shmem" name="shmem">Shmem</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Ion Gaztanaga</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body"><p class="first">to be determined</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first">Boost Sandbox Vault -&gt; Memory (<a class="reference" href="
http://boost-sandbox.sourceforge.net/vault/index.php?direction=0&amp;order=&amp;directory=Memory">http://boost-sandbox.sourceforge.net/vault/index.php?direction=0&amp;order=&amp;directory=Memory>)</p>
-<p><a class="reference" href="
http://ice.prohosting.com/newfunk/boost/libs/shmem/doc/html/index.html">http://ice.prohosting.com/newfunk/boost/libs/shmem/doc/html/index.html></p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">Shmem offers tools to simplify shared memory usage in
-applications. These include shared memory creation/destruction and
-synchronization objects. It also implements dynamic allocation of
-portions of a shared memory segment and an easy way to construct C++
-objects in shared memory.</p>
-<p class="last">Apart from this, Shmem implements a wide range of STL-like containers
-and allocators that can be safely placed in shared memory, helpful to
-implement complex shared memory data-bases and other efficient
-inter-process communications.</p>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section">
-<h2><a id="fusion" name="fusion">Fusion</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Joel de Guzman</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body"><p class="first">to be determined</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference" href="
http://spirit.sourceforge.net/dl_more/fusion_v2/">http://spirit.sourceforge.net/dl_more/fusion_v2/>
-<a class="reference" href="
http://spirit.sourceforge.net/dl_more/fusion_v2.zip">http://spirit.sourceforge.net/dl_more/fusion_v2.zip></p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">Fusion is a library of heterogenous containers and views and
-algorithms. A set of heterogenous containers (vector, list, set and
-map) is provided out of the box along with view classes that present
-various composable views over the data. The containers and views
-follow a common sequence concept with an underlying iterator concept
-that binds it all together, suitably making the algorithms fully
-generic over all sequence types.</p>
-<p class="last">The architecture is somewhat modeled after MPL which in turn is
-modeled after STL. It is code-named &quot;fusion&quot; because the library is
-the &quot;fusion&quot; of compile time metaprogramming with runtime programming.</p>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section">
-<h2><a id="pimpl-pointer" name="pimpl-pointer">Pimpl Pointer</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Asger Mangaard</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">to be determined</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body">Boost Sandbox (<a class="reference" href="
http://boost-consulting.com/vault/">http://boost-consulting.com/vault/>) under pimpl_ptr.</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">The pimpl idiom is widely used to reduce compile times and disable
-code coupling. It does so by moving private parts of a class from the
-.hpp file to the .cpp file.
-However, it's implementation can be tricky, and with many pitfalls
-(especially regarding memory management).
-The pimpl_ptr library is a single header file, implementing a special
-policy based smart pointer to greately ease the implementation of the
-pimpl idiom.</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section">
-<h2><a id="type-traits-modification" name="type-traits-modification">Type_Traits (modification)</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Alexander Nasonov</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body"><p class="first">to be determined</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference" href="
http://cpp-experiment.sourceforge.net/promote-20050917.tar.gz">http://cpp-experiment.sourceforge.net/promote-20050917.tar.gz>
-or <a class="reference" href="
http://cpp-experiment.sourceforge.net/promote-20050917/">http://cpp-experiment.sourceforge.net/promote-20050917/></p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">Proposal to add promote, integral_promotion and
-floating_point_promotion class templates to type_traits library.</p>
-<p>Alexander tried it on different compilers with various success:
-GNU/Linux (gentoo-hardened): gcc 3.3 and 3.4, Intel 7, 8 and 9
-Windows: VC7 free compiler
-Sparc Solaris: Sun C++ 5.3 and 5.7</p>
-<p>See comments at the beginning of promote_enum_test.cpp for what is broken.
-<a class="reference" href="
http://cpp-experiment.sourceforge.net/promote-20050917/libs/type_traits/test/promote_enum_test.cpp">http://cpp-experiment.sourceforge.net/promote-20050917/libs/type_traits/test/promote_enum_test.cpp></p>
-<p class="last">Alexander requests a fast-track review.</p>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-</div>
-<div class="section">
-<h1><a id="libraries-under-development" name="libraries-under-development">Libraries under development</a></h1>
-<div class="section">
-<h2><a id="property-tree" name="property-tree">Property Tree</a></h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Marcin Kalicinski</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body">Boost Sandbox Vault (<a class="reference" href="
http://boost-consulting.com/vault/">http://boost-consulting.com/vault/>)
-property_tree_rev3.zip</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-<p>Please let us know of any libraries you are currently
-developing that you intend to submit for review.</p>
-</div>
-</div>
-</div>
-<div class="footer">
-<hr class="footer" />
-Generated on: 2006-01-20 17:42 UTC.
-
-</div>
-</body>
-</html>

Deleted: branches/proto/v3/more/report-nov-2007.html
==============================================================================
--- branches/proto/v3/more/report-nov-2007.html 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
+++ (empty file)
@@ -1,423 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.3.8: http://docutils.sourceforge.net/" />
-<title>Review Wizard Status Report for November 2007</title>
-<link rel="stylesheet" href="http://boost.org/rst.css" type="text/css" />
-</head>
-<body>
-<div class="document" id="review-wizard-status-report-for-november-2007">
-<h1 class="title">Review Wizard Status Report for November 2007</h1>
-<div class="section" id="news">
-<h1><a name="news">News</a></h1>
-<dl class="docutils">
-<dt>November 7, 2007 - Exception Library Accepted</dt>
-<dd>Announcement: <a class="reference" href="http://lists.boost.org/boost-users/2007/11/31912.php">http://lists.boost.org/boost-users/2007/11/31912.php></dd>
-</dl>
-<p>We need experienced review managers. Please take a look at the list
-of libraries in need of managers and check out their descriptions. In
-general review managers are active boost participants or library
-contributors. If you can serve as review manager for any of them,
-email Ron Garcia or John Phillips, &quot;garcia at cs dot indiana dot edu&quot;
-and &quot;jphillip at capital dot edu&quot; respectively.</p>
-<p>A link to this report will be posted to www.boost.org.
-If you would like us to make any modifications or additions to this
-report before we do that, please email Ron or John.</p>
-<p>If you're library author and plan on submitting a library for review
-in the next 3-6 months, send Ron or John a short description of your
-library and we'll add it to the Libraries Under Construction below.
-We know that there are many libraries that are near completion, but we
-have hard time keeping track all of them. Please keep us informed
-about your progress.</p>
-</div>
-<div class="section" id="review-queue">
-<h1><a name="review-queue">Review Queue</a></h1>
-<ul class="simple">
-<li>Finite State Machines</li>
-<li>Floating Point Utilities</li>
-<li>Switch</li>
-<li>Property Map (fast-track)</li>
-<li>Graph (fast-track)</li>
-<li>Forward (fast-track)</li>
-<li>Singleton (fast-track)</li>
-<li>Factory (fast-track)</li>
-<li>Lexer</li>
-<li>Thread-Safe Signals</li>
-<li>Logging</li>
-<li>Flyweight</li>
-<li>Unordered Containers</li>
-</ul>
-<hr class="docutils" />
-<div class="section" id="finite-state-machines">
-<h2><a name="finite-state-machines">Finite State Machines</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Andrey Semashev</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Martin Vuille</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://tinyurl.com/yjozfn">Boost Sandbox Vault</a></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">The Boost.FSM library is an implementation of FSM (stands for
-Finite State Machine) programming concept. The main goals of the
-library are:</p>
-<ul class="last simple">
-<li>Simplicity. It should be very simple to create state machines using
-this library.</li>
-<li>Performance. The state machine infrastructure should not be
-very time and memory-consuming in order to be applicable in
-more use cases.</li>
-<li>Extensibility. A developer may want to add more states to an
-existing state machine. A developer should also be able to
-specify additional transitions and events for the machine with
-minimum modifications to the existing code.</li>
-</ul>
-</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="floating-point-utilities">
-<h2><a name="floating-point-utilities">Floating Point Utilities</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Johan RÃ¥de</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="http://boost-consulting.com/vault/index.php?directory=Math%20-%20Numerics">Boost Sandbox Vault</a></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">The Floating Point Utilities library contains the following:</p>
-<ul class="last simple">
-<li>Floating point number classification functions: fpclassify, isfinite,
-isinf, isnan, isnormal (Follows TR1)</li>
-<li>Sign bit functions: signbit, copysign, changesign (Follows TR1)</li>
-<li>Facets that format and parse infinity and NaN according to the C99
-standard (These can be used for portable handling of infinity and NaN
-in text streams).</li>
-</ul>
-</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="switch">
-<h2><a name="switch">Switch</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Steven Watanabe</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="http://boost-consulting.com/vault/index.php?action=downloadfile&amp;filename=mcs_units_v0.7.1.zip&amp;directory=Units">Boost Sandbox Vault</a></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">The built in C/C++ switch statement is very efficient. Unfortunately,
-unlike a chained if/else construct there is no easy way to use it when
-the number of cases depends on a template parameter. The Switch library
-addresses this issue.</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="property-map-fast-track">
-<h2><a name="property-map-fast-track">Property Map (fast-track)</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Andrew Sutton</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Jeremy Siek</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="http://svn.boost.org/svn/boost/sandbox/graph-v2">http://svn.boost.org/svn/boost/sandbox/graph-v2></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">A number of additions and modifications to the Property Map Library,
-including:</p>
-<ul class="last simple">
-<li>A constant-valued property map, useful for naturally unweighted
-graphs.</li>
-<li>A noop-writing property map, useful when you have to provide an
-argument, but just don't care about the output.</li>
-<li>See
-<a class="reference" href="
http://svn.boost.org/trac/boost/browser/sandbox/graph-v2/libs/property_map/ChangeLog">ChangeLog</a>
-for details.</li>
-</ul>
-</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="graph-fast-track">
-<h2><a name="graph-fast-track">Graph (fast-track)</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Andrew Sutton</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Jeremy Siek</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="http://svn.boost.org/svn/boost/sandbox/graph-v2">http://svn.boost.org/svn/boost/sandbox/graph-v2></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">A number of additions and modifications to the Graph Library,
-including:</p>
-<ul class="last simple">
-<li>Two new graph classes (undirected and directed) which are intended
-to make the library more approachable for new developers</li>
-<li>A suite of graph measures including degree and closeness
-centrality, mean geodesic distance, eccentricity, and clustering
-coefficients.</li>
-<li>An algorithm for visiting all cycles in a directed graph (Tiernan's
-from 1970ish). It works for undirected graphs too, but reports cycles
-twice (one for each direction).</li>
-<li>An algorithm for visiting all the cliques a graph (Bron&amp;Kerbosch).
-Works for both directed and undirected.</li>
-<li>Derived graph measures radius and diameter (from eccentricity) and
-girth and circumference (from Tiernan), and clique number (from
-Bron&amp;Kerbosch).</li>
-<li>An exterior_property class that helps hides some of the weirdness
-with exterior properties.</li>
-<li>runtime and compile-time tests for the new algorithms.</li>
-<li>a substantial amount of documentation</li>
-<li>Graph cores, implemented by David Gleich (&#64;Stanford University)</li>
-<li>Deterministic graph generators - capable of creating or inducing
-specific types of graphs over a vertex set (e.g., star graph, wheel
-graph, prism graph, etc). There are several other specific types that
-could be added to this, but I haven't had the time just yet.</li>
-</ul>
-</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="forward-fast-track">
-<h2><a name="forward-fast-track">Forward (fast-track)</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Tobias Schwinger</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">John Torjo</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://boost-consulting.com/vault/index.php?&amp;direction=0&amp;order=&amp;directory=X-Files">http://boost-consulting.com/vault/index.php?&amp;direction=0&amp;order=&amp;directory=X-Files></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">A brute-force solution to the forwarding problem.</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="singleton-fast-track">
-<h2><a name="singleton-fast-track">Singleton (fast-track)</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Tobias Schwinger</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">John Torjo</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://boost-consulting.com/vault/index.php?&amp;direction=0&amp;order=&amp;directory=X-Files">http://boost-consulting.com/vault/index.php?&amp;direction=0&amp;order=&amp;directory=X-Files></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">Three thread-safe Singleton templates with an
-easy-to-use interface.</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="factory-fast-track">
-<h2><a name="factory-fast-track">Factory (fast-track)</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Tobias Schwinger</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">John Torjo</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://boost-consulting.com/vault/index.php?&amp;direction=0&amp;order=&amp;directory=X-Files">http://boost-consulting.com/vault/index.php?&amp;direction=0&amp;order=&amp;directory=X-Files></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">Generic factories.</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="lexer">
-<h2><a name="lexer">Lexer</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Ben Hanson</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://boost-consulting.com/vault/index.php?action=downloadfile&amp;filename=boost.lexer.zip&amp;directory=Strings%20">http://boost-consulting.com/vault/index.php?action=downloadfile&amp;filename=boost.lexer.zip&amp;directory=Strings%20>-%20Text%20Processing&amp;</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">A programmable lexical analyser generator inspired by 'flex'.
-Like flex, it is programmed by the use of regular expressions
-and outputs a state machine as a number of DFAs utilising
-equivalence classes for compression.</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="thread-safe-signals">
-<h2><a name="thread-safe-signals">Thread-Safe Signals</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Frank Hess</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://www.boost-consulting.com/vault/index.php?&amp;direction=0&amp;order=&amp;directory=thread_safe_signals">http://www.boost-consulting.com/vault/index.php?&amp;direction=0&amp;order=&amp;directory=thread_safe_signals></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">A thread-safe implementation of Boost.signals that
-has some interface changes to accommodate thread safety, mostly with
-respect to automatic connection management.</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="logging">
-<h2><a name="logging">Logging</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">John Torjo</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://torjo.com/log2/">http://torjo.com/log2/></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">Used properly, logging is a very powerful tool. Besides aiding
-debugging/testing, it can also show you how your application is
-used. The Boost Logging Library allows just for that, supporting
-a lot of scenarios, ranging from very simple (dumping all to one
-destination), to very complex (multiple logs, some enabled/some
-not, levels, etc). It features a very simple and flexible
-interface, efficient filtering of messages, thread-safety,
-formatters and destinations, easy manipulation of logs, finding
-the best logger/filter classes based on your application's
-needs, you can define your own macros and much more!</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="flyweight">
-<h2><a name="flyweight">Flyweight</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Joaquín M López Muñoz</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://www.boost-consulting.com/vault/index.php?action=downloadfile&amp;filename=flyweight.zip&amp;directory=Patterns">http://www.boost-consulting.com/vault/index.php?action=downloadfile&amp;filename=flyweight.zip&amp;directory=Patterns></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">Flyweights are small-sized handle classes granting
-constant access to shared common data, thus allowing for the
-management of large amounts of entities within reasonable memory
-limits. Boost.Flyweight makes it easy to use this common
-programming idiom by providing the class template flyweight&lt;T&gt;,
-which acts as a drop-in replacement for const T.</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="unordered-containers">
-<h2><a name="unordered-containers">Unordered Containers</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Daniel James</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference" href="
http://www.boost-consulting.com/vault/index.php?action=downloadfile&amp;filename=unordered.zip&amp;directory=Containers">http://www.boost-consulting.com/vault/index.php?action=downloadfile&amp;filename=unordered.zip&amp;directory=Containers></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">An implementation of the unordered containers specified
-in TR1, with most of the changes from the recent draft standards.</td>
-</tr>
-</tbody>
-</table>
-</div>
-</div>
-<div class="section" id="libraries-under-development">
-<h1><a name="libraries-under-development">Libraries under development</a></h1>
-<div class="section" id="dataflow">
-<h2><a name="dataflow">Dataflow</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Stjepan Rajko</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">The Dataflow library provides generic support for data
-producers, consumers, and connections between the two. It also
-provides layers for several specific dataflow mechanisms, namely
-Boost.Signals, VTK data/display pipelines, and plain
-pointers. The Dataflow library came out of the Signal Network
-GSoC project, mentored by Doug Gregor.</td>
-</tr>
-<tr class="field"><th class="field-name">Status:</th><td class="field-body">I am polishing the Dataflow library for submission, and am expecting
-to add it to the review queue in the next couple of months.
-I am currently ironing out some faults in the design of the library,
-filling in missing features, and testing it on / adapting it to
-different dataflow mechanisms (currently VTK and soon
-Boost.Iostreams). As soon as I'm pretty sure that things are going
-the right way, I'll submit this to the review queue while I do the
-finishing touches.</td>
-</tr>
-</tbody>
-</table>
-</div>
-<div class="section" id="constrained-value">
-<h2><a name="constrained-value">Constrained Value</a></h2>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Robert Kawulak</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference" href="
http://rk.go.pl/f/constrained_value.zip">http://rk.go.pl/f/constrained_value.zip></p>
-<p class="last"><a class="reference" href="
http://rk.go.pl/r/constrained_value">http://rk.go.pl/r/constrained_value> (Documentation)</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">The Constrained Value library contains class templates
-useful for creating constrained objects. The simplest example
-of a constrained object is hour. The only valid values for an hour
-within a day are integers from the range [0, 23]. With this library,
-you can create a variable which behaves exactly like int, but does
-not allow for assignment of values which do not belong to the
-allowed range. The library doesn't focus only on constrained
-objects that hold a value belonging to a specified range (i.e.,
-bounded objects). Virtually any constraint can be imposed using
-appropriate predicate. You can specify what happens in case of
-assignment of an invalid value, e.g. an exception may be thrown or
-the value may be adjusted to meet the constraint criterions.</td>
-</tr>
-<tr class="field"><th class="field-name">Status:</th><td class="field-body">I'm planning to finish it in 1-2 months.</td>
-</tr>
-</tbody>
-</table>
-<p>Please let us know of any libraries you are currently
-developing that you intend to submit for review.</p>
-</div>
-</div>
-</div>
-</body>
-</html>

Deleted: branches/proto/v3/more/report-sep-2007.html
==============================================================================
--- branches/proto/v3/more/report-sep-2007.html 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
+++ (empty file)
@@ -1,329 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/" />
-<title>Review Wizard Status Report for September 2007</title>
-<link rel="stylesheet" href="http://boost.org/rst.css" type="text/css" />
-</head>
-<body>
-<div class="document" id="review-wizard-status-report-for-september-2007">
-<h1 class="title">Review Wizard Status Report for September 2007</h1>
-
-<div class="section" id="news">
-<h1>News</h1>
-<dl class="docutils">
-<dt>August 17, 2007 -- Time Series Accepted.</dt>
-<dd>Announcement: <a class="reference external" href="http://lists.boost.org/boost-announce/2007/08/0142.php">http://lists.boost.org/boost-announce/2007/08/0142.php></dd>
-<dt>July 24, 2007 -- Boost Version 1.34.1 Released.</dt>
-<dd>This is a bug fix release addressing many problems with the 1.34.0 release.
-Announcement: <a class="reference external" href="
http://svn.boost.org/trac/boost/query?status=closed&amp;milestone=Boost+1.34.1">http://svn.boost.org/trac/boost/query?status=closed&amp;milestone=Boost+1.34.1></dd>
-</dl>
-<p>We need experienced review managers. Please take a look at the list
-of libraries in need of managers and check out their descriptions. In
-general review managers are active boost participants or library
-contributors. If you can serve as review manager for any of them,
-email Ron Garcia or John Phillips, &quot;garcia at cs dot indiana dot edu&quot;
-and &quot;jphillip at capital dot edu&quot; respectively.</p>
-<p>A link to this report will be posted to www.boost.org.
-If you would like us to make any modifications or additions to this
-report before we do that, please email Ron or John.</p>
-<p>If you're library author and plan on submitting a library for review
-in the next 3-6 months, send Ron or John a short description of your
-library and we'll add it to the Libraries Under Construction below.
-We know that there are many libraries that are near completion, but we
-have hard time keeping track all of them. Please keep us informed
-about your progress.</p>
-</div>
-<div class="section" id="review-queue">
-<h1>Review Queue</h1>
-<blockquote>
-<ul class="simple">
-<li>Exception</li>
-<li>Finite State Machines</li>
-<li>Floating Point Utilities</li>
-<li>Switch</li>
-<li>Property Map (fast-track)</li>
-<li>Graph (fast-track)</li>
-</ul>
-</blockquote>
-<hr class="docutils" />
-<div class="section" id="exception">
-<h2>Exception</h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Emil Dotchevski</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body"><p class="first">Need Volunteer</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference external" href="
http://www.revergestudios.com/boost-exception/boost-exception.zip">http://www.revergestudios.com/boost-exception/boost-exception.zip></p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">The purpose of this library is to free designers of
-exception classes from having to consider what data needs to be
-stored in exception objects in order for the catch site to be
-able to make sense of what went wrong.</p>
-<p class="last">When the exception class is used, arbitrary values can be stored
-in any exception. This can be done directly in the
-throw-expression, or at a later time as the exception object
-propagates up the call stack. The ability to add data to any
-exception object after it has been thrown is important, because
-often some of the information needed to handle an exception is
-unavailable at the time of the throw.</p>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="finite-state-machines">
-<h2>Finite State Machines</h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Andrey Semashev</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body"><p class="first">Martin Vuille</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference external" href="
http://tinyurl.com/yjozfn">Boost Sandbox Vault</a></p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">The Boost.FSM library is an implementation of FSM (stands for
-Finite State Machine) programming concept. The main goals of the
-library are:</p>
-<ul class="last simple">
-<li>Simplicity. It should be very simple to create state machines using
-this library.</li>
-<li>Performance. The state machine infrastructure should not be
-very time and memory-consuming in order to be applicable in
-more use cases.</li>
-<li>Extensibility. A developer may want to add more states to an
-existing state machine. A developer should also be able to
-specify additional transitions and events for the machine with
-minimum modifications to the existing code.</li>
-</ul>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="floating-point-utilities">
-<h2>Floating Point Utilities</h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Johan RÂde</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body"><p class="first">Need Volunteer</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference external" href="http://boost-consulting.com/vault/index.php?directory=Math%20-%20Numerics">Boost Sandbox Vault</a></p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">The Floating Point Utilities library contains the following:</p>
-<ul class="last simple">
-<li>Floating point number classification functions: fpclassify, isfinite,
-isinf, isnan, isnormal (Follows TR1)</li>
-<li>Sign bit functions: signbit, copysign, changesign (Follows TR1)</li>
-<li>Facets that format and parse infinity and NaN according to the C99
-standard. (These can be used for portable handling of infinity and NaN
-in text streams.)</li>
-</ul>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="switch">
-<h2>Switch</h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Steven Watanabe</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body">Need Volunteer</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><a class="reference external" href="http://boost-consulting.com/vault/index.php?action=downloadfile&amp;filename=mcs_units_v0.7.1.zip&amp;directory=Units">Boost Sandbox Vault</a></td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">The built in C/C++ switch statement is very efficient. Unfortunately,
-unlike a chained if/else construct there is no easy way to use it when
-the number of cases depends on a template parameter. The Switch library
-addresses this issue.</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="property-map-fast-track">
-<h2>Property Map (fast-track)</h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Andrew Sutton</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body"><p class="first">Jeremy Siek</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference external" href="http://svn.boost.org/svn/boost/sandbox/graph-v2">http://svn.boost.org/svn/boost/sandbox/graph-v2></p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">A number of additions and modifications to the Property Map Library,
-including:</p>
-<blockquote class="last">
-<ul class="simple">
-<li>A constant-valued property map, useful for naturally unweighted
-graphs.</li>
-<li>A noop-writing property map, useful when you have to provide an
-argument, but just don't care about the output.</li>
-<li>See
-<a class="reference external" href="
http://svn.boost.org/trac/boost/browser/sandbox/graph-v2/libs/property_map/ChangeLog">ChangeLog</a>
-for details.</li>
-</ul>
-</blockquote>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="graph-fast-track">
-<h2>Graph (fast-track)</h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Andrew Sutton</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Review Manager:</th><td class="field-body"><p class="first">Jeremy Siek</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference external" href="http://svn.boost.org/svn/boost/sandbox/graph-v2">http://svn.boost.org/svn/boost/sandbox/graph-v2></p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">A number of additions and modifications to the Graph Library,
-including:</p>
-<ul class="last simple">
-<li>Two new graph classes (undirected and directed) which are intended
-to make the library more approachable for new developers</li>
-<li>A suite of graph measures including degree and closeness
-centrality, mean geodesic distance, eccentricity, and clustering
-coefficients.</li>
-<li>An algorithm for visiting all cycles in a directed graph (Tiernan's
-from 1970ish). It works for undirected graphs too, but reports cycles
-twice (one for each direction).</li>
-<li>An algorithm for visiting all the cliques a graph (Bron&amp;Kerbosch).
-Works for both directed and undirected.</li>
-<li>Derived graph measures radius and diameter (from eccentricity) and
-girth and circumference (from Tiernan), and clique number (from
-Bron&amp;Kerbosch).</li>
-<li>An exterior_property class that helps hides some of the weirdness
-with exterior properties.</li>
-<li>runtime and compile-time tests for the new algorithms.</li>
-<li>a substantial amount of documentation</li>
-<li>Graph cores, implemented by David Gleich (&#64;Stanford University)</li>
-<li>Deterministic graph generators - capable of creating or inducing
-specific types of graphs over a vertex set (e.g., star graph, wheel
-graph, prism graph, etc). There are several other specific types that
-could be added to this, but I haven't had the time just yet.</li>
-</ul>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-</div>
-<div class="section" id="libraries-under-development">
-<h1>Libraries under development</h1>
-<div class="section" id="dataflow">
-<h2>Dataflow</h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body">Stjepan Rajko</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body">The Dataflow library provides generic support for data
-producers, consumers, and connections between the two. It also
-provides layers for several specific dataflow mechanisms, namely
-Boost.Signals, VTK data/display pipelines, and plain
-pointers. The Dataflow library came out of the Signal Network
-GSoC project, mentored by Doug Gregor.</td>
-</tr>
-<tr class="field"><th class="field-name">Status:</th><td class="field-body">I am polishing the Dataflow library for submission, and am expecting
-to add it to the review queue in the next couple of months.
-I am currently ironing out some faults in the design of the library,
-filling in missing features, and testing it on / adapting it to
-different dataflow mechanisms (currently VTK and soon
-Boost.Iostreams). As soon as I'm pretty sure that things are going
-the right way, I'll submit this to the review queue while I do the
-finishing touches.</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-</div>
-<div class="section" id="constrained-value">
-<h2>Constrained Value</h2>
-<blockquote>
-<table class="docutils field-list" frame="void" rules="none">
-<col class="field-name" />
-<col class="field-body" />
-<tbody valign="top">
-<tr class="field"><th class="field-name">Author:</th><td class="field-body"><p class="first">Robert Kawulak</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Download:</th><td class="field-body"><p class="first"><a class="reference external" href="
http://rk.go.pl/f/constrained_value.zip">http://rk.go.pl/f/constrained_value.zip></p>
-<p><a class="reference external" href="
http://rk.go.pl/r/constrained_value">http://rk.go.pl/r/constrained_value> (Documentation)</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Description:</th><td class="field-body"><p class="first">The Constrained Value library contains class templates
-useful for creating constrained objects. The simplest example
-of a constrained object is hour. The only valid values for an hour
-within a day are integers from the range [0, 23]. With this library,
-you can create a variable which behaves exactly like int, but does
-not allow for assignment of values which do not belong to the
-allowed range. The library doesn't focus only on constrained
-objects that hold a value belonging to a specified range (i.e.,
-bounded objects). Virtually any constraint can be imposed using
-appropriate predicate. You can specify what happens in case of
-assignment of an invalid value, e.g. an exception may be thrown or
-the value may be adjusted to meet the constraint criterions.</p>
-</td>
-</tr>
-<tr class="field"><th class="field-name">Status:</th><td class="field-body"><p class="first last">I'm planning to finish it in 1-2 months.</p>
-</td>
-</tr>
-</tbody>
-</table>
-</blockquote>
-<p>Please let us know of any libraries you are currently
-developing that you intend to submit for review.</p>
-</div>
-</div>
-</div>
-</body>
-</html>

Modified: branches/proto/v3/status/explicit-failures-markup.xml
==============================================================================
--- branches/proto/v3/status/explicit-failures-markup.xml (original)
+++ branches/proto/v3/status/explicit-failures-markup.xml 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -2629,7 +2629,8 @@
             <test name="test_demo_portable_archive"/>
             <test name="test_demo_portable_archive_dll"/>
             <toolset name="acc*"/>
- <toolset name="gcc*hpux*"/>
+ <toolset name="gcc-3.4.2_hpux_pa_risc"/>
+ <toolset name="gcc-4.2.1_hpux_ia64"/>
             <note author="Boris Gubenko">
               This failure is caused by serialization library bug in the
               code visible only on big endian platforms.

Modified: branches/proto/v3/tools/build/v2/tools/builtin.jam
==============================================================================
--- branches/proto/v3/tools/build/v2/tools/builtin.jam (original)
+++ branches/proto/v3/tools/build/v2/tools/builtin.jam 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -207,6 +207,11 @@
     mips1 mips2 mips3 mips4 mips32 mips32r2 mips64
     # HP/PA-RISC
     parisc
+ # Combined architectures for platforms/toolsets that support
+ # building for multiple architectures at once. "combined"
+ # would be the default multi-arch for the toolset.
+ combined
+ combined-x86-power
     #
     : propagated optional ;
 

Modified: branches/proto/v3/tools/regression/src/regression.py
==============================================================================
--- branches/proto/v3/tools/regression/src/regression.py (original)
+++ branches/proto/v3/tools/regression/src/regression.py 2007-11-30 01:45:40 EST (Fri, 30 Nov 2007)
@@ -681,7 +681,7 @@
             raise Exception( 'SVN command "%s" failed with code %d' % ( cmd, rc ) )
 
     def svn_repository_url( self, path ):
- if hasattr(self,'user') and self.user is not None and self.user != 'anonymous':
+ if self.user != 'anonymous' and self.user != '':
             return '%s%s' % (repo_root['user'],path)
         else:
             return '%s%s' % (repo_root['anon'],path)


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk