From f59f3bdb55f07cf7111fd6a469eb43f7ede560f0 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Tue, 6 Apr 2010 02:59:44 +0000 Subject: [PATCH] Comply with repository policy. --- COPYRIGHT.txt | 1 + LICENSE.txt | 44 +++++++++++++++++++ bootstrap.py | 2 +- setup.py | 4 +- src/zope/interface/__init__.py | 2 +- src/zope/interface/_flatten.py | 2 +- .../_zope_interface_coptimizations.c | 2 +- src/zope/interface/adapter.py | 2 +- src/zope/interface/advice.py | 2 +- src/zope/interface/common/idatetime.py | 2 +- src/zope/interface/common/interfaces.py | 2 +- src/zope/interface/common/mapping.py | 2 +- src/zope/interface/common/sequence.py | 2 +- .../interface/common/tests/basemapping.py | 2 +- .../interface/common/tests/test_idatetime.py | 2 +- .../common/tests/test_import_interfaces.py | 2 +- src/zope/interface/declarations.py | 2 +- src/zope/interface/document.py | 2 +- src/zope/interface/exceptions.py | 2 +- src/zope/interface/interface.py | 2 +- src/zope/interface/interfaces.py | 2 +- src/zope/interface/ro.py | 2 +- src/zope/interface/tests/dummy.py | 2 +- src/zope/interface/tests/ifoo.py | 2 +- src/zope/interface/tests/m1.py | 2 +- src/zope/interface/tests/m2.py | 2 +- src/zope/interface/tests/odd.py | 2 +- src/zope/interface/tests/test_adapter.py | 2 +- src/zope/interface/tests/test_advice.py | 2 +- src/zope/interface/tests/test_declarations.py | 2 +- src/zope/interface/tests/test_document.py | 2 +- src/zope/interface/tests/test_element.py | 2 +- src/zope/interface/tests/test_interface.py | 2 +- .../interface/tests/test_odd_declarations.py | 2 +- src/zope/interface/tests/test_sorting.py | 2 +- src/zope/interface/tests/test_verify.py | 2 +- src/zope/interface/tests/unitfixtures.py | 2 +- src/zope/interface/verify.py | 2 +- 38 files changed, 82 insertions(+), 37 deletions(-) create mode 100644 COPYRIGHT.txt create mode 100644 LICENSE.txt diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt new file mode 100644 index 0000000..79859e0 --- /dev/null +++ b/COPYRIGHT.txt @@ -0,0 +1 @@ +Zope Foundation and Contributors \ No newline at end of file diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..e1f9ad7 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,44 @@ +Zope Public License (ZPL) Version 2.1 + +A copyright notice accompanies this license document that identifies the +copyright holders. + +This license has been certified as open source. It has also been designated as +GPL compatible by the Free Software Foundation (FSF). + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions in source code must retain the accompanying copyright +notice, this list of conditions, and the following disclaimer. + +2. Redistributions in binary form must reproduce the accompanying copyright +notice, this list of conditions, and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +3. Names of the copyright holders must not be used to endorse or promote +products derived from this software without prior written permission from the +copyright holders. + +4. The right to distribute this software or to use it for any purpose does not +give you the right to use Servicemarks (sm) or Trademarks (tm) of the +copyright +holders. Use of them is covered by separate agreement with the copyright +holders. + +5. If any files are modified, you must cause the modified files to carry +prominent notices stating that you changed the files and the date of any +change. + +Disclaimer + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED +OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/bootstrap.py b/bootstrap.py index 7235bac..5954079 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2006 Zope Corporation and Contributors. +# Copyright (c) 2006 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/setup.py b/setup.py index 98a682f..4db3f20 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2004-2007 Zope Corporation and Contributors. +# Copyright (c) 2004-2007 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, @@ -124,7 +124,7 @@ setup(name='zope.interface', url='http://pypi.python.org/pypi/zope.interface', license='ZPL 2.1', description='Interfaces for Python', - author='Zope Corporation and Contributors', + author='Zope Foundation and Contributors', author_email='zope-dev@zope.org', long_description=long_description, diff --git a/src/zope/interface/__init__.py b/src/zope/interface/__init__.py index 32f675e..2708d36 100644 --- a/src/zope/interface/__init__.py +++ b/src/zope/interface/__init__.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/_flatten.py b/src/zope/interface/_flatten.py index 7645abb..b092e9e 100644 --- a/src/zope/interface/_flatten.py +++ b/src/zope/interface/_flatten.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2002 Zope Corporation and Contributors. +# Copyright (c) 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/_zope_interface_coptimizations.c b/src/zope/interface/_zope_interface_coptimizations.c index 9f3cd09..7eaf219 100644 --- a/src/zope/interface/_zope_interface_coptimizations.c +++ b/src/zope/interface/_zope_interface_coptimizations.c @@ -1,6 +1,6 @@ /*########################################################################### # - # Copyright (c) 2003 Zope Corporation and Contributors. + # Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/adapter.py b/src/zope/interface/adapter.py index 011cd03..6a3d145 100644 --- a/src/zope/interface/adapter.py +++ b/src/zope/interface/adapter.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2004 Zope Corporation and Contributors. +# Copyright (c) 2004 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/advice.py b/src/zope/interface/advice.py index 6a06167..fb9f5a8 100644 --- a/src/zope/interface/advice.py +++ b/src/zope/interface/advice.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/common/idatetime.py b/src/zope/interface/common/idatetime.py index f0db2eb..f726e74 100644 --- a/src/zope/interface/common/idatetime.py +++ b/src/zope/interface/common/idatetime.py @@ -1,5 +1,5 @@ ############################################################################## -# Copyright (c) 2002 Zope Corporation and Contributors. +# Copyright (c) 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/common/interfaces.py b/src/zope/interface/common/interfaces.py index 72ffeac..724f504 100644 --- a/src/zope/interface/common/interfaces.py +++ b/src/zope/interface/common/interfaces.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/common/mapping.py b/src/zope/interface/common/mapping.py index 8779dab..c9ab32c 100644 --- a/src/zope/interface/common/mapping.py +++ b/src/zope/interface/common/mapping.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/common/sequence.py b/src/zope/interface/common/sequence.py index b921e5a..e10ec3a 100644 --- a/src/zope/interface/common/sequence.py +++ b/src/zope/interface/common/sequence.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/common/tests/basemapping.py b/src/zope/interface/common/tests/basemapping.py index de03f54..0cd5d11 100644 --- a/src/zope/interface/common/tests/basemapping.py +++ b/src/zope/interface/common/tests/basemapping.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/common/tests/test_idatetime.py b/src/zope/interface/common/tests/test_idatetime.py index f84316a..3baa281 100644 --- a/src/zope/interface/common/tests/test_idatetime.py +++ b/src/zope/interface/common/tests/test_idatetime.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/common/tests/test_import_interfaces.py b/src/zope/interface/common/tests/test_import_interfaces.py index 1766162..1473a53 100644 --- a/src/zope/interface/common/tests/test_import_interfaces.py +++ b/src/zope/interface/common/tests/test_import_interfaces.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2006 Zope Corporation and Contributors. +# Copyright (c) 2006 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/declarations.py b/src/zope/interface/declarations.py index 05ab3b6..44a40e2 100644 --- a/src/zope/interface/declarations.py +++ b/src/zope/interface/declarations.py @@ -1,5 +1,5 @@ ############################################################################## -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/document.py b/src/zope/interface/document.py index 9f88f4f..5ca637c 100644 --- a/src/zope/interface/document.py +++ b/src/zope/interface/document.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/exceptions.py b/src/zope/interface/exceptions.py index 237a841..4940302 100644 --- a/src/zope/interface/exceptions.py +++ b/src/zope/interface/exceptions.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2002 Zope Corporation and Contributors. +# Copyright (c) 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/interface.py b/src/zope/interface/interface.py index bb7d2b1..f34bc13 100644 --- a/src/zope/interface/interface.py +++ b/src/zope/interface/interface.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/interfaces.py b/src/zope/interface/interfaces.py index f1093c2..4c453e9 100644 --- a/src/zope/interface/interfaces.py +++ b/src/zope/interface/interfaces.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2002 Zope Corporation and Contributors. +# Copyright (c) 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/ro.py b/src/zope/interface/ro.py index db343ab..318299e 100644 --- a/src/zope/interface/ro.py +++ b/src/zope/interface/ro.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/dummy.py b/src/zope/interface/tests/dummy.py index f4a4f9d..cc1036b 100644 --- a/src/zope/interface/tests/dummy.py +++ b/src/zope/interface/tests/dummy.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/ifoo.py b/src/zope/interface/tests/ifoo.py index 6ae2231..3e38b69 100644 --- a/src/zope/interface/tests/ifoo.py +++ b/src/zope/interface/tests/ifoo.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/m1.py b/src/zope/interface/tests/m1.py index 86adad2..f5cb31d 100644 --- a/src/zope/interface/tests/m1.py +++ b/src/zope/interface/tests/m1.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2004 Zope Corporation and Contributors. +# Copyright (c) 2004 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/m2.py b/src/zope/interface/tests/m2.py index 16762dd..5d17e96 100644 --- a/src/zope/interface/tests/m2.py +++ b/src/zope/interface/tests/m2.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2004 Zope Corporation and Contributors. +# Copyright (c) 2004 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/odd.py b/src/zope/interface/tests/odd.py index 27756b6..b0224da 100644 --- a/src/zope/interface/tests/odd.py +++ b/src/zope/interface/tests/odd.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/test_adapter.py b/src/zope/interface/tests/test_adapter.py index 74987ff..9ce2c47 100644 --- a/src/zope/interface/tests/test_adapter.py +++ b/src/zope/interface/tests/test_adapter.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/test_advice.py b/src/zope/interface/tests/test_advice.py index ac96465..f7df549 100644 --- a/src/zope/interface/tests/test_advice.py +++ b/src/zope/interface/tests/test_advice.py @@ -1,7 +1,7 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/test_declarations.py b/src/zope/interface/tests/test_declarations.py index cd95f82..0681fe7 100644 --- a/src/zope/interface/tests/test_declarations.py +++ b/src/zope/interface/tests/test_declarations.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/test_document.py b/src/zope/interface/tests/test_document.py index 67648e3..66f7e27 100644 --- a/src/zope/interface/tests/test_document.py +++ b/src/zope/interface/tests/test_document.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/test_element.py b/src/zope/interface/tests/test_element.py index 07d56da..b2faab0 100644 --- a/src/zope/interface/tests/test_element.py +++ b/src/zope/interface/tests/test_element.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/test_interface.py b/src/zope/interface/tests/test_interface.py index 6cca70d..b2b6100 100644 --- a/src/zope/interface/tests/test_interface.py +++ b/src/zope/interface/tests/test_interface.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/test_odd_declarations.py b/src/zope/interface/tests/test_odd_declarations.py index 03b7c38..b210dcf 100644 --- a/src/zope/interface/tests/test_odd_declarations.py +++ b/src/zope/interface/tests/test_odd_declarations.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2003 Zope Corporation and Contributors. +# Copyright (c) 2003 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/test_sorting.py b/src/zope/interface/tests/test_sorting.py index 31f575d..6b3b336 100644 --- a/src/zope/interface/tests/test_sorting.py +++ b/src/zope/interface/tests/test_sorting.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/test_verify.py b/src/zope/interface/tests/test_verify.py index e43f726..6ae9915 100644 --- a/src/zope/interface/tests/test_verify.py +++ b/src/zope/interface/tests/test_verify.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/tests/unitfixtures.py b/src/zope/interface/tests/unitfixtures.py index bdd697c..28f3ff3 100644 --- a/src/zope/interface/tests/unitfixtures.py +++ b/src/zope/interface/tests/unitfixtures.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, diff --git a/src/zope/interface/verify.py b/src/zope/interface/verify.py index 100b43a..f6982cf 100644 --- a/src/zope/interface/verify.py +++ b/src/zope/interface/verify.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License,