From ec1b4485cfc6cb04713145925f0b6696ad5c0cba Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 2 Jan 2007 18:31:13 +0000 Subject: [PATCH 01/19] Extracted from old Getting Started guide. [SVN r36563] --- cvs.html | 112 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 cvs.html diff --git a/cvs.html b/cvs.html new file mode 100644 index 0000000..7b85554 --- /dev/null +++ b/cvs.html @@ -0,0 +1,112 @@ + + + + + Boost CVS Repository + + + + + + + + + + + + + + +
+ + + + + +
+ + + + +
+

Home
+ . Libraries
+ . People
+ . FAQ
+ . More

+
+
+
+ +

Boost's CVS Repository

+ +

All Boost files, including the entire distribution tree including web + site HTML is maintained in a CVS repository. Command line, GUI, or browser + access is available.

+ +

Boost CVS access via command line or graphical clients

For those + who have CVS clients installed, the libraries are also available from the + public Boost CVS + repository. Free command line clients (often already installed on + Linux/Unix systems) are available for many systems, and free GUI clients + are available for Windows, Mac, and other systems. + +

See the much improved CVS documentation (Section + F) from SourceForge, which includes links to the home pages for various GUI + and command line clients.

+ +

The general procedure for command-line clients is something like + this:

+ +
+ cvs -d:pserver:anonymous@boost.cvs.sourceforge.net:/cvsroot/boost + login
+ [Hit <return> when it asks for a password]
+ cvs -z3 -d:pserver:anonymous@boost.cvs.sourceforge.net:/cvsroot/boost + checkout boost
+ cvs -d:pserver:anonymous@boost.cvs.sourceforge.net:/cvsroot/boost + logout +
Read the manual for your CVS client for further information. + +

This access is read-only; if you are a library author and wish to have + CVS write access, please contact one of the moderators.

+ +

Boost CVS access via web Browser

For access to the CVS archive from any modern web + browser, you can also use the web + browser  interface.  Try one of the color diffs to see how a + file has changed over time. Note: this interface is only suitable + for viewing individual files and their revision histories. + +

Documentation generated from + BoostBook in CVS

+ +

Some of the Boost documentation is generated from BoostBook XML source stored in the CVS + repository, and will not appear directly in the CVS tree as readable HTML. + View a nightly build of the generated HTML on the + Nightly Generated Documentation page. Where generated HTML is missing + from the CVS tree, an attempt has been made to include redirection to this + nightly build, but if you are away from an internet connection you may want + to download the generated documentation archive from the aforementioned + page so you can browse those documents offline.

+ +
+ +

Revised $Date$

+ +

Copyright © Rene Rivera 2003.
+ Copyright © Jens Maurer 2001.
+ Copyright © John Maddock 2004.

+ +

Distributed under the Boost Software License, Version 1.0. (See + accompanying file LICENSE_1_0.txt or copy + at www.boost.org/LICENSE_1_0.txt)

+ + From 08bd857c513fb84b81521b5e1e59384be81b7887 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 3 Jan 2007 03:22:11 +0000 Subject: [PATCH 02/19] Fixes from Javier Estrada [SVN r36566] --- getting_started/detail/distro.rst | 4 ++-- getting_started/unix-variants.html | 8 ++++---- getting_started/windows.html | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/getting_started/detail/distro.rst b/getting_started/detail/distro.rst index bf429a1..708dfd1 100644 --- a/getting_started/detail/distro.rst +++ b/getting_started/detail/distro.rst @@ -5,7 +5,7 @@ The Boost Distribution ====================== -This is is a sketch of the directory structure you'll end up with: +This is a sketch of the resulting directory structure: .. parsed-literal:: @@ -79,7 +79,7 @@ It's important to note the following: #include "boost/\ *whatever*\ .hpp" - depending on your religion as regards the use of angle bracket + depending on your preference regarding the use of angle bracket includes. |forward-slashes| 4. Don't be distracted by the ``doc``\ |/| subdirectory; it only diff --git a/getting_started/unix-variants.html b/getting_started/unix-variants.html index f247ed7..1d4365f 100644 --- a/getting_started/unix-variants.html +++ b/getting_started/unix-variants.html @@ -89,7 +89,7 @@ from

2   The Boost Distribution

-

This is is a sketch of the directory structure you'll end up with:

+

