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

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


Log message for revision 102658:
  reindent code; change copyright holder; prepare release

Changed:
  U   z3ext.product/trunk/CHANGES.txt
  U   z3ext.product/trunk/bootstrap.py
  U   z3ext.product/trunk/setup.py
  U   z3ext.product/trunk/src/z3ext/product/installer.py
  U   z3ext.product/trunk/src/z3ext/product/interfaces.py
  U   z3ext.product/trunk/src/z3ext/product/locales/nl/LC_MESSAGES/z3ext.product.po
  U   z3ext.product/trunk/src/z3ext/product/locales/ru/LC_MESSAGES/z3ext.product.po
  U   z3ext.product/trunk/src/z3ext/product/locales/z3ext.product.pot
  U   z3ext.product/trunk/src/z3ext/product/product.py
  U   z3ext.product/trunk/src/z3ext/product/registry.py
  U   z3ext.product/trunk/src/z3ext/product/tests.py
  U   z3ext.product/trunk/src/z3ext/product/utils.py
  U   z3ext.product/trunk/src/z3ext/product/view.py
  U   z3ext.product/trunk/src/z3ext/product/zcml.py

-=-
Modified: z3ext.product/trunk/CHANGES.txt
===================================================================
--- z3ext.product/trunk/CHANGES.txt	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/CHANGES.txt	2009-08-11 09:24:41 UTC (rev 102658)
@@ -2,12 +2,14 @@
 CHANGES
 =======
 
-1.3.2 (2009-04-??)
+1.4.0 (2009-08-11)
 ------------------
 
 - Do not use z3c.autoinclude
 
+- Copyright holder changed
 
+
 1.3.1 (2009-02-03)
 ------------------
 

Modified: z3ext.product/trunk/bootstrap.py
===================================================================
--- z3ext.product/trunk/bootstrap.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/bootstrap.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -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: z3ext.product/trunk/setup.py
===================================================================
--- z3ext.product/trunk/setup.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/setup.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -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.3.2dev'
+version = '1.4.0'
 
 
 setup(name='z3ext.product',
@@ -58,15 +58,15 @@
                           'zope.component',
                           'zope.interface',
                           'zope.security',
-			  'zope.i18n',
+                          'zope.i18n',
                           'zope.i18nmessageid',
                           'zope.lifecycleevent',
                           'zope.configuration',
                           'zope.app.component',
-			  'z3c.baseregistry',
-			  'z3c.configurator',
-			  'z3ext.layout',
-			  'z3ext.controlpanel',
+                          'z3c.baseregistry',
+                          'z3c.configurator',
+                          'z3ext.layout',
+                          'z3ext.controlpanel',
                           'z3ext.statusmessage',
                           ],
       extras_require = dict(test=['zope.app.testing',

Modified: z3ext.product/trunk/src/z3ext/product/installer.py
===================================================================
--- z3ext.product/trunk/src/z3ext/product/installer.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/installer.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -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: installer.py 1472 2008-02-18 11:35:13Z fafhrd91 $
 """

Modified: z3ext.product/trunk/src/z3ext/product/interfaces.py
===================================================================
--- z3ext.product/trunk/src/z3ext/product/interfaces.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/interfaces.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 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.product/trunk/src/z3ext/product/locales/nl/LC_MESSAGES/z3ext.product.po
===================================================================
--- z3ext.product/trunk/src/z3ext/product/locales/nl/LC_MESSAGES/z3ext.product.po	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/locales/nl/LC_MESSAGES/z3ext.product.po	2009-08-11 09:24:41 UTC (rev 102658)
@@ -1,6 +1,6 @@
 # #############################################################################
 #
-# Copyright (c) 2003-2004 Zope Corporation and Contributors.
+# Copyright (c) 2003-2004 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.product/trunk/src/z3ext/product/locales/ru/LC_MESSAGES/z3ext.product.po
===================================================================
--- z3ext.product/trunk/src/z3ext/product/locales/ru/LC_MESSAGES/z3ext.product.po	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/locales/ru/LC_MESSAGES/z3ext.product.po	2009-08-11 09:24:41 UTC (rev 102658)
@@ -1,6 +1,6 @@
 # #############################################################################
 #
-# Copyright (c) 2003-2004 Zope Corporation and Contributors.
+# Copyright (c) 2003-2004 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.product/trunk/src/z3ext/product/locales/z3ext.product.pot
===================================================================
--- z3ext.product/trunk/src/z3ext/product/locales/z3ext.product.pot	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/locales/z3ext.product.pot	2009-08-11 09:24:41 UTC (rev 102658)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2003-2004 Zope Corporation and Contributors.
+# Copyright (c) 2003-2004 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.product/trunk/src/z3ext/product/product.py
===================================================================
--- z3ext.product/trunk/src/z3ext/product/product.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/product.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 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,
@@ -66,7 +66,7 @@
 
     def install(self):
         self._checkRequiredInstall()
-        
+
         if self.__installed__:
             raise interfaces.ProductAlreadyInstalledError(
                 _('Product already installed.'))

Modified: z3ext.product/trunk/src/z3ext/product/registry.py
===================================================================
--- z3ext.product/trunk/src/z3ext/product/registry.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/registry.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -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:  2007-12-12 12:27:02Z fafhrd $
 """
@@ -46,7 +46,7 @@
         return "<Product: %s>"%self.title
 
     def __reduce__(self):
-        # Global site managers are pickled as global objects 
+        # Global site managers are pickled as global objects
         return BC, (self.__parent__, self.__name__)
 
 

Modified: z3ext.product/trunk/src/z3ext/product/tests.py
===================================================================
--- z3ext.product/trunk/src/z3ext/product/tests.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/tests.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 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: tests.py 84833 2008-03-21 09:09:54Z fafhrd $
 """

Modified: z3ext.product/trunk/src/z3ext/product/utils.py
===================================================================
--- z3ext.product/trunk/src/z3ext/product/utils.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/utils.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 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.product/trunk/src/z3ext/product/view.py
===================================================================
--- z3ext.product/trunk/src/z3ext/product/view.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/view.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 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 @@
         context = self.context
 
         service = IStatusMessage(request)
-        
+
         if request.has_key('install'):
             products = request.get('availproducts', ())
             if not products:

Modified: z3ext.product/trunk/src/z3ext/product/zcml.py
===================================================================
--- z3ext.product/trunk/src/z3ext/product/zcml.py	2009-08-11 09:10:17 UTC (rev 102657)
+++ z3ext.product/trunk/src/z3ext/product/zcml.py	2009-08-11 09:24:41 UTC (rev 102658)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 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,
@@ -31,7 +31,7 @@
 
 
 class IProductDirective(IConfigletDirective):
-    
+
     configurable = schema.Bool(
         title = u'Configurable',
         default = False,



More information about the Checkins mailing list