|
Boost-Commit : |
From: daniel_james_at_[hidden]
Date: 2008-02-16 06:00:35
Author: danieljames
Date: 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
New Revision: 43277
URL: http://svn.boost.org/trac/boost/changeset/43277
Log:
Fix some search and replace errors.
Text files modified:
branches/fix-links/libs/python/pyste/src/Pyste/ClassExporter.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/CodeExporter.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/CppParser.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/EnumExporter.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/Exporter.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/FunctionExporter.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/GCCXMLParser.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/HeaderExporter.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/MultipleCodeUnit.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/SingleCodeUnit.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/SmartFile.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/VarExporter.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/__init__.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/declarations.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/exporters.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/exporterutils.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/infos.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/policies.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/pyste.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/settings.py | 2 +-
branches/fix-links/libs/python/pyste/src/Pyste/utils.py | 2 +-
21 files changed, 21 insertions(+), 21 deletions(-)
Modified: branches/fix-links/libs/python/pyste/src/Pyste/ClassExporter.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/ClassExporter.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/ClassExporter.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/CodeExporter.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/CodeExporter.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/CodeExporter.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/CppParser.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/CppParser.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/CppParser.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/EnumExporter.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/EnumExporter.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/EnumExporter.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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 *
Modified: branches/fix-links/libs/python/pyste/src/Pyste/Exporter.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/Exporter.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/Exporter.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/FunctionExporter.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/FunctionExporter.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/FunctionExporter.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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 *
Modified: branches/fix-links/libs/python/pyste/src/Pyste/GCCXMLParser.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/GCCXMLParser.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/GCCXMLParser.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/HeaderExporter.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/HeaderExporter.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/HeaderExporter.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/MultipleCodeUnit.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/MultipleCodeUnit.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/MultipleCodeUnit.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/SingleCodeUnit.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/SingleCodeUnit.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/SingleCodeUnit.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/SmartFile.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/SmartFile.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/SmartFile.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/VarExporter.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/VarExporter.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/VarExporter.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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 *
Modified: branches/fix-links/libs/python/pyste/src/Pyste/__init__.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/__init__.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/__init__.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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)
Modified: branches/fix-links/libs/python/pyste/src/Pyste/declarations.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/declarations.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/declarations.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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.
Modified: branches/fix-links/libs/python/pyste/src/Pyste/exporters.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/exporters.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/exporters.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/exporterutils.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/exporterutils.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/exporterutils.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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.
Modified: branches/fix-links/libs/python/pyste/src/Pyste/infos.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/infos.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/infos.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/policies.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/policies.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/policies.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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)
Modified: branches/fix-links/libs/python/pyste/src/Pyste/pyste.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/pyste.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/pyste.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
Modified: branches/fix-links/libs/python/pyste/src/Pyste/settings.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/settings.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/settings.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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)
#==============================================================================
Modified: branches/fix-links/libs/python/pyste/src/Pyste/utils.py
==============================================================================
--- branches/fix-links/libs/python/pyste/src/Pyste/utils.py (original)
+++ branches/fix-links/libs/python/pyste/src/Pyste/utils.py 2008-02-16 06:00:33 EST (Sat, 16 Feb 2008)
@@ -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
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