[Checkins] SVN: zope.app.zopeappgenerations/branches/3.5/ Conform to repository policy

Gediminas Paulauskas menesis at pov.lt
Mon Dec 13 14:01:59 EST 2010


Log message for revision 118854:
  Conform to repository policy

Changed:
  A   zope.app.zopeappgenerations/branches/3.5/COPYRIGHT.txt
  A   zope.app.zopeappgenerations/branches/3.5/LICENSE.txt
  U   zope.app.zopeappgenerations/branches/3.5/bootstrap.py
  U   zope.app.zopeappgenerations/branches/3.5/setup.py
  U   zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/__init__.py
  U   zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve2.py
  U   zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve3.py
  U   zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve4.py
  U   zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve5.py

-=-
Added: zope.app.zopeappgenerations/branches/3.5/COPYRIGHT.txt
===================================================================
--- zope.app.zopeappgenerations/branches/3.5/COPYRIGHT.txt	                        (rev 0)
+++ zope.app.zopeappgenerations/branches/3.5/COPYRIGHT.txt	2010-12-13 19:01:59 UTC (rev 118854)
@@ -0,0 +1 @@
+Zope Foundation and Contributors
\ No newline at end of file


Property changes on: zope.app.zopeappgenerations/branches/3.5/COPYRIGHT.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: zope.app.zopeappgenerations/branches/3.5/LICENSE.txt
===================================================================
--- zope.app.zopeappgenerations/branches/3.5/LICENSE.txt	                        (rev 0)
+++ zope.app.zopeappgenerations/branches/3.5/LICENSE.txt	2010-12-13 19:01:59 UTC (rev 118854)
@@ -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.app.zopeappgenerations/branches/3.5/LICENSE.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Modified: zope.app.zopeappgenerations/branches/3.5/bootstrap.py
===================================================================
--- zope.app.zopeappgenerations/branches/3.5/bootstrap.py	2010-12-13 18:27:13 UTC (rev 118853)
+++ zope.app.zopeappgenerations/branches/3.5/bootstrap.py	2010-12-13 19:01:59 UTC (rev 118854)
@@ -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,
@@ -16,8 +16,6 @@
 Simply run this script in a directory containing a buildout.cfg.
 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.app.zopeappgenerations/branches/3.5/setup.py
===================================================================
--- zope.app.zopeappgenerations/branches/3.5/setup.py	2010-12-13 18:27:13 UTC (rev 118853)
+++ zope.app.zopeappgenerations/branches/3.5/setup.py	2010-12-13 19:01:59 UTC (rev 118854)
@@ -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,
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Setup for zope.app.zopeappgenerations package
-
-$Id$
 """
 import os
 from setuptools import setup, find_packages
@@ -23,7 +21,7 @@
 
 setup(name='zope.app.zopeappgenerations',
       version = '3.5.1dev',
-      author='Zope Corporation and Contributors',
+      author='Zope Foundation and Contributors',
       author_email='zope-dev at zope.org',
       description='Zope Application ZODB Update Generations',
       long_description=(
@@ -51,7 +49,7 @@
                         'zope.annotation',
                         'zope.app.authentication',
                         'zope.app.component',
-                        'zope.app.generations >= 3.5.0',
+                        'zope.app.generations >= 3.5',
                         'zope.copypastemove',
                         'zope.dublincore',
                         ],

Modified: zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/__init__.py
===================================================================
--- zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/__init__.py	2010-12-13 18:27:13 UTC (rev 118853)
+++ zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/__init__.py	2010-12-13 19:01:59 UTC (rev 118854)
@@ -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,
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Zope Application Server Generations
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 

Modified: zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve2.py
===================================================================
--- zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve2.py	2010-12-13 18:27:13 UTC (rev 118853)
+++ zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve2.py	2010-12-13 19:01:59 UTC (rev 118854)
@@ -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,
@@ -12,8 +12,6 @@
 #
 ##############################################################################
 """Evolve the ZODB from Zope 3.1 to a Zope 3.2 compatible format.
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 

Modified: zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve3.py
===================================================================
--- zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve3.py	2010-12-13 18:27:13 UTC (rev 118853)
+++ zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve3.py	2010-12-13 19:01:59 UTC (rev 118854)
@@ -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,
@@ -14,18 +14,14 @@
 """Evolve existing PAU group folders.
 
 They should be used as contained plugins rather than registered plugins.
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 
-from zope import component
-
-from zope.app.component.interfaces import ISite
-
 import zope.app.authentication.interfaces
 from zope.app.authentication import groupfolder
+from zope.app.component.interfaces import ISite
 from zope.app.generations.utility import findObjectsProviding, getRootFolder
+from zope.component import getUtilitiesFor
 from zope.copypastemove.interfaces import IObjectMover
 
 generation = 3
@@ -47,7 +43,7 @@
         sm = site.getSiteManager()
         for pau in findObjectsProviding(
             sm, zope.app.authentication.interfaces.IPluggableAuthentication):
-            for nm, util in component.getUtilitiesFor(
+            for nm, util in getUtilitiesFor(
                 zope.app.authentication.interfaces.IAuthenticatorPlugin,
                 context=pau):
                 if groupfolder.IGroupFolder.providedBy(util):

Modified: zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve4.py
===================================================================
--- zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve4.py	2010-12-13 18:27:13 UTC (rev 118853)
+++ zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve4.py	2010-12-13 19:01:59 UTC (rev 118854)
@@ -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,
@@ -12,14 +12,11 @@
 #
 ##############################################################################
 """Evolve local site managers
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 
-from zope.app.zopeappgenerations import getRootFolder
+from zope.app.generations.utility import getRootFolder
 
 def evolve(context):
     getRootFolder(context).getSiteManager()._evolve_to_generation_4()
 
-    

Modified: zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve5.py
===================================================================
--- zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve5.py	2010-12-13 18:27:13 UTC (rev 118853)
+++ zope.app.zopeappgenerations/branches/3.5/src/zope/app/zopeappgenerations/evolve5.py	2010-12-13 19:01:59 UTC (rev 118854)
@@ -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,
@@ -12,16 +12,13 @@
 #
 ##############################################################################
 """Evolve moved Zope Dublin Core Annotatable data
-
-$Id$
 """
 __docformat__ = "reStructuredText"
 from zope.annotation.interfaces import IAnnotatable, IAnnotations
 from zope.dublincore.interfaces import IWriteZopeDublinCore
 from zope.dublincore.annotatableadapter import ZDCAnnotatableAdapter
 from zope.dublincore.annotatableadapter import DCkey
-from zope.app.generations.utility import findObjectsProviding
-from zope.app.zopeappgenerations import getRootFolder
+from zope.app.generations.utility import findObjectsProviding, getRootFolder
 
 generation = 5
 



More information about the checkins mailing list