Boost logo

Boost-Commit :

From: bdawes_at_[hidden]
Date: 2007-11-06 09:22:00


Author: bemandawes
Date: 2007-11-06 09:22:00 EST (Tue, 06 Nov 2007)
New Revision: 40837
URL: http://svn.boost.org/trac/boost/changeset/40837

Log:
Add license
Text files modified:
   trunk/libs/format/benchmark/Jamfile | 6 +--
   trunk/more/generic_programming.html | 59 ++++++++++++---------------------------
   trunk/more/regression.html | 11 ++++++
   3 files changed, 30 insertions(+), 46 deletions(-)

Modified: trunk/libs/format/benchmark/Jamfile
==============================================================================
--- trunk/libs/format/benchmark/Jamfile (original)
+++ trunk/libs/format/benchmark/Jamfile 2007-11-06 09:22:00 EST (Tue, 06 Nov 2007)
@@ -2,10 +2,8 @@
 #
 # Copyright (c) 2003 Samuel Krempp
 #
-# Permission to copy, use, modify, sell and distribute this software
-# is granted provided this copyright notice appears in all copies.
-# This software is provided "as is" without express or implied
-# warranty, and with no claim as to its suitability for any purpose.
+# Distributed under the Boost Software License, Version 1.0.
+# See www.boost.org/LICENSE_1_0.txt
 
 exe bench_format_no_locale
     : bench_format.cpp

Modified: trunk/more/generic_programming.html
==============================================================================
--- trunk/more/generic_programming.html (original)
+++ trunk/more/generic_programming.html 2007-11-06 09:22:00 EST (Tue, 06 Nov 2007)
@@ -3,7 +3,7 @@
 <html>
   <head>
     <meta name="generator" content=
- "HTML Tidy for Cygwin (vers 1st April 2002), see www.w3.org">
+ "Microsoft FrontPage 5.0">
     <meta http-equiv="Content-Type" content=
     "text/html; charset=windows-1252">
     <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
@@ -57,8 +57,7 @@
     </p>
 
     <blockquote>
-<pre>
-void* memcpy(void* region1, const void* region2, size_t n)
+<pre>void* memcpy(void* region1, const void* region2, size_t n)
 {
   const char* first = (const char*)region2;
   const char* last = ((const char*)region2) + n;
@@ -96,8 +95,7 @@
     </p>
 
     <blockquote>
-<pre>
-template &lt;typename InputIterator, typename OutputIterator&gt;
+<pre>template &lt;typename InputIterator, typename OutputIterator&gt;
 OutputIterator
 copy(InputIterator first, InputIterator last, OutputIterator result)
 {
@@ -116,8 +114,7 @@
     </p>
 
     <blockquote>
-<pre>
-#include &lt;list&gt;
+<pre>#include &lt;list&gt;
 #include &lt;vector&gt;
 #include &lt;iostream&gt;
 
@@ -183,8 +180,7 @@
     looks something like this:</p>
 
     <blockquote>
-<pre>
-template &lt;class Iterator&gt;
+<pre>template &lt;class Iterator&gt;
 struct iterator_traits {
   typedef ... iterator_category;
   typedef ... value_type;
@@ -251,8 +247,7 @@
     for a more detailed description of iterator tags.</p>
 
     <blockquote>
-<pre>
-namespace std {
+<pre>namespace std {
   struct input_iterator_tag { };
   struct bidirectional_iterator_tag { };
   struct random_access_iterator_tag { };
@@ -323,8 +318,7 @@
     itself and generators were a convenient way to produce those types.</p>
 
     <blockquote>
-<pre>
-template &lt;class Predicate, class Iterator,
+<pre>template &lt;class Predicate, class Iterator,
     class Value = <i>complicated default</i>,
     class Reference = <i>complicated default</i>,
     class Pointer = <i>complicated default</i>,
@@ -344,8 +338,7 @@
     using the generator is much easier. You can usually just write:</p>
 
     <blockquote>
-<pre>
-boost::filter_iterator_generator&lt;my_predicate,my_base_iterator&gt;::type
+<pre>boost::filter_iterator_generator&lt;my_predicate,my_base_iterator&gt;::type
 </pre>
     </blockquote>
 
@@ -364,8 +357,7 @@
     <p>For example, given:</p>
 
     <blockquote>
-<pre>
-struct widget {
+<pre>struct widget {
   void tweak(int);
 };
 std::vector&lt;widget *&gt; widget_ptrs;
@@ -378,8 +370,7 @@
     we can easily tweak all widgets:
 
     <blockquote>
-<pre>
-void tweak_all_widgets1(int arg)
+<pre>void tweak_all_widgets1(int arg)
 {
    for_each(widget_ptrs.begin(), widget_ptrs.end(),
       <b>bind2nd</b>(std::<b>mem_fun</b>(&amp;widget::tweak), arg));
@@ -391,8 +382,7 @@
     this:</p>
 
     <blockquote>
-<pre>
-void tweak_all_widgets2(int arg)
+<pre>void tweak_all_widgets2(int arg)
 {
    for_each(struct_ptrs.begin(), struct_ptrs.end(),
       <b>std::binder2nd&lt;std::mem_fun1_t&lt;void, widget, int&gt; &gt;</b>(
@@ -449,26 +439,13 @@
     <hr>
 
     <p>Revised
- <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %b %Y" startspan -->18
- August 2004<!--webbot bot="Timestamp" endspan i-checksum="14885" -->
+ <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %b %Y" startspan -->06 Nov 2007<!--webbot bot="Timestamp" endspan i-checksum="15272" -->
     </p>
 
- <p>&copy; Copyright David Abrahams 2001. Permission to copy, use, modify,
- sell and distribute this document is granted provided this copyright
- notice appears in all copies. This document is provided "as is" without
- express or implied warranty, and with no claim as to its suitability for
- any purpose.
- <!-- LocalWords: HTML html charset gif alt htm struct SGI namespace std libs
- -->
-
- <!-- LocalWords: InputIterator BidirectionalIterator RandomAccessIterator pdf
- -->
-
- <!-- LocalWords: typename Alexandrescu templated Andrei's Abrahams memcpy int
- -->
- <!-- LocalWords: const OutputIterator iostream pre cpl
- -->
- </p>
- </body>
-</html>
+ <p>© Copyright David Abrahams 2001.</p>
 
+<p>Distributed under the Boost Software License, Version 1.0. See
+www.boost.org/LICENSE_1_0.txt</p>
+
+ </body>
+</html>
\ No newline at end of file

Modified: trunk/more/regression.html
==============================================================================
--- trunk/more/regression.html (original)
+++ trunk/more/regression.html 2007-11-06 09:22:00 EST (Tue, 06 Nov 2007)
@@ -5,5 +5,14 @@
 <body>
 Automatically loading index page... if nothing happens, please go to
 <a href="../tools/regression/index.htm">http://www.boost.org/tools/regression/index.htm>.
+<hr>
+
+<p>© Copyright Douglas Gregor, 2005</p>
+
+<p>Distributed under the Boost Software License, Version 1.0. See
+
www.boost.org/LICENSE_1_0.txt</p>
+
+<p>&nbsp;</p>
+<p>&nbsp;</p>
 </body>
-</html>
+</html>
\ No newline at end of file


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