This is a sketch of the resulting directory structure:

 boost_1_34_0/ .................The “boost root directory”
    index.htm .........A copy of www.boost.org starts here
@@ -153,7 +153,7 @@ Boost #include direct
 
 #include "boost/whatever.hpp"
 
-

depending on your religion as regards the use of angle bracket +

depending on your preference regarding the use of angle bracket includes.

  • Don't be distracted by the doc/ subdirectory; it only @@ -307,7 +307,7 @@ instructions.

    5.2.2   Identify Your Toolset

    First, find the toolset corresponding to your compiler in the following table.

    - +
    @@ -582,7 +582,7 @@ of -mt. interoperability with other compiled code. For each such feature, a single letter is added to the tag:

    -
    +
    diff --git a/getting_started/windows.html b/getting_started/windows.html index 4330058..11817cf 100644 --- a/getting_started/windows.html +++ b/getting_started/windows.html @@ -77,7 +77,7 @@ distribution.

    2   The Boost Distribution

    -

    This is is a sketch of the directory structure you'll end up with:

    +

    This is a sketch of the resulting directory structure:

     boost_1_34_0\ .................The “boost root directory”
        index.htm .........A copy of www.boost.org starts here
    @@ -144,7 +144,7 @@ Boost #include direct
     
     #include "boost/whatever.hpp"
     
    -

    depending on your religion as regards the use of angle bracket +

    depending on your preference regarding the use of angle bracket includes. Even Windows users can (and, for portability reasons, probably should) use forward slashes in #include directives; your compiler doesn't care.

    @@ -370,7 +370,7 @@ instructions.

    5.2.2   Identify Your Toolset

    First, find the toolset corresponding to your compiler in the following table.

    -
    +
    @@ -663,7 +663,7 @@ of -mt. interoperability with other compiled code. For each such feature, a single letter is added to the tag:

    -
    +
    From c42c427be52fd4301dedbfe740a477f1aa38f4f7 Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Wed, 3 Jan 2007 21:12:45 +0000 Subject: [PATCH 03/19] *** empty log message *** [SVN r36576] --- formal_review_schedule.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index d3a278d..392b8e7 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -91,6 +91,24 @@ authors address issues raised in the formal review.

    + + + + + + + + + + + + + + + +
    -
    Scope ExitAlexander Nasonov + Boost Sandbox VaultNeeded-
    Finite State MachinesAndrey Semashev + Boost Sandbox VaultNeeded-

    Past Review Results and Milestones

    From 6c3587d312869cf40c88f8bad1d4e459dca22872 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 4 Jan 2007 09:58:04 +0000 Subject: [PATCH 04/19] Added new entry. [SVN r36584] --- whos_using/using.qbk | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/whos_using/using.qbk b/whos_using/using.qbk index cf9b010..ee0d629 100644 --- a/whos_using/using.qbk +++ b/whos_using/using.qbk @@ -397,6 +397,16 @@ development team would like to thank everyone for their hard work on behalf of C++ coders everywhere."] ] +[blurb [*LW-WORKS Software, Clipboard Recorder]\n\n +[@http://www.lw-works.com/clipboard-recorder Clipboard Recorder] +is an application that helps users to manage their +clipboard history and provides easy ways for users to access their +saved clipboard data.\n\n +Libraries used: +Smart Pointer, Serialization, Asio, String Algorithms, Bind, Thread, +Conversion/Cast, Iostreams. +] + [endsect] [section:open Open Source Boost] From c96a0866fc0596f49aa45ba3c17eef41ab1a731a Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Fri, 5 Jan 2007 15:44:19 +0000 Subject: [PATCH 05/19] *** empty log message *** [SVN r36593] --- formal_review_schedule.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index 392b8e7..e2d58b5 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -109,6 +109,15 @@ authors address issues raised in the formal review.

    - + + Statistical Distributions + John Maddock + + Boost Sandbox Vault (math-toolkit) + Needed + - + +

    Past Review Results and Milestones

    From 019d9b7d80e58ca7829cc05bcbb658aecadd590d Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Sun, 7 Jan 2007 03:35:58 +0000 Subject: [PATCH 06/19] *** empty log message *** [SVN r36635] --- formal_review_schedule.html | 1 - 1 file changed, 1 deletion(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index e2d58b5..3a17e8b 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -139,7 +139,6 @@ authors address issues raised in the formal review.

    2006 November 6 - 2006 November 17 Accepted - - From 1d49246c8a62b9d68bb82930835636649181535d Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Tue, 9 Jan 2007 18:17:52 +0000 Subject: [PATCH 07/19] Fixed some latin characters (using standard HTML names). Added a couple of review managers. [SVN r36676] --- formal_review_schedule.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index 3a17e8b..d7ca55e 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -69,7 +69,7 @@ authors address issues raised in the formal review.

    Matias Capeletto Boost Sandbox Vault - Needed + Ion Gaztañaga - @@ -84,10 +84,10 @@ authors address issues raised in the formal review.

    Intrusive Containers - Ion Gaztaaga + Ion Gaztañaga Boost Sandbox Vault - Needed + Joaquín Mª López Muñoz - @@ -213,7 +213,7 @@ authors address issues raised in the formal review.

    Shmem (now Interprocess) - Ion Gaztanaga + Ion Gaztañaga Fred Bertsch 2006 February 6 - 2006 February 15 Indexed Set (now MultiIndex) - Joaqun Ma Lpez Muoz + Joaquín Mª López Muñoz Pavel Vozenilek 2004 Mar 20 - 30 @@ -454,7 +454,7 @@ authors address issues raised in the formal review.

    enable_if - Jaakko Jrvi & Jeremiah Willcock & Andrew Lumsdaine + Jaakko Järvi & Jeremiah Willcock & Andrew Lumsdaine (fasttrack) Dec 2003 Accepted -- added in 1.31 @@ -545,7 +545,7 @@ authors address issues raised in the formal review.

    Minmax - Herv Bronnimann + Hervé Bronnimann Thomas Witt 28 Sep - 07 Oct 2002 Accepted -- added in 1.32 @@ -559,7 +559,7 @@ authors address issues raised in the formal review.

    Interval Arithmetic Library - Herv Bronnimann & Guillaume Melquiond & Sylvain Pion + Hervé Bronnimann & Guillaume Melquiond & Sylvain Pion Beman Dawes 31 Aug - 09 Sep 2002 Accepted -- added in 1.30 @@ -594,7 +594,7 @@ authors address issues raised in the formal review.

    Lambda - Jaakko Jrvi & Gary Powell + Jaakko Järvi & Gary Powell Aleksey Gurtovoy 08 - 20 Mar 2002 Accepted and added @@ -685,7 +685,7 @@ authors address issues raised in the formal review.

    Tuples Library - Jaakko J�vi + Jaakko Järvi Beman Dawes Jun 17 - 26 Accepted and added From 40fef840baa59749df4e120526aa90202c343a3a Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Wed, 10 Jan 2007 16:25:15 +0000 Subject: [PATCH 08/19] *** empty log message *** [SVN r36682] --- formal_review_schedule.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index d7ca55e..f75de30 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -70,7 +70,7 @@ authors address issues raised in the formal review.

    Boost Sandbox Vault Ion Gaztañaga - - + February 15 2007- February 25, 2007 @@ -88,7 +88,7 @@ authors address issues raised in the formal review.

    Boost Sandbox Vault Joaquín Mª López Muñoz - - + March 1, 2007 - March 10, 2007 From c0d59b6849b1c01cda9f7735dbadfabc83d111c1 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 11 Jan 2007 17:22:06 +0000 Subject: [PATCH 09/19] Update bbv2 instructions. [SVN r36690] --- separate_compilation.html | 143 +++++--------------------------------- 1 file changed, 19 insertions(+), 124 deletions(-) diff --git a/separate_compilation.html b/separate_compilation.html index 3425be5..2a2f325 100644 --- a/separate_compilation.html +++ b/separate_compilation.html @@ -105,10 +105,10 @@ whatever get_whatever(); although you probably shouldn't need to:  

    • - If you don't use these in the library source files (but do in your - library's headers) and the user attempts to compile the library source with a - non-default ABI setting, then they will get compiler errors if there are any - conflicts.
    • + If you don't + use these in the library source files (but do in your library's headers) and + the user attempts to compile the library source with a non-default ABI setting, + then they will get compiler errors if there are any conflicts.
    • If you do include them in both the library's headers and the library source files, then the code should always compile no matter what the compiler @@ -138,11 +138,11 @@ whatever get_whatever(); as to which is supported by default:

      • - On Unix platforms it typically makes no difference to the code: the user just - selects in their makesfile which library they prefer to link to.
      • + On Unix platforms it typically makes no difference to the code: the user just + selects in their makesfile which library they prefer to link to.
      • - On Windows platforms, the code has to be specially annotated to support DLL's, - so we need to pick one option as the default and one as an alternative.
      • + On Windows platforms, the code has to be specially annotated to support DLL's, + so we need to pick one option as the default and one as an alternative.
      • On Windows platforms, we can inject special code to automatically select which library variant to link against: so again we need to decide which is to be the @@ -357,122 +357,18 @@ libboost_regex-vc71-sgd-1_31.lib

        Changes Affecting the Build System

        Creating the library Jamfile

        The Jamfile for building library "whatever" typically lives in - boost-root/libs/whatever/build, start by defining the project root for the - Jamfile:

        -
        subproject libs/whatever/build ; 
        -

        Then add the static library build target (if supported):

        -
        lib 
        -   boost_whatever
        -      : # list all the sources for this
        -      library:
        -   ../src/whatever.cpp
        -      : # all build requirements go
        -      here. # the "common-variant-tag" rule ensures that the library will
        -      # be named according to the rules used by the install
        -      # and auto-link features:
        -      common-variant-tag 
        -      # set include path for Boost headers:
        -      <sysinclude>$(BOOST_ROOT)
        -   : 
        -      # list default build variants here
        -      debug release 
        -   ; 
        -

        Then add the dll build target (if supported).  In this case the build - requirements section get an extra define: so that our sources know to export - their own symbols (and import those from any other boost libs on which we may - be dependent).  We also restict shared library builds to dynamic-runtime - build variants, if we don't do this then dll's linked against static runtimes - are unlikely to function correctly (the dll will have a separate runtime from - the executable using it, this generally causing problems with new and - delete, as well as exception handling runtimes).

        -
        dll 
        -   boost_whatever
        -      : # list all the sources for this
        -      library:
        -   ../src/whatever.cpp
        -      : # all build requirements go
        -      here. # the "common-variant-tag" rule ensures that the library will
        -      # be named according to the rules used by the install
        -      # and auto-link features:
        -      common-variant-tag 
        -      # tell our source that we're building (and maybe using) dll's:
        -      <define>BOOST_ALL_DYN_LINK=1
        -      # only build this for dynamic runtimes:
        -      <runtime-link>dynamic
        -      # set include path for Boost headers:
        -      <sysinclude>$(BOOST_ROOT)
        -   : 
        -      # list default build variants here
        -      debug release 
        -   ; 
        -
        -

        Now add an install target so that Boost.Install can find this library to - install:

        -
        install whatever lib
        -    : <dll>boost_whatever <lib>boost_whatever
        -    ;
        -
        -

        Finally add a stage target that will copy the built libraries to a common - sub-directory (boost-root/stage/lib):

        -
        stage stage/lib : <lib>boost_whatever <dll>boost_whatever
        -    :
        -        # copy to a path rooted at BOOST_ROOT:
        -        <locate>$(BOOST_ROOT)
        -        # make sure the names of the libraries are correctly named:
        -        common-variant-tag
        -        # add this target to the "stage" and "all" psuedo-targets:
        -        <target>stage
        -        <target>all
        -    :
        -        debug release
        -    ;
        -
        + boost-root/libs/whatever/build, the only extra step required is to add a + <define> requirement to the library target so that your code knows + whether it's building a dll or static library, a typical Jamfile would like + like this:

        +
        +lib boost_regex : ../src/whatever.cpp : 
        +  <link>shared:<define>BOOST_WHATEVER_DYN_LINK=1 ;
        + 

        Testing Auto-linking

        -

        Testing the auto-link feature reasonable straightforward using - the Boost.build system: we need to build the "whatever" library's test - files without explicitly specifying the library to link to in the Jamfile, for - example:

        -
        subproject libs/whatever/test/auto-link-test ;
        -
        -# bring in the rules for testing
        -import testing ;
        -
        -# start with a static linking version:
        -
        -run 
        -   # sources
        -      ../whatever_test.cpp
        -   :
        -   :	# input files
        -   : 	# requirements
        -      <library-path>../../../../stage/lib
        -      <define>BOOST_LIB_DIAGNOSTIC=1
        -   : 	# program name
        -      whatever_test          
        -   ;
        -
        -   # and then a dll linking version:
        -   run 
        -   # sources
        -      ../whatever_test.cpp
        -   :
        -   :	# input files
        -   : 	# requirements
        -      <library-path>../../../../stage/lib
        -      <define>BOOST_LIB_DIAGNOSTIC=1
        -      <define>BOOST_ALL_DYN_LINK=1
        -      <runtime-link>dynamic
        -   : 	# program name
        -      whatever_test_dll          
        -   ;
        -
        -
        -

        Please note however that this Jamfile will only build with compilers that do - actually support auto-linking, so it should not be added to the regular - regression tests.  The Jamfile should also be built for all possible build - variants, for the Microsoft / Borland compilers that means doing a:

        -
        bjam -sBUILD="release debug <threading>multi/single <runtime-link>static/dynamic" test
        -      
        +

        Testing the auto-link feature is somewhat convoluted, and requires access + to a compiler that supports the feature: refer to + libs/config/test/link/test/Jamfile.v2 for an example.


        Revised @@ -487,4 +383,3 @@ run attribution then please provide a link to this article.

        - From 25241333c696aab1524714b3bd8d42cc7607ed10 Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Wed, 31 Jan 2007 18:39:46 +0000 Subject: [PATCH 10/19] *** empty log message *** [SVN r36863] --- formal_review_schedule.html | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index f75de30..4d54fea 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -55,14 +55,6 @@ authors address issues raised in the formal review.

        - - - Accumulators - Eric Niebler - - Boost Sandbox Vault - John R. Phillips - January 29, 2007 - February 7, 2007 - Bimap @@ -118,6 +110,16 @@ authors address issues raised in the formal review.

        - + + Floating Point Utilities + Johan Råde + + Boost Sandbox Vault + Needed + - + + +

        Past Review Results and Milestones

        @@ -132,6 +134,16 @@ authors address issues raised in the formal review.

        Result + + Accumulators + Eric Niebler + John R. Phillips + January 29, 2007 - February 7, 2007 + + Ongoing + + + Function Types (Re-review) Tobias Schwinger From 4e887f4b0d5dffbd14c3bcce8efabc724826821c Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Wed, 7 Feb 2007 19:18:20 +0000 Subject: [PATCH 11/19] *** empty log message *** [SVN r36906] --- formal_review_schedule.html | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index 4d54fea..880fba2 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -1,17 +1,16 @@ - + - - Formal Review Schedule - +
        @@ -35,7 +34,7 @@ the web site. There is often a lag between acceptance and site posting as authors address issues raised in the formal review.

        Schedule

        -
        boost.png (6897 bytes)
        +
        @@ -59,7 +58,7 @@ authors address issues raised in the formal review.

        - @@ -77,7 +76,7 @@ authors address issues raised in the formal review.

        - @@ -119,11 +118,28 @@ authors address issues raised in the formal review.

        + + + + + + + + + + + + + + +
        Submission Submitter
        Bimap Matias Capeletto + Boost Sandbox Vault Ion Gaztañaga February 15 2007- February 25, 2007
        Intrusive Containers Ion Gaztañaga + Boost Sandbox Vault Joaquín Mª López Muñoz March 1, 2007 - March 10, 2007 -
        SwitchSteven Watanabe + Boost Sandbox Vault Needed-
        Quantitative UnitsMatthias Schabel + Boost Sandbox Vault Needed-

        Past Review Results and Milestones

        - +
        From 98eb96de877dd6374093c5df9a1be2e456293f70 Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Wed, 7 Feb 2007 22:46:15 +0000 Subject: [PATCH 12/19] *** empty log message *** [SVN r36907] --- formal_review_schedule.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index 880fba2..2b5bbad 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -4,7 +4,7 @@ - + Formal Review Schedule From e5766be3231099f04d05911133d6014ae0754b99 Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Thu, 15 Feb 2007 13:50:57 +0000 Subject: [PATCH 13/19] *** empty log message *** [SVN r36946] --- formal_review_schedule.html | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index 2b5bbad..db85386 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -54,16 +54,6 @@ authors address issues raised in the formal review.

        - - - - - - - - - @@ -96,7 +86,7 @@ authors address issues raised in the formal review.

        - + @@ -105,7 +95,7 @@ authors address issues raised in the formal review.

        - + @@ -132,7 +122,7 @@ authors address issues raised in the formal review.

        - + @@ -150,13 +140,22 @@ authors address issues raised in the formal review.

        + + + + + + + + - + From 8499cc1869e7451da3e83280310da1d3065fe252 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 18 Feb 2007 14:26:43 +0000 Subject: [PATCH 14/19] Closes http://sourceforge.net/tracker/index.php?func=detail&aid=1612399&group_id=7586&atid=307586 [SVN r36992] --- mailing_lists.htm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/mailing_lists.htm b/mailing_lists.htm index 3f860a8..6747b8e 100644 --- a/mailing_lists.htm +++ b/mailing_lists.htm @@ -155,6 +155,8 @@ div.admonition p.admonition-title {
        Boost Sandbox CVS
        + +
        #boost IRC channel

        Boost Users mailing list (also available @@ -383,11 +385,18 @@ div.admonition p.admonition-title { listed on its Sourceforge Project Page.

        + +

        #boost IRC channel

        + +

        In addition to the mailing lists presented above, a #boost IRC channel on + freenode is frequented by some boost users. + As usual with IRC channels, one should not necessarily expect that his questions + will be answered. The channel is not moderated.


        Revised 04 December, 200511 December, 2006

        Copyright Beman Dawes and David Abrahams 2001-2005

        From 343bf35001cdc44b7f4dcf415b3bcab3e02ec4e5 Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Thu, 22 Feb 2007 20:04:38 +0000 Subject: [PATCH 15/19] *** empty log message *** [SVN r37036] --- formal_review_schedule.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index db85386..501ae87 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -154,7 +154,7 @@ authors address issues raised in the formal review.

        - From 8faa3e0d485ed78afb61b887bd996ecf436f6a23 Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Thu, 22 Feb 2007 23:09:44 +0000 Subject: [PATCH 16/19] *** empty log message *** [SVN r37037] --- formal_review_schedule.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index 501ae87..b6d25cb 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -144,7 +144,7 @@ authors address issues raised in the formal review.

        - + From 7e043f6736a578698126cfdb91676c1a8827aea1 Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Fri, 23 Feb 2007 15:40:10 +0000 Subject: [PATCH 17/19] *** empty log message *** [SVN r37048] --- formal_review_schedule.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formal_review_schedule.html b/formal_review_schedule.html index b6d25cb..9f4ec59 100644 --- a/formal_review_schedule.html +++ b/formal_review_schedule.html @@ -69,7 +69,7 @@ authors address issues raised in the formal review.

        - + From 41a0f39f877930870df8f0cfeaa2b0a2dd9b0566 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 26 Feb 2007 06:42:41 +0000 Subject: [PATCH 18/19] Redirect to the BoostCon site [SVN r37076] --- BoostCon07.html | 418 +---------------------------------- BoostCon07_session_call.html | 116 +--------- 2 files changed, 12 insertions(+), 522 deletions(-) diff --git a/BoostCon07.html b/BoostCon07.html index 2a38589..c9a468e 100644 --- a/BoostCon07.html +++ b/BoostCon07.html @@ -1,418 +1,12 @@ - - - + - - -BoostCon 2007 • May 14-18 2007 Boost - + -
        Submission Submitter-
        BimapMatias Capeletto - Boost Sandbox VaultIon GaztañagaFebruary 15 2007- February 25, 2007
        Globally Unique Identifier Andy Tompkins Andrey Semashev Boost Sandbox VaultNeededMartin Vuille -
        John Maddock Boost Sandbox Vault (math-toolkit)NeededMatthias Schabel -
        Matthias Schabel Boost Sandbox Vault NeededJohn R. Phillips -
        Result
        BimapMatias CapelettoIon GaztañagaFebruary 15 2007- February 25, 2007 + Ongoing
        Accumulators Eric Niebler John R. Phillips January 29, 2007 - February 7, 2007 - Ongoing + Accepted
        Eric Niebler John R. Phillips January 29, 2007 - February 7, 2007 + Accepted
        Bimap Matias Capeletto Ion GaztañagaFebruary 15 2007- February 25, 2007February 15 2007- March 2, 2007 Ongoing
        Boost Sandbox Vault Joaquín Mª López MuñozMarch 1, 2007 - March 10, 2007March 12, 2007 - March 21, 2007
        ----- - - - - - - - - - - - - - - - - - - -
        David AbrahamsBeman DawesJeff Garland
        Joel de GuzmanKevlin HenneyScott Meyers
        Eric NieblerSean ParentRene Rivera
        Jeremy SiekMatthias Troyer 
        - - - - diff --git a/BoostCon07_session_call.html b/BoostCon07_session_call.html index 8249e72..f905cea 100644 --- a/BoostCon07_session_call.html +++ b/BoostCon07_session_call.html @@ -1,116 +1,12 @@ - - - - -Boost Conference 2007 + - - - -

        -

        - - -

        Boost Conference 2007: - Call for Sessions

        -

        The first annual Boost conference will take place in Aspen, Colorado, May - 14-18, 2007.

        -

        This inaugural Boost conference promises to be the main face-to-face - venue for all things Boost, from using libraries to writing them, from - evangelizing Boost to deployment within your organization, from - infrastructure and process to vision and mission, and from TR1 to TR2. Given - the range and interests of the participants, the event is going to be - intense and in-depth.

        -

        BoostCon 2007 is looking for session presenters. We invite you to propose a session.

        -

        More - BoostCon 2007 information is available on the Boost web site.

        -

        Session formats
        - Session topics
        - Submitting a proposal
        - Timeline
        - Other arrangements

        -

        Session formats

        -

        Presentations focus on a practitioners ideas and - experience with anything relevant to Boost and Boost users.

        -

        Panels feature three or four people presenting their - ideas and experiences relating to Boost relevant, controversial, emerging, - or unresolved issues. Panels may be conducted in several ways, such as - comparative, analytic, or historic.

        -

        Tutorials are formally prepared sessions at which - instructors teach conference participants specific Boost relevant skills. -

        -

        Workshops provide an active arena for advancements in - Boost relevant topics. Workshops provide the opportunity for experienced - practitioners to develop new ideas about a topic of common interest and - experience.

        -

        Other formats may also be of interest. Don't hold back a - proposal just because it doesn't fit into a pigeonhole.

        -

        Session topics

        -

        Topics of interest include, but are not restricted to, the following:

        -
          -
        • General tutorial sessions introducing one or more Boost libraries
        • -
        • In-depth sessions on using specific libraries
        • -
        • Case studies on using Boost
        • -
        • Experts panels
        • -
        • Advanced sessions on implementation techniques used within Boost - libraries
        • -
        • TR1 (and TR2)
        • -
        • Development workshops to extend or enhance existing Boost libraries -
        • -
        • Workshops on design process
        • -
        • Infrastructure workshops -
            -
          • Build tools
          • -
          • Website
          • -
          • Testing
          • -
          -
        • -
        • C++0x and how it will change life for users and library writers
        • -
        • Concepts and Generic Programming
        • -
        • Other topics likely to be of great interest to Boost users and - developers
        • -
        -

        Interactive and collaborative sessions are encouraged, as this is the - nature of both the online Boost community and the style of learning and - participation that has proven most successful at such events. Sessions can - be tutorial based, with an emphasis on interaction and participant - involvement, or workshop based, whether hands-on programming or paper-based, - discussion-driven collaborative work.

        -

        Submitting a proposal

        -

        Tentative scheduling plans are for 90 minute sessions. You may submit a - proposal for fractions or multiples of 90-minutes. Fractional proposals will - be grouped into 90 minute sessions covering related topics. Longer sessions, - such as tutorials and classes, will be assigned 90 minute, three hour (i.e. - half day), or six hour (i.e. full day) time slots.

        -

        Please include:

        -
          -
        • The working title.
        • -
        • Type of session: presentation/panel/tutorial/workshop/lightning-talk/other
        • -
        • A paragraph or two describing the topic covered, suitable for the conference - web site
        • -
        • Proposed length: 10-20 minute lightning-talks, 45 minutes, 90 minutes, half-day, full day
        • -
        • Alternate lengths, if you are willing to made adjustments: 10-20 - minute lightning-talks, 45 minutes, 90 minutes, half-day, full day
        • -
        • Audience: users/developers/both
        • -
        • Level: basic/intermediate/advanced
        • -
        • A biography, suitable for the conference web site
        • -
        • Your contact information (will not be made public)
        • -
        -

        Please submit via email to boostcon-program@lists.boost-consulting.com, with a - subject that begins "BoostCon - proposal"

        -
        -

        Revised: - 4 December 2006

        -

        Copyright David Abrahams and Beman Dawes 2006

        -

        Distributed under the Boost Software License, Version 1.0. (See - accompanying file - LICENSE_1_0.txt or copy at - www.boost.org/LICENSE_1_0.txt) -

        +The BoostCon site is +live! - + + + From a3604bea7ebfa82d6dcb370c6413c52ccc585091 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 26 Feb 2007 06:43:32 +0000 Subject: [PATCH 19/19] defunct [SVN r37077] --- BoostCon07.rst | 138 ------------------------------------------------- 1 file changed, 138 deletions(-) delete mode 100644 BoostCon07.rst diff --git a/BoostCon07.rst b/BoostCon07.rst deleted file mode 100644 index f6bde3a..0000000 --- a/BoostCon07.rst +++ /dev/null @@ -1,138 +0,0 @@ -.. Copyright David Abrahams 2006. Distributed under the Boost -.. Software License, Version 1.0. (See accompanying -.. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) - -=========================================== - BoostCon 2007 • May 14-18 2007 |(logo)|__ -=========================================== - -.. |(logo)| image:: ../boost.png - :alt: Boost - -__ ../index.htm - -.. raw:: html - - - ----------- - -.. Admonition:: What is BoostCon? - - This inaugural Boost conference promises to be the main - face-to-face venue for all things Boost, from using libraries to - writing them, from evangelizing Boost to deployment within your - organization, from infrastructure and process to vision and - mission, and from TR1 to TR2. Given the range and interests of the - participants, the event is going to be intense and in-depth. - -.. contents:: Index - -Tracks -====== - -Recognizing the breadth of the community, we are offering two -primary tracks: the first three days will be focused mostly on the -practical interests of Boost and TR1 end-users, and the last three -will be directed more towards hard-core Boost developers, with one -overlap day at midweek. Thus, the conference fosters interaction -both within *and* across these tracks, with an emphasis on service -to our user base. - -In the spirit of Boost, many sessions will be participatory and/or -collaborative in nature. Sessions will run in the morning and -evening, leaving a midday break of several hours so that attendees -can get out and enjoy the town and its surroundings, or just to -have time to work together in small, informal groups. - -Propose a Session -================= - -See the BoostCon `Call for Sessions`_ for details about how to submit a sesion proposal. - -.. _call for Sessions: http://www.boost.org/more/BoostCon07_session_call.html - -Venue -===== - -The main venue for this conference will be the `Aspen Center for -Physics`__ in Aspen, Colorado. The town of Aspen is known for its -world-class cuisine and its envigorating, natural setting. As -generations of scientists can attest, the Center's beautiful -location and its low-key atmosphere create a unique and lively -environment for thought, education, and collaboration. - -__ http://www.aspenphys.org - -Hotel -===== - -The main conference hotel will be the `Aspen Meadows Resort`__. -Located within walking distance of the Physics Center, the Meadows -provides 90 rooms, a restaurant, and overflow conference facilities -should the event expand. - -__ http://aspenmeadowsresort.dolce.com/ - -Conference Size -=============== - -Much more than having a great number of attendees, it's important -that this first BoostCon be a success, so we're starting small. -Registration will initially be limited to just 100 places, except -that we'll accomodate 200 participants on Wednesday, when the two -main tracks overlap. Contingency plans are in place that *may* allow -us to expand registration should demand prove overwhelming, but -when registration opens we recommend securing your place early, in -case that isn't possible. - -Registration -============ - -Official Registration is not yet open, but an `informal attendee -list`__ for those likely to attend has been set up on the Boost -Wiki. The conference organizers would very much appreciate it if -you could add an entry to this list if you think you'll be there, -to help us with planning. - -__ interest_ - -.. Admonition:: `Register interest`__ in attending BoostCon 2007 - - Thank you! - -__ interest_ - - -Questions -========= - -Please raise any other questions about—or ideas for—the conference -on the `Boost mailing lists`__. - -__ http://www.boost.org/more/mailing_lists.htm - -.. _interest: http://www.crystalclearsoftware.com/cgi-bin/boost_wiki/wiki.pl?BoostCon - -Organizing Committee -==================== - -.. class:: borderless - - +--------------------+--------------------+--------------------+ - |David Abrahams |Beman Dawes |Jeff Garland | - +--------------------+--------------------+--------------------+ - |Joel de Guzman |Kevlin Henney |Scott Meyers | - +--------------------+--------------------+--------------------+ - |Eric Niebler |Sean Parent |Rene Rivera | - +--------------------+--------------------+--------------------+ - |Jeremy Siek |Matthias Troyer | | - +--------------------+--------------------+--------------------+ -