Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r67191 - in sandbox/icl/libs: icl/example/boost_party_ icl/test icl/test/fastest_interval_map_ icl_xt/prj_home icl_xt/prj_home/images
From: afojgo_at_[hidden]
Date: 2010-12-12 14:14:42


Author: jofaber
Date: 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
New Revision: 67191
URL: http://svn.boost.org/trac/boost/changeset/67191

Log:
Some improvements for the project homepage.
Added:
   sandbox/icl/libs/icl_xt/prj_home/images/boost_powered_by.png (contents, props changed)
   sandbox/icl/libs/icl_xt/prj_home/images/logo_cortex.png (contents, props changed)
Text files modified:
   sandbox/icl/libs/icl/example/boost_party_/vc9_boost_party.vcproj | 4 ++--
   sandbox/icl/libs/icl/test/fastest_interval_map_/vc9_fastest_interval_map.vcproj | 7 ++++---
   sandbox/icl/libs/icl/test/test_interval_map_shared.hpp | 18 +++++++++---------
   sandbox/icl/libs/icl_xt/prj_home/documentation.html | 4 ++--
   sandbox/icl/libs/icl_xt/prj_home/download.html | 18 ++++++++----------
   sandbox/icl/libs/icl_xt/prj_home/history.html | 16 +++++++---------
   sandbox/icl/libs/icl_xt/prj_home/index.html | 21 +++++++++------------
   sandbox/icl/libs/icl_xt/prj_home/news.html | 18 ++++++++----------
   sandbox/icl/libs/icl_xt/prj_home/reviews.html | 16 +++++++---------
   9 files changed, 56 insertions(+), 66 deletions(-)

Modified: sandbox/icl/libs/icl/example/boost_party_/vc9_boost_party.vcproj
==============================================================================
--- sandbox/icl/libs/icl/example/boost_party_/vc9_boost_party.vcproj (original)
+++ sandbox/icl/libs/icl/example/boost_party_/vc9_boost_party.vcproj 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
@@ -42,7 +42,7 @@
                                 Name="VCCLCompilerTool"
                                 Optimization="0"
                                 AdditionalIncludeDirectories="../../../../; ../../../../boost_1_35_0"
- PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_STLP_DEBUG=1"
                                 MinimalRebuild="true"
                                 BasicRuntimeChecks="3"
                                 RuntimeLibrary="3"
@@ -65,7 +65,7 @@
                                 UseUnicodeResponseFiles="true"
                                 OutputFile="../../../../bin/debug/$(ProjectName).exe"
                                 LinkIncremental="2"
- AdditionalLibraryDirectories="../../../../lib; ../../../../stage/lib"
+ AdditionalLibraryDirectories="../../../../lib; ../../../../stage/lib; ../../../../../../STLport/STLport-5.2.1/lib"
                                 IgnoreAllDefaultLibraries="false"
                                 GenerateDebugInformation="true"
                                 AssemblyDebug="1"

Modified: sandbox/icl/libs/icl/test/fastest_interval_map_/vc9_fastest_interval_map.vcproj
==============================================================================
--- sandbox/icl/libs/icl/test/fastest_interval_map_/vc9_fastest_interval_map.vcproj (original)
+++ sandbox/icl/libs/icl/test/fastest_interval_map_/vc9_fastest_interval_map.vcproj 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
@@ -41,8 +41,8 @@
                         <Tool
                                 Name="VCCLCompilerTool"
                                 Optimization="0"
- AdditionalIncludeDirectories="../../../../; ../../../../boost_1_35_0"
- PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ AdditionalIncludeDirectories="../../../../"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_STLP_DEBUG=1"
                                 MinimalRebuild="true"
                                 BasicRuntimeChecks="3"
                                 RuntimeLibrary="3"
@@ -62,9 +62,10 @@
                         />
                         <Tool
                                 Name="VCLinkerTool"
+ AdditionalDependencies="stlportstld.5.2.lib stlportd.5.2.lib "
                                 OutputFile="../../../../bin/debug/$(ProjectName).exe"
                                 LinkIncremental="2"
- AdditionalLibraryDirectories="../../../../lib; ../../../../stage/lib"
+ AdditionalLibraryDirectories="../../../../stage/lib;"
                                 GenerateDebugInformation="true"
                                 SubSystem="1"
                                 RandomizedBaseAddress="1"

