From 7d22435994defadeef3edd3e935373a562542139 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 27 Feb 2008 20:00:24 +0000 Subject: [PATCH] Merged revisions 43211,43214-43219,43222-43225,43227-43238,43242,43244-43245,43249-43250,43257-43259,43261,43263,43265,43267-43268,43270-43271,43273,43275-43279,43284-43289,43291,43295,43297-43298,43304-43305,43307,43313,43315,43324,43326-43327,43331,43333,43339-43343,43345,43348,43350,43352-43353,43355-43356,43358,43360,43366-43367,43369-43370,43372-43376,43378-43389,43394,43396-43398,43400-43401,43403-43404,43406-43408,43413-43415,43417-43418,43420,43422-43423 via svnmerge from https://svn.boost.org/svn/boost/trunk ........ r43417 | danieljames | 2008-02-26 22:04:55 +0000 (Tue, 26 Feb 2008) | 2 lines Fix a link to Boost.Bimap. ........ r43418 | danieljames | 2008-02-26 22:07:25 +0000 (Tue, 26 Feb 2008) | 2 lines Change another link that's no longer in the repository to link to the website. ........ r43422 | danieljames | 2008-02-27 18:51:14 +0000 (Wed, 27 Feb 2008) | 1 line Fix broken copyright urls. Fixes #1573. ........ r43423 | danieljames | 2008-02-27 19:22:01 +0000 (Wed, 27 Feb 2008) | 1 line Fix incorrect links to copyright of the form 'http:#www.boost.org ........ [SVN r43425] --- pyste/src/Pyste/ClassExporter.py | 2 +- pyste/src/Pyste/CodeExporter.py | 2 +- pyste/src/Pyste/CppParser.py | 2 +- pyste/src/Pyste/EnumExporter.py | 2 +- pyste/src/Pyste/Exporter.py | 2 +- pyste/src/Pyste/FunctionExporter.py | 2 +- pyste/src/Pyste/GCCXMLParser.py | 2 +- pyste/src/Pyste/HeaderExporter.py | 2 +- pyste/src/Pyste/MultipleCodeUnit.py | 2 +- pyste/src/Pyste/SingleCodeUnit.py | 2 +- pyste/src/Pyste/SmartFile.py | 2 +- pyste/src/Pyste/VarExporter.py | 2 +- pyste/src/Pyste/__init__.py | 2 +- pyste/src/Pyste/declarations.py | 2 +- pyste/src/Pyste/exporters.py | 2 +- pyste/src/Pyste/exporterutils.py | 2 +- pyste/src/Pyste/infos.py | 2 +- pyste/src/Pyste/policies.py | 2 +- pyste/src/Pyste/pyste.py | 2 +- pyste/src/Pyste/settings.py | 2 +- pyste/src/Pyste/utils.py | 2 +- pyste/tests/GCCXMLParserUT.py | 2 +- pyste/tests/SmartFileUT.py | 2 +- pyste/tests/abstract_test.h | 2 +- pyste/tests/abstract_testUT.py | 2 +- pyste/tests/add_test.h | 2 +- pyste/tests/add_testUT.py | 2 +- pyste/tests/basic.cpp | 2 +- pyste/tests/basic.h | 2 +- pyste/tests/basicUT.py | 2 +- pyste/tests/code_test.h | 2 +- pyste/tests/code_testUT.py | 2 +- pyste/tests/enums.h | 2 +- pyste/tests/enumsUT.py | 2 +- pyste/tests/header_test.h | 2 +- pyste/tests/header_testUT.py | 2 +- pyste/tests/infosUT.py | 2 +- pyste/tests/inherit.cpp | 2 +- pyste/tests/inherit.h | 2 +- pyste/tests/inherit2.h | 2 +- pyste/tests/inherit2UT.py | 2 +- pyste/tests/inherit3.h | 2 +- pyste/tests/inherit3UT.py | 2 +- pyste/tests/inherit4.h | 2 +- pyste/tests/inherit4UT.py | 2 +- pyste/tests/inheritUT.py | 2 +- pyste/tests/nested.cpp | 2 +- pyste/tests/nested.h | 2 +- pyste/tests/nestedUT.py | 2 +- pyste/tests/opaque.h | 2 +- pyste/tests/opaqueUT.py | 2 +- pyste/tests/operators.cpp | 2 +- pyste/tests/operators.h | 2 +- pyste/tests/operatorsUT.py | 2 +- pyste/tests/policiesUT.py | 2 +- pyste/tests/runtests.py | 2 +- pyste/tests/smart_ptr.h | 2 +- pyste/tests/smart_ptrUT.py | 2 +- pyste/tests/templates.h | 2 +- pyste/tests/templatesUT.py | 2 +- pyste/tests/test_all.py | 2 +- pyste/tests/vars.cpp | 2 +- pyste/tests/vars.h | 2 +- pyste/tests/varsUT.py | 2 +- pyste/tests/virtual.cpp | 2 +- pyste/tests/virtual.h | 2 +- pyste/tests/virtual2.h | 2 +- pyste/tests/virtual2UT.py | 2 +- pyste/tests/virtualUT.py | 2 +- pyste/tests/wrappertest.h | 2 +- pyste/tests/wrappertestUT.py | 2 +- pyste/tests/wrappertest_wrappers.h | 2 +- 72 files changed, 72 insertions(+), 72 deletions(-) diff --git a/pyste/src/Pyste/ClassExporter.py b/pyste/src/Pyste/ClassExporter.py index f79cc792..decaf628 100644 --- a/pyste/src/Pyste/ClassExporter.py +++ b/pyste/src/Pyste/ClassExporter.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import exporters from Exporter import Exporter diff --git a/pyste/src/Pyste/CodeExporter.py b/pyste/src/Pyste/CodeExporter.py index 3680bb72..382fffbd 100644 --- a/pyste/src/Pyste/CodeExporter.py +++ b/pyste/src/Pyste/CodeExporter.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from Exporter import Exporter diff --git a/pyste/src/Pyste/CppParser.py b/pyste/src/Pyste/CppParser.py index 1bedb25f..be68a448 100644 --- a/pyste/src/Pyste/CppParser.py +++ b/pyste/src/Pyste/CppParser.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from GCCXMLParser import ParseDeclarations import tempfile diff --git a/pyste/src/Pyste/EnumExporter.py b/pyste/src/Pyste/EnumExporter.py index ca91aba6..0107fbee 100644 --- a/pyste/src/Pyste/EnumExporter.py +++ b/pyste/src/Pyste/EnumExporter.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from Exporter import Exporter from settings import * diff --git a/pyste/src/Pyste/Exporter.py b/pyste/src/Pyste/Exporter.py index 4de90693..d87b37c5 100644 --- a/pyste/src/Pyste/Exporter.py +++ b/pyste/src/Pyste/Exporter.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import os.path diff --git a/pyste/src/Pyste/FunctionExporter.py b/pyste/src/Pyste/FunctionExporter.py index 05da6ec5..5765f65e 100644 --- a/pyste/src/Pyste/FunctionExporter.py +++ b/pyste/src/Pyste/FunctionExporter.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from Exporter import Exporter from policies import * diff --git a/pyste/src/Pyste/GCCXMLParser.py b/pyste/src/Pyste/GCCXMLParser.py index fbc40022..b9a104c4 100644 --- a/pyste/src/Pyste/GCCXMLParser.py +++ b/pyste/src/Pyste/GCCXMLParser.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from declarations import * # try to use cElementTree if avaiable diff --git a/pyste/src/Pyste/HeaderExporter.py b/pyste/src/Pyste/HeaderExporter.py index e1f20555..47651ba7 100644 --- a/pyste/src/Pyste/HeaderExporter.py +++ b/pyste/src/Pyste/HeaderExporter.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from Exporter import Exporter from ClassExporter import ClassExporter diff --git a/pyste/src/Pyste/MultipleCodeUnit.py b/pyste/src/Pyste/MultipleCodeUnit.py index 347268a7..65faad45 100644 --- a/pyste/src/Pyste/MultipleCodeUnit.py +++ b/pyste/src/Pyste/MultipleCodeUnit.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from SingleCodeUnit import SingleCodeUnit import os diff --git a/pyste/src/Pyste/SingleCodeUnit.py b/pyste/src/Pyste/SingleCodeUnit.py index 19a689be..2e59dbb8 100644 --- a/pyste/src/Pyste/SingleCodeUnit.py +++ b/pyste/src/Pyste/SingleCodeUnit.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from settings import namespaces import settings diff --git a/pyste/src/Pyste/SmartFile.py b/pyste/src/Pyste/SmartFile.py index 1f9388a8..039579e3 100644 --- a/pyste/src/Pyste/SmartFile.py +++ b/pyste/src/Pyste/SmartFile.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import os import md5 diff --git a/pyste/src/Pyste/VarExporter.py b/pyste/src/Pyste/VarExporter.py index 91e3dd0e..d3571e75 100644 --- a/pyste/src/Pyste/VarExporter.py +++ b/pyste/src/Pyste/VarExporter.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from Exporter import Exporter from settings import * diff --git a/pyste/src/Pyste/__init__.py b/pyste/src/Pyste/__init__.py index c4025f34..02eec64b 100644 --- a/pyste/src/Pyste/__init__.py +++ b/pyste/src/Pyste/__init__.py @@ -1,6 +1,6 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) diff --git a/pyste/src/Pyste/declarations.py b/pyste/src/Pyste/declarations.py index 3edea834..6eff97dc 100644 --- a/pyste/src/Pyste/declarations.py +++ b/pyste/src/Pyste/declarations.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) ''' Defines classes that represent declarations found in C++ header files. diff --git a/pyste/src/Pyste/exporters.py b/pyste/src/Pyste/exporters.py index 0d2d147f..f573d01b 100644 --- a/pyste/src/Pyste/exporters.py +++ b/pyste/src/Pyste/exporters.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) # a list of Exporter instances diff --git a/pyste/src/Pyste/exporterutils.py b/pyste/src/Pyste/exporterutils.py index ce862383..363700d2 100644 --- a/pyste/src/Pyste/exporterutils.py +++ b/pyste/src/Pyste/exporterutils.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) ''' Various helpers for interface files. diff --git a/pyste/src/Pyste/infos.py b/pyste/src/Pyste/infos.py index 339cf029..2a4f01ea 100644 --- a/pyste/src/Pyste/infos.py +++ b/pyste/src/Pyste/infos.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import os.path import copy diff --git a/pyste/src/Pyste/policies.py b/pyste/src/Pyste/policies.py index ff635072..57ebd0de 100644 --- a/pyste/src/Pyste/policies.py +++ b/pyste/src/Pyste/policies.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) diff --git a/pyste/src/Pyste/pyste.py b/pyste/src/Pyste/pyste.py index f3ff1b5d..cedffff5 100644 --- a/pyste/src/Pyste/pyste.py +++ b/pyste/src/Pyste/pyste.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) """ Pyste version %s diff --git a/pyste/src/Pyste/settings.py b/pyste/src/Pyste/settings.py index 145ad046..ba613b23 100644 --- a/pyste/src/Pyste/settings.py +++ b/pyste/src/Pyste/settings.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) #============================================================================== diff --git a/pyste/src/Pyste/utils.py b/pyste/src/Pyste/utils.py index 23b3b2a7..a8843e3f 100644 --- a/pyste/src/Pyste/utils.py +++ b/pyste/src/Pyste/utils.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) from __future__ import generators import string diff --git a/pyste/tests/GCCXMLParserUT.py b/pyste/tests/GCCXMLParserUT.py index 7cfb6af7..7175c9c6 100644 --- a/pyste/tests/GCCXMLParserUT.py +++ b/pyste/tests/GCCXMLParserUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import sys sys.path.append('../src') diff --git a/pyste/tests/SmartFileUT.py b/pyste/tests/SmartFileUT.py index 3be52bf4..9e4e9988 100644 --- a/pyste/tests/SmartFileUT.py +++ b/pyste/tests/SmartFileUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import sys sys.path.append('../src') from SmartFile import * diff --git a/pyste/tests/abstract_test.h b/pyste/tests/abstract_test.h index a0a1066b..e0fba2b2 100644 --- a/pyste/tests/abstract_test.h +++ b/pyste/tests/abstract_test.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #include #include diff --git a/pyste/tests/abstract_testUT.py b/pyste/tests/abstract_testUT.py index fdc221a5..4dc61a26 100644 --- a/pyste/tests/abstract_testUT.py +++ b/pyste/tests/abstract_testUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _abstract_test import * diff --git a/pyste/tests/add_test.h b/pyste/tests/add_test.h index eaee6093..447e8814 100644 --- a/pyste/tests/add_test.h +++ b/pyste/tests/add_test.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ namespace add_test { diff --git a/pyste/tests/add_testUT.py b/pyste/tests/add_testUT.py index d6e819b5..16f57a32 100644 --- a/pyste/tests/add_testUT.py +++ b/pyste/tests/add_testUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _add_test import * diff --git a/pyste/tests/basic.cpp b/pyste/tests/basic.cpp index 40da0fac..d07b6da6 100644 --- a/pyste/tests/basic.cpp +++ b/pyste/tests/basic.cpp @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #include "basic.h" diff --git a/pyste/tests/basic.h b/pyste/tests/basic.h index 0887c4b0..690fed2d 100644 --- a/pyste/tests/basic.h +++ b/pyste/tests/basic.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #ifndef BASIC_H #define BASIC_H diff --git a/pyste/tests/basicUT.py b/pyste/tests/basicUT.py index 3e21c8ea..9a18bcbf 100644 --- a/pyste/tests/basicUT.py +++ b/pyste/tests/basicUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _basic import * diff --git a/pyste/tests/code_test.h b/pyste/tests/code_test.h index cbfa6a38..0a31205a 100644 --- a/pyste/tests/code_test.h +++ b/pyste/tests/code_test.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ struct A { int x; diff --git a/pyste/tests/code_testUT.py b/pyste/tests/code_testUT.py index ec84879f..1059570a 100644 --- a/pyste/tests/code_testUT.py +++ b/pyste/tests/code_testUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _code_test import * diff --git a/pyste/tests/enums.h b/pyste/tests/enums.h index f274a2d8..afe33ca4 100644 --- a/pyste/tests/enums.h +++ b/pyste/tests/enums.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #ifndef ENUMS_H #define ENUMS_H diff --git a/pyste/tests/enumsUT.py b/pyste/tests/enumsUT.py index df21e852..7c7720dc 100644 --- a/pyste/tests/enumsUT.py +++ b/pyste/tests/enumsUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _enums import * diff --git a/pyste/tests/header_test.h b/pyste/tests/header_test.h index 0b8505f2..030d0d26 100644 --- a/pyste/tests/header_test.h +++ b/pyste/tests/header_test.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #ifndef HEADER_TEST_H #define HEADER_TEST_H diff --git a/pyste/tests/header_testUT.py b/pyste/tests/header_testUT.py index 8dfa5fb9..aa0d4a16 100644 --- a/pyste/tests/header_testUT.py +++ b/pyste/tests/header_testUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _header_test import * diff --git a/pyste/tests/infosUT.py b/pyste/tests/infosUT.py index 899f43dc..93769f34 100644 --- a/pyste/tests/infosUT.py +++ b/pyste/tests/infosUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import sys from Pyste.infos import * from Pyste.policies import * diff --git a/pyste/tests/inherit.cpp b/pyste/tests/inherit.cpp index e308c568..a75e8389 100644 --- a/pyste/tests/inherit.cpp +++ b/pyste/tests/inherit.cpp @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #include "inherit.h" diff --git a/pyste/tests/inherit.h b/pyste/tests/inherit.h index ba1ccc1a..8f903f4f 100644 --- a/pyste/tests/inherit.h +++ b/pyste/tests/inherit.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ namespace inherit { diff --git a/pyste/tests/inherit2.h b/pyste/tests/inherit2.h index f0f51165..af9387bd 100644 --- a/pyste/tests/inherit2.h +++ b/pyste/tests/inherit2.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ namespace inherit2 { diff --git a/pyste/tests/inherit2UT.py b/pyste/tests/inherit2UT.py index 2079e86a..85afce61 100644 --- a/pyste/tests/inherit2UT.py +++ b/pyste/tests/inherit2UT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _inherit2 import * diff --git a/pyste/tests/inherit3.h b/pyste/tests/inherit3.h index baaa0db7..1945fb51 100644 --- a/pyste/tests/inherit3.h +++ b/pyste/tests/inherit3.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ namespace inherit3 { diff --git a/pyste/tests/inherit3UT.py b/pyste/tests/inherit3UT.py index 4a80a5e4..b7dba1e9 100644 --- a/pyste/tests/inherit3UT.py +++ b/pyste/tests/inherit3UT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _inherit3 import * diff --git a/pyste/tests/inherit4.h b/pyste/tests/inherit4.h index 0219aa0f..a1cecfbc 100644 --- a/pyste/tests/inherit4.h +++ b/pyste/tests/inherit4.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ namespace inherit4 { diff --git a/pyste/tests/inherit4UT.py b/pyste/tests/inherit4UT.py index 416c9ff2..f2c75c55 100644 --- a/pyste/tests/inherit4UT.py +++ b/pyste/tests/inherit4UT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _inherit4 import * diff --git a/pyste/tests/inheritUT.py b/pyste/tests/inheritUT.py index eb6198f9..f3e7b406 100644 --- a/pyste/tests/inheritUT.py +++ b/pyste/tests/inheritUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _inherit import * diff --git a/pyste/tests/nested.cpp b/pyste/tests/nested.cpp index 5d1761c3..6e167ab0 100644 --- a/pyste/tests/nested.cpp +++ b/pyste/tests/nested.cpp @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #include "nested.h" diff --git a/pyste/tests/nested.h b/pyste/tests/nested.h index 1695610f..13ed6085 100644 --- a/pyste/tests/nested.h +++ b/pyste/tests/nested.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #ifndef NESTED_H diff --git a/pyste/tests/nestedUT.py b/pyste/tests/nestedUT.py index 0d55f163..06c1c7be 100644 --- a/pyste/tests/nestedUT.py +++ b/pyste/tests/nestedUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _nested import * diff --git a/pyste/tests/opaque.h b/pyste/tests/opaque.h index 4e8c117d..1947830e 100644 --- a/pyste/tests/opaque.h +++ b/pyste/tests/opaque.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #ifndef OPAQUE_H #define OPAQUE_H diff --git a/pyste/tests/opaqueUT.py b/pyste/tests/opaqueUT.py index 44187091..0f3e1e07 100644 --- a/pyste/tests/opaqueUT.py +++ b/pyste/tests/opaqueUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _opaque import * diff --git a/pyste/tests/operators.cpp b/pyste/tests/operators.cpp index b22a283b..cecdaca0 100644 --- a/pyste/tests/operators.cpp +++ b/pyste/tests/operators.cpp @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #include "operators.h" diff --git a/pyste/tests/operators.h b/pyste/tests/operators.h index 83b8ef56..5d394421 100644 --- a/pyste/tests/operators.h +++ b/pyste/tests/operators.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #ifndef OPERATORS_H #define OPERATORS_H diff --git a/pyste/tests/operatorsUT.py b/pyste/tests/operatorsUT.py index fe547146..beb19317 100644 --- a/pyste/tests/operatorsUT.py +++ b/pyste/tests/operatorsUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _operators import * diff --git a/pyste/tests/policiesUT.py b/pyste/tests/policiesUT.py index 9f259e01..7255baeb 100644 --- a/pyste/tests/policiesUT.py +++ b/pyste/tests/policiesUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import sys import unittest from Pyste.policies import * diff --git a/pyste/tests/runtests.py b/pyste/tests/runtests.py index bf7c8065..4bf83b34 100644 --- a/pyste/tests/runtests.py +++ b/pyste/tests/runtests.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) #!/usr/bin/python import sys diff --git a/pyste/tests/smart_ptr.h b/pyste/tests/smart_ptr.h index 57dfb0ce..b230b917 100644 --- a/pyste/tests/smart_ptr.h +++ b/pyste/tests/smart_ptr.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #ifndef SMART_PTR_H diff --git a/pyste/tests/smart_ptrUT.py b/pyste/tests/smart_ptrUT.py index 6a9d2253..9d81f08d 100644 --- a/pyste/tests/smart_ptrUT.py +++ b/pyste/tests/smart_ptrUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _smart_ptr import * diff --git a/pyste/tests/templates.h b/pyste/tests/templates.h index 7afe8ff4..7258e91c 100644 --- a/pyste/tests/templates.h +++ b/pyste/tests/templates.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ namespace templates { diff --git a/pyste/tests/templatesUT.py b/pyste/tests/templatesUT.py index 6f17548e..0c4b08b5 100644 --- a/pyste/tests/templatesUT.py +++ b/pyste/tests/templatesUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _templates import * diff --git a/pyste/tests/test_all.py b/pyste/tests/test_all.py index a3eeed17..ba3c54de 100644 --- a/pyste/tests/test_all.py +++ b/pyste/tests/test_all.py @@ -2,7 +2,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import os import glob diff --git a/pyste/tests/vars.cpp b/pyste/tests/vars.cpp index 4a1d2886..e2abcd33 100644 --- a/pyste/tests/vars.cpp +++ b/pyste/tests/vars.cpp @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #include "vars.h" diff --git a/pyste/tests/vars.h b/pyste/tests/vars.h index b98767f5..24e87d80 100644 --- a/pyste/tests/vars.h +++ b/pyste/tests/vars.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ struct Color diff --git a/pyste/tests/varsUT.py b/pyste/tests/varsUT.py index bff3ef59..4c32cbb2 100644 --- a/pyste/tests/varsUT.py +++ b/pyste/tests/varsUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest import _vars diff --git a/pyste/tests/virtual.cpp b/pyste/tests/virtual.cpp index d00158a2..070d9d34 100644 --- a/pyste/tests/virtual.cpp +++ b/pyste/tests/virtual.cpp @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ // Includes ==================================================================== diff --git a/pyste/tests/virtual.h b/pyste/tests/virtual.h index 86ba53e2..d0bb194a 100644 --- a/pyste/tests/virtual.h +++ b/pyste/tests/virtual.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ namespace virtual_ { diff --git a/pyste/tests/virtual2.h b/pyste/tests/virtual2.h index b0fc3b7b..a6677ad1 100644 --- a/pyste/tests/virtual2.h +++ b/pyste/tests/virtual2.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ namespace virtual2 { diff --git a/pyste/tests/virtual2UT.py b/pyste/tests/virtual2UT.py index 957eafbd..312277d2 100644 --- a/pyste/tests/virtual2UT.py +++ b/pyste/tests/virtual2UT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _virtual2 import * diff --git a/pyste/tests/virtualUT.py b/pyste/tests/virtualUT.py index 87899f27..deff6818 100644 --- a/pyste/tests/virtualUT.py +++ b/pyste/tests/virtualUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _virtual import * diff --git a/pyste/tests/wrappertest.h b/pyste/tests/wrappertest.h index eff74c8a..2304fd84 100644 --- a/pyste/tests/wrappertest.h +++ b/pyste/tests/wrappertest.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #ifndef WRAPPER_TEST #define WRAPPER_TEST diff --git a/pyste/tests/wrappertestUT.py b/pyste/tests/wrappertestUT.py index 0d927578..d770408b 100644 --- a/pyste/tests/wrappertestUT.py +++ b/pyste/tests/wrappertestUT.py @@ -1,7 +1,7 @@ # Copyright Bruno da Silva de Oliveira 2003. Use, modification and # distribution is subject to 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) +# http://www.boost.org/LICENSE_1_0.txt) import unittest from _wrappertest import * diff --git a/pyste/tests/wrappertest_wrappers.h b/pyste/tests/wrappertest_wrappers.h index d1528510..31570a05 100644 --- a/pyste/tests/wrappertest_wrappers.h +++ b/pyste/tests/wrappertest_wrappers.h @@ -1,7 +1,7 @@ /* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to 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) + http://www.boost.org/LICENSE_1_0.txt) */ #ifndef WRAPPER_TEST_WRAPPERS #define WRAPPER_TEST_WRAPPERS