From 04883c754d448d1b87d25ceb00cc031e8b289e58 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 16 Feb 2008 11:07:24 +0000 Subject: [PATCH] Some more fixes for an over-enthusiastic search and replace. [SVN r43278] --- 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 +- 51 files changed, 51 insertions(+), 51 deletions(-) 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