Modified: sandbox/icl/libs/icl/test/test_interval_map_shared.hpp
==============================================================================
--- sandbox/icl/libs/icl/test/test_interval_map_shared.hpp (original)
+++ sandbox/icl/libs/icl/test/test_interval_map_shared.hpp 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
@@ -27,11 +27,11 @@
     // ordered types is the largest set of instance types.
     // Because we can not generate values via incrementation for e.g. string,
     // we are able to test operations only for the most basic values
- // identity_element (0, empty, T() ...) and unit_element.
+ // boost::icl::identity_element (0, empty, T() ...) and unit_element.
 
- //T v0 = identity_element<T>();
+ //T v0 = boost::icl::identity_element<T>();
     //T v1 = unit_element<T>();
- T v0 = identity_element<T>::value();
+ T v0 = boost::icl::identity_element<T>::value();
     T v1 = unit_element<T>::value();
     IntervalT I0_0I(v0);
     IntervalT I1_1I(v1);
@@ -43,18 +43,18 @@
     //-------------------------------------------------------------------------
     BOOST_CHECK_EQUAL(IntervalMapT().empty(), true);
     BOOST_CHECK_EQUAL(icl::is_empty(IntervalMapT()), true);
- BOOST_CHECK_EQUAL(cardinality(IntervalMapT()), identity_element<size_T>::value());
- BOOST_CHECK_EQUAL(IntervalMapT().size(), identity_element<size_T>::value());
- BOOST_CHECK_EQUAL(icl::size(IntervalMapT()), identity_element<size_T>::value());
+ BOOST_CHECK_EQUAL(cardinality(IntervalMapT()), boost::icl::identity_element<size_T>::value());
+ BOOST_CHECK_EQUAL(IntervalMapT().size(), boost::icl::identity_element<size_T>::value());
+ BOOST_CHECK_EQUAL(icl::size(IntervalMapT()), boost::icl::identity_element<size_T>::value());
     BOOST_CHECK_EQUAL(interval_count(IntervalMapT()), 0);
     BOOST_CHECK_EQUAL(IntervalMapT().iterative_size(), 0);
     BOOST_CHECK_EQUAL(iterative_size(IntervalMapT()), 0);
     BOOST_CHECK_EQUAL(IntervalMapT(), IntervalMapT());
 
- IntervalT mt_interval = identity_element<IntervalT >::value();
+ IntervalT mt_interval = boost::icl::identity_element<IntervalT >::value();
     BOOST_CHECK_EQUAL(mt_interval, IntervalT());
     typename IntervalMapT::value_type mt_u1 = make_pair(mt_interval, u1);
- IntervalMapT mt_map = identity_element<IntervalMapT >::value();
+ IntervalMapT mt_map = boost::icl::identity_element<IntervalMapT >::value();
     BOOST_CHECK_EQUAL(mt_map, IntervalMapT());
 
     //adding emptieness to emptieness yields emptieness ;)
@@ -64,7 +64,7 @@
     BOOST_CHECK_EQUAL(mt_map, IntervalMapT());
     (mt_map += mt_u1) += mt_u1;
     BOOST_CHECK_EQUAL(mt_map, IntervalMapT());
- BOOST_CHECK_EQUAL(hull(mt_map), identity_element<IntervalT >::value());
+ BOOST_CHECK_EQUAL(hull(mt_map), boost::icl::identity_element<IntervalT >::value());
 
     //subtracting emptieness
     mt_map.subtract(mt_u1).subtract(mt_u1);

Modified: sandbox/icl/libs/icl_xt/prj_home/documentation.html
==============================================================================
--- sandbox/icl/libs/icl_xt/prj_home/documentation.html (original)
+++ sandbox/icl/libs/icl_xt/prj_home/documentation.html 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
@@ -112,7 +112,7 @@
         <tr>
                 <td align=left width="33%">
                         <a href="http://www.boost.org/">
- <img src="boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
+ <img src="images/boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
                         </a>
                 </td>
                 
@@ -123,7 +123,7 @@
                 
                 <td align=center valign=middle width="33%">
                         <a href="http://www.cortex-software.de/desktopdefault.aspx">
- <img src="logo_cortex.png" border="0" alt="Cortex Logo" >
+ <img src="images/logo_cortex.png" border="0" alt="Cortex Logo" >
                         </a>
                 </td>
         </tr>

