[Checkins] SVN: z3ext.controlpanel/trunk/ reindent code; change copyright holder

Nikolay Kim fafhrd91 at gmail.com
Tue Aug 11 04:52:47 EDT 2009


Log message for revision 102651:
  reindent code; change copyright holder

Changed:
  U   z3ext.controlpanel/trunk/CHANGES.txt
  U   z3ext.controlpanel/trunk/bootstrap.py
  U   z3ext.controlpanel/trunk/setup.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/breadcrumb.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/category.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/configlet.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/interfaces.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/navigation.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/wizard.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/configlet.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/configlettype.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/generations/__init__.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/interfaces.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/nl/LC_MESSAGES/z3ext.controlpanel.po
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/ru/LC_MESSAGES/z3ext.controlpanel.po
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/z3ext.controlpanel.pot
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/root.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/storage.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/testing.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/tests/interfaces.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/tests/tests.py
  U   z3ext.controlpanel/trunk/src/z3ext/controlpanel/zcml.py

-=-
Modified: z3ext.controlpanel/trunk/CHANGES.txt
===================================================================
--- z3ext.controlpanel/trunk/CHANGES.txt	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/CHANGES.txt	2009-08-11 08:52:47 UTC (rev 102651)
@@ -2,14 +2,16 @@
 CHANGES
 =======
 
-1.4.4 (Unreleased)
+1.5.0 (2009-08-11)
 ------------------
 
 - Hide 'Configure' wizard step if configlet schema is empty
 
 - Added i18n:translate attributes to pt files
 
+- Change copyright holder
 
+
 1.4.3 (2009-06-21)
 ------------------
 

Modified: z3ext.controlpanel/trunk/bootstrap.py
===================================================================
--- z3ext.controlpanel/trunk/bootstrap.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/bootstrap.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -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.controlpanel/trunk/setup.py
===================================================================
--- z3ext.controlpanel/trunk/setup.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/setup.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 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.4.4dev'
+version='1.5.0'
 
 
 setup(name = 'z3ext.controlpanel',
@@ -71,6 +71,7 @@
                           'zope.app.component',
                           'zope.app.security',
                           'zope.app.container',
+                          'z3c.traverser',
                           'z3ext.layout',
                           'z3ext.layoutform',
                           'z3ext.resourcepackage',

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/breadcrumb.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/breadcrumb.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/breadcrumb.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/category.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/category.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/category.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/configlet.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/configlet.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/configlet.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/interfaces.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/interfaces.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/interfaces.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/navigation.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/navigation.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/navigation.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/wizard.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/wizard.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/browser/wizard.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/configlet.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/configlet.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/configlet.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/configlettype.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/configlettype.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/configlettype.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/generations/__init__.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/generations/__init__.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/generations/__init__.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/interfaces.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/interfaces.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/interfaces.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/nl/LC_MESSAGES/z3ext.controlpanel.po
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/nl/LC_MESSAGES/z3ext.controlpanel.po	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/nl/LC_MESSAGES/z3ext.controlpanel.po	2009-08-11 08:52:47 UTC (rev 102651)
@@ -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.controlpanel/trunk/src/z3ext/controlpanel/locales/ru/LC_MESSAGES/z3ext.controlpanel.po
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/ru/LC_MESSAGES/z3ext.controlpanel.po	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/ru/LC_MESSAGES/z3ext.controlpanel.po	2009-08-11 08:52:47 UTC (rev 102651)
@@ -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.controlpanel/trunk/src/z3ext/controlpanel/locales/z3ext.controlpanel.pot
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/z3ext.controlpanel.pot	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/locales/z3ext.controlpanel.pot	2009-08-11 08:52:47 UTC (rev 102651)
@@ -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.controlpanel/trunk/src/z3ext/controlpanel/root.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/root.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/root.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/storage.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/storage.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/storage.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/testing.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/testing.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/testing.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/tests/interfaces.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/tests/interfaces.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/tests/interfaces.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2008 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/tests/tests.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/tests/tests.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/tests/tests.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3ext.controlpanel/trunk/src/z3ext/controlpanel/zcml.py
===================================================================
--- z3ext.controlpanel/trunk/src/z3ext/controlpanel/zcml.py	2009-08-11 08:47:04 UTC (rev 102650)
+++ z3ext.controlpanel/trunk/src/z3ext/controlpanel/zcml.py	2009-08-11 08:52:47 UTC (rev 102651)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,



More information about the Checkins mailing list