[Zope3-checkins] CVS: Zope3/src/zodb/storage/file - pack.py:1.4 errors.py:1.3 copy.py:1.3 __init__.py:1.3

Jeremy Hylton jeremy@zope.com
Fri, 25 Apr 2003 15:29:17 -0400


Update of /cvs-repository/Zope3/src/zodb/storage/file
In directory cvs.zope.org:/tmp/cvs-serv22051/src/zodb/storage/file

Modified Files:
	pack.py errors.py copy.py __init__.py 
Log Message:
Add missing copyright notices.


=== Zope3/src/zodb/storage/file/pack.py 1.3 => 1.4 ===
--- Zope3/src/zodb/storage/file/pack.py:1.3	Tue Apr 22 18:38:39 2003
+++ Zope3/src/zodb/storage/file/pack.py	Fri Apr 25 15:28:46 2003
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2003 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.
+#
+##############################################################################
 """FileStorage helper to find all reachable object as of a certain time.
 
 A storage contains an ordered set of object revisions.  When a storage


=== Zope3/src/zodb/storage/file/errors.py 1.2 => 1.3 ===
--- Zope3/src/zodb/storage/file/errors.py:1.2	Tue Apr 22 11:23:12 2003
+++ Zope3/src/zodb/storage/file/errors.py	Fri Apr 25 15:28:46 2003
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2003 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.
+#
+##############################################################################
 """FileStorage-specific exceptions."""
 
 from zodb.interfaces import _fmt_oid


=== Zope3/src/zodb/storage/file/copy.py 1.2 => 1.3 ===
--- Zope3/src/zodb/storage/file/copy.py:1.2	Tue Apr 22 11:23:12 2003
+++ Zope3/src/zodb/storage/file/copy.py	Fri Apr 25 15:28:46 2003
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2003 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.
+#
+##############################################################################
 """Create copy of a data record."""
 
 from zodb.interfaces import MAXTID, ZERO, UndoError


=== Zope3/src/zodb/storage/file/__init__.py 1.2 => 1.3 ===
--- Zope3/src/zodb/storage/file/__init__.py:1.2	Tue Apr 22 11:23:12 2003
+++ Zope3/src/zodb/storage/file/__init__.py	Fri Apr 25 15:28:46 2003
@@ -1 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2003 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 zodb.storage.file.main import FileStorage