Modified: sandbox/icl/libs/icl_xt/prj_home/download.html
==============================================================================
--- sandbox/icl/libs/icl_xt/prj_home/download.html (original)
+++ sandbox/icl/libs/icl_xt/prj_home/download.html 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
@@ -63,11 +63,9 @@
         </div>
         <!-- =============================================================== -->
         <div id="right">
- <!-- h2>What's New?</h2 -->
- <!-- h3>There's a voice</h3 -->
-
+ <!-- =============================================================== -->
                 <p>&ldquo;This can be a really useful class of data structures.
- I support continued work on getting this into Boost.&rdquo;<br>
+ I sup&shy;port continued work on getting this into Boost.&rdquo;<br>
                  &mdash;
                  <a HREF="http://www.boost.org/users/people/dave_abrahams.html">Dave Abrahams</a>
                  <!-- a HREF="http://en.wikipedia.org/wiki/David_Abrahams_(computer_programmer)">Dave Abrahams</a-->
@@ -86,16 +84,16 @@
                 <br>
 
                 <p>
- My experience with this use-case
+ My experience with this use&shy;case
                 [...] did speak toward the richness of the interface. Each time we wanted to apply
- a different operation or extract a different view of the data we found that the scenario
+ a dif&shy;ferent operation or extract a different view of the data we found that the scenario
                 had already been considered and a solution was readily available.
 
                 <br>&mdash;
                 <a HREF="http://www.objectmodelingdesigns.com/index.html">Michael Caisse</a>
             </p>
                 <p>More…</p>
-
+ <!-- =============================================================== -->
         </div>
 </div>
 <!-- =============================================================== -->
@@ -105,7 +103,7 @@
         <tr>
                 <td align=left width="33%">
                         <a href="http://www.boost.org/">
- <img src="boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
+ <img src="images/boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
                         </a>
                 </td>
                 
@@ -114,9 +112,9 @@
                         <p>Design by 360guide.info</p>
                 </td>
                 
- <td align=center width="33%">
+ <td align=center valign=middle width="33%">
                         <a href="http://www.cortex-software.de/desktopdefault.aspx">
- <img src="logo_cortex.png" border="0" alt="Cortex Logo" >
+ <img src="images/logo_cortex.png" border="0" alt="Cortex Logo" >
                         </a>
                 </td>
         </tr>

Modified: sandbox/icl/libs/icl_xt/prj_home/history.html
==============================================================================
--- sandbox/icl/libs/icl_xt/prj_home/history.html (original)
+++ sandbox/icl/libs/icl_xt/prj_home/history.html 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
@@ -153,11 +153,9 @@
         
         <!-- =============================================================== -->
         <div id="right">
- <!-- h2>What's New?</h2 -->
- <!-- h3>There's a voice</h3 -->
-
+ <!-- =============================================================== -->
                 <p>&ldquo;This can be a really useful class of data structures.
- I support continued work on getting this into Boost.&rdquo;<br>
+ I sup&shy;port continued work on getting this into Boost.&rdquo;<br>
                  &mdash;
                  <a HREF="http://www.boost.org/users/people/dave_abrahams.html">Dave Abrahams</a>
                  <!-- a HREF="http://en.wikipedia.org/wiki/David_Abrahams_(computer_programmer)">Dave Abrahams</a-->
@@ -176,16 +174,16 @@
                 <br>
 
                 <p>
- My experience with this use-case
+ My experience with this use&shy;case
                 [...] did speak toward the richness of the interface. Each time we wanted to apply
- a different operation or extract a different view of the data we found that the scenario
+ a dif&shy;ferent operation or extract a different view of the data we found that the scenario
                 had already been considered and a solution was readily available.
 
                 <br>&mdash;
                 <a HREF="http://www.objectmodelingdesigns.com/index.html">Michael Caisse</a>
             </p>
                 <p>More…</p>
-
+ <!-- =============================================================== -->
         </div>
 </div>
 <!-- =============================================================== -->
@@ -195,7 +193,7 @@
         <tr>
                 <td align=left width="33%">
                         <a href="http://www.boost.org/">
- <img src="boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
+ <img src="images/boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
                         </a>
                 </td>
                 
@@ -206,7 +204,7 @@
                 
                 <td align=center valign=middle width="33%">
                         <a href="http://www.cortex-software.de/desktopdefault.aspx">
