[Checkins] SVN: zope.xmlpickle/trunk/ conform to repository policy

Thomas Lotze tl at gocept.com
Wed Dec 15 08:51:02 EST 2010


Log message for revision 118930:
  conform to repository policy

Changed:
  A   zope.xmlpickle/trunk/COPYRIGHT.txt
  A   zope.xmlpickle/trunk/LICENSE.txt
  U   zope.xmlpickle/trunk/bootstrap.py
  U   zope.xmlpickle/trunk/setup.py
  U   zope.xmlpickle/trunk/src/zope/xmlpickle/__init__.py
  U   zope.xmlpickle/trunk/src/zope/xmlpickle/ppml.py
  U   zope.xmlpickle/trunk/src/zope/xmlpickle/tests/test_xmlpickle.py
  U   zope.xmlpickle/trunk/src/zope/xmlpickle/xmlpickle.py

-=-
Added: zope.xmlpickle/trunk/COPYRIGHT.txt
===================================================================
--- zope.xmlpickle/trunk/COPYRIGHT.txt	                        (rev 0)
+++ zope.xmlpickle/trunk/COPYRIGHT.txt	2010-12-15 13:51:02 UTC (rev 118930)
@@ -0,0 +1 @@
+Zope Foundation and Contributors
\ No newline at end of file


Property changes on: zope.xmlpickle/trunk/COPYRIGHT.txt
___________________________________________________________________
Added: svn:keywords
   + Id Rev Date
Added: svn:eol-style
   + native

Added: zope.xmlpickle/trunk/LICENSE.txt
===================================================================
--- zope.xmlpickle/trunk/LICENSE.txt	                        (rev 0)
+++ zope.xmlpickle/trunk/LICENSE.txt	2010-12-15 13:51:02 UTC (rev 118930)
@@ -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.


Property changes on: zope.xmlpickle/trunk/LICENSE.txt
___________________________________________________________________
Added: svn:keywords
   + Id Rev Date
Added: svn:eol-style
   + native

Modified: zope.xmlpickle/trunk/bootstrap.py
===================================================================
--- zope.xmlpickle/trunk/bootstrap.py	2010-12-15 13:00:25 UTC (rev 118929)
+++ zope.xmlpickle/trunk/bootstrap.py	2010-12-15 13:51:02 UTC (rev 118930)
@@ -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,
@@ -17,7 +17,6 @@
 The script accepts buildout command-line options, so you can
 use the -c option to specify an alternate configuration file.
 
-$Id$
 """
 
 import os, shutil, sys, tempfile, urllib2

Modified: zope.xmlpickle/trunk/setup.py
===================================================================
--- zope.xmlpickle/trunk/setup.py	2010-12-15 13:00:25 UTC (rev 118929)
+++ zope.xmlpickle/trunk/setup.py	2010-12-15 13:51:02 UTC (rev 118930)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2006-2010 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -13,7 +13,6 @@
 ##############################################################################
 """Setup for zope.xmlpickle package
 
-$Id$
 """
 import os
 from setuptools import setup, find_packages

Modified: zope.xmlpickle/trunk/src/zope/xmlpickle/__init__.py
===================================================================
--- zope.xmlpickle/trunk/src/zope/xmlpickle/__init__.py	2010-12-15 13:00:25 UTC (rev 118929)
+++ zope.xmlpickle/trunk/src/zope/xmlpickle/__init__.py	2010-12-15 13:51:02 UTC (rev 118930)
@@ -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,
@@ -19,7 +19,6 @@
 
   loads(xmlpickle) -- Returns an object loaded from the pickle.
 
-$Id$
 """
 from xmlpickle import dumps, loads
 from xmlpickle import fromxml, toxml

Modified: zope.xmlpickle/trunk/src/zope/xmlpickle/ppml.py
===================================================================
--- zope.xmlpickle/trunk/src/zope/xmlpickle/ppml.py	2010-12-15 13:00:25 UTC (rev 118929)
+++ zope.xmlpickle/trunk/src/zope/xmlpickle/ppml.py	2010-12-15 13:51:02 UTC (rev 118930)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
+# Copyright (c) 2001 Zope Foundation and Contributors.
 #
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
@@ -12,7 +12,6 @@
 ##############################################################################
 """Provide conversion between Python pickles and XML.
 
-$Id$
 """
 # TODO: This doesn't work properly for protocol 2 pickles yet; that
 # still needs to be dealt with.  Particular issues that need to be

Modified: zope.xmlpickle/trunk/src/zope/xmlpickle/tests/test_xmlpickle.py
===================================================================
--- zope.xmlpickle/trunk/src/zope/xmlpickle/tests/test_xmlpickle.py	2010-12-15 13:00:25 UTC (rev 118929)
+++ zope.xmlpickle/trunk/src/zope/xmlpickle/tests/test_xmlpickle.py	2010-12-15 13:51:02 UTC (rev 118930)
@@ -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,6 @@
 ##############################################################################
 """Tests of xmlpickle package
 
-$Id$
 """
 import pickle
 import unittest

Modified: zope.xmlpickle/trunk/src/zope/xmlpickle/xmlpickle.py
===================================================================
--- zope.xmlpickle/trunk/src/zope/xmlpickle/xmlpickle.py	2010-12-15 13:00:25 UTC (rev 118929)
+++ zope.xmlpickle/trunk/src/zope/xmlpickle/xmlpickle.py	2010-12-15 13:51:02 UTC (rev 118930)
@@ -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,
@@ -13,7 +13,6 @@
 ##############################################################################
 """Pickle-based serialization of Python objects to and from XML.
 
-$Id$
 """
 
 from xml.parsers import expat



More information about the checkins mailing list