[Checkins] SVN: z3ext.ownership/trunk/ reindent code; changed copyright holder; prepare release

Nikolay Kim fafhrd91 at gmail.com
Tue Aug 11 05:33:33 EDT 2009


Log message for revision 102662:
  reindent code; changed copyright holder; prepare release

Changed:
  U   z3ext.ownership/trunk/CHANGES.txt
  U   z3ext.ownership/trunk/bootstrap.py
  U   z3ext.ownership/trunk/setup.py
  U   z3ext.ownership/trunk/src/z3ext/ownership/interfaces.py
  U   z3ext.ownership/trunk/src/z3ext/ownership/localroles.py
  U   z3ext.ownership/trunk/src/z3ext/ownership/owner.py
  U   z3ext.ownership/trunk/src/z3ext/ownership/principalgroups.py
  U   z3ext.ownership/trunk/src/z3ext/ownership/tests.py

-=-
Modified: z3ext.ownership/trunk/CHANGES.txt
===================================================================
--- z3ext.ownership/trunk/CHANGES.txt	2009-08-11 09:30:05 UTC (rev 102661)
+++ z3ext.ownership/trunk/CHANGES.txt	2009-08-11 09:33:33 UTC (rev 102662)
@@ -3,12 +3,14 @@
 =======
 
 
-1.1.2 (2009-04-??)
+1.2.0 (2009-08-11)
 ------------------
 
 - Do not use z3c.autoinclude
 
+- Copyright holder changed
 
+
 1.1.1 (2009-03-18)
 ------------------
 

Modified: z3ext.ownership/trunk/bootstrap.py
===================================================================
--- z3ext.ownership/trunk/bootstrap.py	2009-08-11 09:30:05 UTC (rev 102661)
+++ z3ext.ownership/trunk/bootstrap.py	2009-08-11 09:33:33 UTC (rev 102662)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.ownership/trunk/setup.py
===================================================================
--- z3ext.ownership/trunk/setup.py	2009-08-11 09:30:05 UTC (rev 102661)
+++ z3ext.ownership/trunk/setup.py	2009-08-11 09:33:33 UTC (rev 102662)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -21,7 +21,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-version='1.1.2dev'
+version='1.2.0'
 
 
 setup(name = 'z3ext.ownership',
@@ -57,11 +57,11 @@
                           'zope.component',
                           'zope.interface',
                           'zope.security',
-			  'zope.securitypolicy',
+                          'zope.securitypolicy',
                           'zope.annotation',
-			  'zope.lifecycleevent',
-			  'zope.app.security',
-			  'z3ext.security',
+                          'zope.lifecycleevent',
+                          'zope.app.security',
+                          'z3ext.security',
                           ],
       extras_require = dict(test=['zope.app.testing',
                                   'zope.testing',

Modified: z3ext.ownership/trunk/src/z3ext/ownership/interfaces.py
===================================================================
--- z3ext.ownership/trunk/src/z3ext/ownership/interfaces.py	2009-08-11 09:30:05 UTC (rev 102661)
+++ z3ext.ownership/trunk/src/z3ext/ownership/interfaces.py	2009-08-11 09:33:33 UTC (rev 102662)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.ownership/trunk/src/z3ext/ownership/localroles.py
===================================================================
--- z3ext.ownership/trunk/src/z3ext/ownership/localroles.py	2009-08-11 09:30:05 UTC (rev 102661)
+++ z3ext.ownership/trunk/src/z3ext/ownership/localroles.py	2009-08-11 09:33:33 UTC (rev 102662)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.ownership/trunk/src/z3ext/ownership/owner.py
===================================================================
--- z3ext.ownership/trunk/src/z3ext/ownership/owner.py	2009-08-11 09:30:05 UTC (rev 102661)
+++ z3ext.ownership/trunk/src/z3ext/ownership/owner.py	2009-08-11 09:33:33 UTC (rev 102662)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -65,7 +65,7 @@
             self._ownerId = owner.id
             self.isGroup = IGroup.providedBy(owner)
 
-            self.annotations[ANNOTATION_KEY] = {'ownerId': self._ownerId, 
+            self.annotations[ANNOTATION_KEY] = {'ownerId': self._ownerId,
                                                 'isGroup': self.isGroup}
 
             event.notify(OwnerChangedEvent(self.context, owner, oldOwner))

Modified: z3ext.ownership/trunk/src/z3ext/ownership/principalgroups.py
===================================================================
--- z3ext.ownership/trunk/src/z3ext/ownership/principalgroups.py	2009-08-11 09:30:05 UTC (rev 102661)
+++ z3ext.ownership/trunk/src/z3ext/ownership/principalgroups.py	2009-08-11 09:33:33 UTC (rev 102662)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-""" 
+"""
 
 $Id$
 """

Modified: z3ext.ownership/trunk/src/z3ext/ownership/tests.py
===================================================================
--- z3ext.ownership/trunk/src/z3ext/ownership/tests.py	2009-08-11 09:30:05 UTC (rev 102661)
+++ z3ext.ownership/trunk/src/z3ext/ownership/tests.py	2009-08-11 09:33:33 UTC (rev 102662)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2009 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-""" 
+"""
 
 $Id$
 """
@@ -49,7 +49,7 @@
 def setUp(test):
     sectests.setUp(test)
     zope.security.management.setSecurityPolicy(SecurityPolicy)
-    
+
     sm = component.getSiteManager()
     sm.registerAdapter(Ownership)
     sm.registerAdapter(InheritedOwnership, (IInheritOwnership,), IOwnership)
@@ -57,8 +57,8 @@
     sm.registerAdapter(getGroupLocalRoles, name="z3ext.ownership-groupowner")
     sm.registerAdapter(AttributeAnnotations)
     sm.registerHandler(initObjectOwnership)
-    
 
+
 def test_suite():
     return unittest.TestSuite((
             doctest.DocFileSuite(



More information about the Checkins mailing list