[Zope-Checkins] CVS: Zope3/lib/python/Persistence/BTrees - Exception.py:1.1.2.2 IIBTree.py:1.1.2.3 IOBTree.py:1.1.2.3 Interfaces.py:1.1.2.2 Length.py:1.1.2.2 OIBTree.py:1.1.2.3 OOBTree.py:1.1.2.3 __init__.py:1.1.2.2 convert.py:1.1.2.2

Stephan Richter srichter@cbu.edu
Mon, 1 Apr 2002 21:18:25 -0500


Update of /cvs-repository/Zope3/lib/python/Persistence/BTrees
In directory cvs.zope.org:/tmp/cvs-serv8036/lib/python/Persistence/BTrees

Modified Files:
      Tag: Zope-3x-branch
	Exception.py IIBTree.py IOBTree.py Interfaces.py Length.py 
	OIBTree.py OOBTree.py __init__.py convert.py 
Log Message:
Issue 25: Resolved by janko & srichter

This checkin fixes all the license headers of all the files that needed
fixing it. :) This was made possible by Janko Hauser's script, which is now
available in the ZopeRoot/utilities directory.


=== Zope3/lib/python/Persistence/BTrees/Exception.py 1.1.2.1 => 1.1.2.2 ===
+#
+# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+# 
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+# 
+##############################################################################
 from Transaction.Exceptions import ConflictError
 
 class BTreesConflictError(ConflictError):


=== Zope3/lib/python/Persistence/BTrees/IIBTree.py 1.1.2.2 => 1.1.2.3 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
-# hack to overcome dynamic-linking headache.
 from _IIBTree import *


=== Zope3/lib/python/Persistence/BTrees/IOBTree.py 1.1.2.2 => 1.1.2.3 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
-# hack to overcome dynamic-linking headache.
 from _IOBTree import *


=== Zope3/lib/python/Persistence/BTrees/Interfaces.py 1.1.2.1 => 1.1.2.2 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
 import OOBTree, Interface, Interface.Standard
 
 class ICollection(Interface.Base):


=== Zope3/lib/python/Persistence/BTrees/Length.py 1.1.2.1 => 1.1.2.2 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
 import Persistence
 
 class Length(Persistence.Persistent):


=== Zope3/lib/python/Persistence/BTrees/OIBTree.py 1.1.2.2 => 1.1.2.3 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
-# hack to overcome dynamic-linking headache.
 from _OIBTree import *


=== Zope3/lib/python/Persistence/BTrees/OOBTree.py 1.1.2.2 => 1.1.2.3 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
-# hack to overcome dynamic-linking headache.
 from _OOBTree import *


=== Zope3/lib/python/Persistence/BTrees/__init__.py 1.1.2.1 => 1.1.2.2 ===
+#
+# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+# 
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+# 
+##############################################################################
 ##import ZODB
 
 ##try: import intSet


=== Zope3/lib/python/Persistence/BTrees/convert.py 1.1.2.1 => 1.1.2.2 ===
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# FOR A PARTICULAR PURPOSE.
 # 
 ##############################################################################
-
 def convert(old, new, threshold=200, f=None, None=None):
     "Utility for converting old btree to new"
     n=0