From 231c72e3eadbc1fbcadeae180644ed634dbcba98 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 11 Jun 2012 18:59:50 +0000 Subject: Repository policy. --- COPYRIGHT.txt | 1 + LICENSE.txt | 44 +++++++++++++++++++++++++++++++ bootstrap.py | 2 +- setup.py | 2 +- src/zope/tal/driver.py | 2 +- src/zope/tal/dummyengine.py | 2 +- src/zope/tal/htmltalparser.py | 2 +- src/zope/tal/interfaces.py | 2 +- src/zope/tal/ndiff.py | 2 +- src/zope/tal/runtest.py | 2 +- src/zope/tal/setpath.py | 2 +- src/zope/tal/taldefs.py | 2 +- src/zope/tal/talgenerator.py | 2 +- src/zope/tal/talgettext.py | 2 +- src/zope/tal/talinterpreter.py | 2 +- src/zope/tal/talparser.py | 2 +- src/zope/tal/tests/markbench.py | 2 +- src/zope/tal/tests/run.py | 2 +- src/zope/tal/tests/test_files.py | 2 +- src/zope/tal/tests/test_htmltalparser.py | 2 +- src/zope/tal/tests/test_sourcepos.py | 2 +- src/zope/tal/tests/test_talgettext.py | 2 +- src/zope/tal/tests/test_talinterpreter.py | 2 +- src/zope/tal/tests/test_talparser.py | 2 +- src/zope/tal/tests/test_xmlparser.py | 2 +- src/zope/tal/tests/utils.py | 2 +- src/zope/tal/timer.py | 2 +- src/zope/tal/translationcontext.py | 2 +- src/zope/tal/xmlparser.py | 2 +- 29 files changed, 72 insertions(+), 27 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 b5b9c13..97e7147 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 f63dd36..7c451c7 100644 --- a/setup.py +++ b/setup.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/tal/driver.py b/src/zope/tal/driver.py index 033e28a..e457a2b 100644 --- a/src/zope/tal/driver.py +++ b/src/zope/tal/driver.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ############################################################################## # -# 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/tal/dummyengine.py b/src/zope/tal/dummyengine.py index 2cb2310..1217fdb 100644 --- a/src/zope/tal/dummyengine.py +++ b/src/zope/tal/dummyengine.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2001, 2002, 2003 Zope Corporation and Contributors. +# Copyright (c) 2001, 2002, 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/tal/htmltalparser.py b/src/zope/tal/htmltalparser.py index 93538e8..e78bec1 100644 --- a/src/zope/tal/htmltalparser.py +++ b/src/zope/tal/htmltalparser.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/tal/interfaces.py b/src/zope/tal/interfaces.py index 8b8b7f0..fd6ca12 100644 --- a/src/zope/tal/interfaces.py +++ b/src/zope/tal/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/tal/ndiff.py b/src/zope/tal/ndiff.py index 7873abc..8057d6d 100644 --- a/src/zope/tal/ndiff.py +++ b/src/zope/tal/ndiff.py @@ -1,7 +1,7 @@ #! /usr/bin/env python ############################################################################## # -# 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/tal/runtest.py b/src/zope/tal/runtest.py index 1cb75c8..b829620 100644 --- a/src/zope/tal/runtest.py +++ b/src/zope/tal/runtest.py @@ -1,7 +1,7 @@ #! /usr/bin/env python ############################################################################## # -# 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/tal/setpath.py b/src/zope/tal/setpath.py index 18eced9..7696947 100644 --- a/src/zope/tal/setpath.py +++ b/src/zope/tal/setpath.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/tal/taldefs.py b/src/zope/tal/taldefs.py index 554a4fe..89643f2 100644 --- a/src/zope/tal/taldefs.py +++ b/src/zope/tal/taldefs.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/tal/talgenerator.py b/src/zope/tal/talgenerator.py index e01bd50..c49ab8b 100644 --- a/src/zope/tal/talgenerator.py +++ b/src/zope/tal/talgenerator.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/tal/talgettext.py b/src/zope/tal/talgettext.py index 5c71bc2..2f462e3 100644 --- a/src/zope/tal/talgettext.py +++ b/src/zope/tal/talgettext.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ############################################################################## # -# 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/tal/talinterpreter.py b/src/zope/tal/talinterpreter.py index bac8548..e640c85 100644 --- a/src/zope/tal/talinterpreter.py +++ b/src/zope/tal/talinterpreter.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/tal/talparser.py b/src/zope/tal/talparser.py index 7179fbd..d7a9950 100644 --- a/src/zope/tal/talparser.py +++ b/src/zope/tal/talparser.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/tal/tests/markbench.py b/src/zope/tal/tests/markbench.py index f08f9e2..590cece 100644 --- a/src/zope/tal/tests/markbench.py +++ b/src/zope/tal/tests/markbench.py @@ -1,7 +1,7 @@ #! /usr/bin/env python ############################################################################## # -# 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/tal/tests/run.py b/src/zope/tal/tests/run.py index b4dab8c..466a5d2 100644 --- a/src/zope/tal/tests/run.py +++ b/src/zope/tal/tests/run.py @@ -1,7 +1,7 @@ #! /usr/bin/env python ############################################################################## # -# 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/tal/tests/test_files.py b/src/zope/tal/tests/test_files.py index e26f00a..319c589 100644 --- a/src/zope/tal/tests/test_files.py +++ b/src/zope/tal/tests/test_files.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/tal/tests/test_htmltalparser.py b/src/zope/tal/tests/test_htmltalparser.py index eb53f51..251e474 100644 --- a/src/zope/tal/tests/test_htmltalparser.py +++ b/src/zope/tal/tests/test_htmltalparser.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/tal/tests/test_sourcepos.py b/src/zope/tal/tests/test_sourcepos.py index 4034b21..ab618ee 100644 --- a/src/zope/tal/tests/test_sourcepos.py +++ b/src/zope/tal/tests/test_sourcepos.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/tal/tests/test_talgettext.py b/src/zope/tal/tests/test_talgettext.py index bdfbfd8..4036087 100644 --- a/src/zope/tal/tests/test_talgettext.py +++ b/src/zope/tal/tests/test_talgettext.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/tal/tests/test_talinterpreter.py b/src/zope/tal/tests/test_talinterpreter.py index d7b73ca..91f14cd 100644 --- a/src/zope/tal/tests/test_talinterpreter.py +++ b/src/zope/tal/tests/test_talinterpreter.py @@ -1,7 +1,7 @@ # -*- coding: ISO-8859-1 -*- ############################################################################## # -# 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/tal/tests/test_talparser.py b/src/zope/tal/tests/test_talparser.py index f159cc1..d10761b 100644 --- a/src/zope/tal/tests/test_talparser.py +++ b/src/zope/tal/tests/test_talparser.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/tal/tests/test_xmlparser.py b/src/zope/tal/tests/test_xmlparser.py index 02d5848..9272a52 100644 --- a/src/zope/tal/tests/test_xmlparser.py +++ b/src/zope/tal/tests/test_xmlparser.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/tal/tests/utils.py b/src/zope/tal/tests/utils.py index 03eba52..df9fadd 100644 --- a/src/zope/tal/tests/utils.py +++ b/src/zope/tal/tests/utils.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/tal/timer.py b/src/zope/tal/timer.py index 916a2e2..510e9c2 100644 --- a/src/zope/tal/timer.py +++ b/src/zope/tal/timer.py @@ -1,7 +1,7 @@ #! /usr/bin/env python ############################################################################## # -# 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/tal/translationcontext.py b/src/zope/tal/translationcontext.py index 3d870b9..0cdbffd 100644 --- a/src/zope/tal/translationcontext.py +++ b/src/zope/tal/translationcontext.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/tal/xmlparser.py b/src/zope/tal/xmlparser.py index aafa693..8e52a02 100644 --- a/src/zope/tal/xmlparser.py +++ b/src/zope/tal/xmlparser.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, -- cgit v1.2.1