[Checkins] SVN: zope.app.twisted/branches/3.5/ Repository policy.

Tres Seaver cvs-admin at zope.org
Mon Jun 11 18:23:51 UTC 2012


Log message for revision 126776:
  Repository policy.

Changed:
  A   zope.app.twisted/branches/3.5/COPYRIGHT.txt
  A   zope.app.twisted/branches/3.5/LICENSE.txt
  U   zope.app.twisted/branches/3.5/bootstrap.py
  U   zope.app.twisted/branches/3.5/setup.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/accesslog.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/__init__.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/buffers.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/ftp.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/server.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/demofs.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/fstests.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_demofs.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_ftpserver.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_publisher.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_zope_ftp.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_zopetrial.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtest.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtestfs.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtestft.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/utils.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/http.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/interfaces.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/log.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/main.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/server.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/servercontrol.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_accesslog.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_docs.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_inputbuffering.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_largeinput.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_schema.py
  U   zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_zeo.py

-=-
Added: zope.app.twisted/branches/3.5/COPYRIGHT.txt
===================================================================
--- zope.app.twisted/branches/3.5/COPYRIGHT.txt	                        (rev 0)
+++ zope.app.twisted/branches/3.5/COPYRIGHT.txt	2012-06-11 18:23:48 UTC (rev 126776)
@@ -0,0 +1 @@
+Zope Foundation and Contributors
\ No newline at end of file

Added: zope.app.twisted/branches/3.5/LICENSE.txt
===================================================================
--- zope.app.twisted/branches/3.5/LICENSE.txt	                        (rev 0)
+++ zope.app.twisted/branches/3.5/LICENSE.txt	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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.

Modified: zope.app.twisted/branches/3.5/bootstrap.py
===================================================================
--- zope.app.twisted/branches/3.5/bootstrap.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/bootstrap.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/setup.py
===================================================================
--- zope.app.twisted/branches/3.5/setup.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/setup.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/accesslog.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/accesslog.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/accesslog.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/__init__.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/__init__.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/__init__.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/buffers.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/buffers.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/buffers.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001-2004 Zope Corporation and Contributors.
+# Copyright (c) 2001-2004 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/ftp.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/ftp.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/ftp.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/server.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/server.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/server.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/demofs.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/demofs.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/demofs.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,
@@ -11,7 +11,7 @@
 ##############################################################################
 """Demo file-system implementation, for testing
 
-$Id: demofs.py 27459 2004-09-07 01:45:52Z shane $
+$Id$
 """
 import posixpath
 

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/fstests.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/fstests.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/fstests.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,
@@ -13,7 +13,7 @@
 ##############################################################################
 """Abstract file-system tests
 
-$Id: fstests.py 26559 2004-07-15 21:22:32Z srichter $
+$Id$
 """
 from StringIO import StringIO
 from zope.interface.verify import verifyObject

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_demofs.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_demofs.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_demofs.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,
@@ -13,7 +13,7 @@
 ##############################################################################
 """Test the Demo Filesystem implementation.
 
-$Id: test_demofs.py 26476 2004-07-13 16:59:11Z srichter $
+$Id$
 """
 import demofs
 from unittest import TestCase, TestSuite, main, makeSuite

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_ftpserver.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_ftpserver.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_ftpserver.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_publisher.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_publisher.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_publisher.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,
@@ -13,7 +13,7 @@
 ##############################################################################
 """Test the FTP publisher.
 
-$Id: test_publisher.py 26559 2004-07-15 21:22:32Z srichter $
+$Id$
 """
 import demofs
 from unittest import TestCase, TestSuite, main, makeSuite

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_zope_ftp.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_zope_ftp.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_zope_ftp.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2005 Zope Corporation and Contributors.
+# Copyright (c) 2005 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_zopetrial.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_zopetrial.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/test_zopetrial.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtest.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtest.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtest.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtestfs.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtestfs.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtestfs.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtestft.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtestft.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/tests/trialtestft.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/utils.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/utils.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/ftp/utils.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/http.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/http.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/http.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/interfaces.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/interfaces.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/interfaces.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2005 Zope Corporation and Contributors.
+# Copyright (c) 2005 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/log.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/log.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/log.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2005 Zope Corporation and Contributors.
+# Copyright (c) 2005 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/main.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/main.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/main.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/server.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/server.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/server.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/servercontrol.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/servercontrol.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/servercontrol.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_accesslog.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_accesslog.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_accesslog.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_docs.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_docs.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_docs.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2005 Zope Corporation and Contributors.
+# Copyright (c) 2005 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_inputbuffering.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_inputbuffering.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_inputbuffering.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -1,10 +1,10 @@
 ##############################################################################
 #
-# 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,
-# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# Version 2.1 (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

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_largeinput.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_largeinput.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_largeinput.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -1,10 +1,10 @@
 ##############################################################################
 #
-# 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,
-# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# Version 2.1 (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

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_schema.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_schema.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_schema.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -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,

Modified: zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_zeo.py
===================================================================
--- zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_zeo.py	2012-06-11 18:20:35 UTC (rev 126775)
+++ zope.app.twisted/branches/3.5/src/zope/app/twisted/tests/test_zeo.py	2012-06-11 18:23:48 UTC (rev 126776)
@@ -1,10 +1,10 @@
 ##############################################################################
 #
-# 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,
-# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# Version 2.1 (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



More information about the checkins mailing list