- <img src="logo_cortex.png" border="0" alt="Cortex Logo" >
+ <img src="images/logo_cortex.png" border="0" alt="Cortex Logo" >
                         </a>
                 </td>
         </tr>

Added: sandbox/icl/libs/icl_xt/prj_home/images/boost_powered_by.png
==============================================================================
Binary file. No diff available.

Added: sandbox/icl/libs/icl_xt/prj_home/images/logo_cortex.png
==============================================================================
Binary file. No diff available.

Modified: sandbox/icl/libs/icl_xt/prj_home/index.html
==============================================================================
--- sandbox/icl/libs/icl_xt/prj_home/index.html (original)
+++ sandbox/icl/libs/icl_xt/prj_home/index.html 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
@@ -54,7 +54,7 @@
                         <a href="http://www.joachim-faulhaber.de/icl/index.html">ICL+</a>
                         <!-- ICL+ -->
                         includes the core library and
- implements interval bitsets, cubes, histories and law based testing in addition.
+ imple&shy;ments interval bitsets, cubes, histories and law based testing in addition.
                 </ul>
 
                 <h2>Expect Quality</h2>
@@ -67,18 +67,16 @@
                         <li>Efficient stl compatible interval_sets and interval_maps.
                         <li>Powerful aggregation possibilities for associated values in interval_maps.
                         <li>Set theoretic operations as infix and inplace operators.
- <li>Seamless interoperability with STL, Boost and your own user defined class types.
+ <li>Seamless interoperability with STL, Boost and your own user de&shy;fined class types.
                         <li>Extraordinary stability due to automated law based testing.
             </ul>
                                         
         </div>
         <!-- =============================================================== -->
         <div id="right">
- <!-- h2>What's New?</h2 -->
- <!-- h3>There's a voice</h3 -->
-
+ <!-- =============================================================== -->
                 <p>&ldquo;This can be a really useful class of data structures.
- I support continued work on getting this into Boost.&rdquo;<br>
+ I sup&shy;port continued work on getting this into Boost.&rdquo;<br>
                  &mdash;
                  <a HREF="http://www.boost.org/users/people/dave_abrahams.html">Dave Abrahams</a>
                  <!-- a HREF="http://en.wikipedia.org/wiki/David_Abrahams_(computer_programmer)">Dave Abrahams</a-->
@@ -97,17 +95,16 @@
                 <br>
 
                 <p>
- My experience with this use-case
+ My experience with this use&shy;case
                 [...] did speak toward the richness of the interface. Each time we wanted to apply
- a different operation or extract a different view of the data we found that the scenario
+ a dif&shy;ferent operation or extract a different view of the data we found that the scenario
                 had already been considered and a solution was readily available.
 
                 <br>&mdash;
                 <a HREF="http://www.objectmodelingdesigns.com/index.html">Michael Caisse</a>
             </p>
                 <p>More…</p>
-
-
+ <!-- =============================================================== -->
         </div>
 </div>
 <!-- =============================================================== -->
@@ -117,7 +114,7 @@
         <tr>
                 <td align=left width="33%">
                         <a href="http://www.boost.org/">
- <img src="boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
+ <img src="images/boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
                         </a>
                 </td>
                 
@@ -128,7 +125,7 @@
                 
                 <td align=center valign=middle width="33%">
                         <a href="http://www.cortex-software.de/desktopdefault.aspx">
- <img src="logo_cortex.png" border="0" alt="Cortex Logo" >
+ <img src="images/logo_cortex.png" border="0" alt="Cortex Logo" >
                         </a>
                 </td>
         </tr>

Modified: sandbox/icl/libs/icl_xt/prj_home/news.html
==============================================================================
--- sandbox/icl/libs/icl_xt/prj_home/news.html (original)
+++ sandbox/icl/libs/icl_xt/prj_home/news.html 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
@@ -37,7 +37,7 @@
                 <a href="http://svn.boost.org/svn/boost/trunk/">Boost trunk</a>.
                 The issues raised during the formal review are mainly solved or
                 <a href="http://groups.google.com/group/boost-list/browse_thread/thread/d4d137c8decfaf3e?pli=1">
- implemented</a>
+ imple&shy;mented</a>
                 as agreed in the discussion.
                 </p>
                 
@@ -53,11 +53,9 @@
         
         <!-- =============================================================== -->
         <div id="right">
- <!-- h2>What's New?</h2 -->
- <!-- h3>There's a voice</h3 -->
-
+ <!-- =============================================================== -->
                 <p>&ldquo;This can be a really useful class of data structures.
- I support continued work on getting this into Boost.&rdquo;<br>
+ I sup&shy;port continued work on getting this into Boost.&rdquo;<br>
                  &mdash;
                  <a HREF="http://www.boost.org/users/people/dave_abrahams.html">Dave Abrahams</a>
                  <!-- a HREF="http://en.wikipedia.org/wiki/David_Abrahams_(computer_programmer)">Dave Abrahams</a-->
@@ -76,16 +74,16 @@
                 <br>
 
                 <p>
- My experience with this use-case
+ My experience with this use&shy;case
                 [...] did speak toward the richness of the interface. Each time we wanted to apply
- a different operation or extract a different view of the data we found that the scenario
+ a dif&shy;ferent operation or extract a different view of the data we found that the scenario
                 had already been considered and a solution was readily available.
 
                 <br>&mdash;
                 <a HREF="http://www.objectmodelingdesigns.com/index.html">Michael Caisse</a>
             </p>
                 <p>More…</p>
-
+ <!-- =============================================================== -->
         </div>
 </div>
 <!-- =============================================================== -->
@@ -95,7 +93,7 @@
         <tr>
                 <td align=left width="33%">
                         <a href="http://www.boost.org/">
- <img src="boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
+ <img src="images/boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
                         </a>
                 </td>
                 
@@ -106,7 +104,7 @@
                 
                 <td align=center valign=middle width="33%">
                         <a href="http://www.cortex-software.de/desktopdefault.aspx">
- <img src="logo_cortex.png" border="0" alt="Cortex Logo" >
+ <img src="images/logo_cortex.png" border="0" alt="Cortex Logo" >
                         </a>
                 </td>
         </tr>

Modified: sandbox/icl/libs/icl_xt/prj_home/reviews.html
==============================================================================
--- sandbox/icl/libs/icl_xt/prj_home/reviews.html (original)
+++ sandbox/icl/libs/icl_xt/prj_home/reviews.html 2010-12-12 14:14:40 EST (Sun, 12 Dec 2010)
@@ -118,11 +118,9 @@
         </div>
         <!-- =============================================================== -->
         <div id="right">
- <!-- h2>What's New?</h2 -->
- <!-- h3>There's a voice</h3 -->
-
+ <!-- =============================================================== -->
                 <p>&ldquo;This can be a really useful class of data structures.
- I support continued work on getting this into Boost.&rdquo;<br>
+ I sup&shy;port continued work on getting this into Boost.&rdquo;<br>
                  &mdash;
                  <a HREF="http://www.boost.org/users/people/dave_abrahams.html">Dave Abrahams</a>
                  <!-- a HREF="http://en.wikipedia.org/wiki/David_Abrahams_(computer_programmer)">Dave Abrahams</a-->
@@ -141,16 +139,16 @@
                 <br>
 
                 <p>
- My experience with this use-case
+ My experience with this use&shy;case
                 [...] did speak toward the richness of the interface. Each time we wanted to apply
- a different operation or extract a different view of the data we found that the scenario
+ a dif&shy;ferent operation or extract a different view of the data we found that the scenario
                 had already been considered and a solution was readily available.
 
                 <br>&mdash;
                 <a HREF="http://www.objectmodelingdesigns.com/index.html">Michael Caisse</a>
             </p>
                 <p>More…</p>
-
+ <!-- =============================================================== -->
         </div>
 </div>
 <!-- =============================================================== -->
@@ -160,7 +158,7 @@
         <tr>
                 <td align=left width="33%">
                         <a href="http://www.boost.org/">
- <img src="boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
+ <img src="images/boost_powered_by.png" width="210" height="62" border="0" alt="Boost.org Logo">
                         </a>
                 </td>
                 
@@ -171,7 +169,7 @@
                 
                 <td align=center valign=middle width="33%">
                         <a href="http://www.cortex-software.de/desktopdefault.aspx">
- <img src="logo_cortex.png" border="0" alt="Cortex Logo" >
+ <img src="images/logo_cortex.png" border="0" alt="Cortex Logo" >
                         </a>
                 </td>
         </tr>


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