[Zope-Checkins] CVS: Zope/lib/python/Shared/DC/Scripts - Bindings.py:1.8 BindingsUI.py:1.4 Script.py:1.7 Signature.py:1.6 __init__.py:1.4

Martijn Pieters mj@zope.com
Wed, 14 Aug 2002 17:51:30 -0400


Update of /cvs-repository/Zope/lib/python/Shared/DC/Scripts
In directory cvs.zope.org:/tmp/cvs-serv16745/DC/Scripts

Modified Files:
	Bindings.py BindingsUI.py Script.py Signature.py __init__.py 
Log Message:
Clean up indentation and trailing whitespace.


=== Zope/lib/python/Shared/DC/Scripts/Bindings.py 1.7 => 1.8 ===
--- Zope/lib/python/Shared/DC/Scripts/Bindings.py:1.7	Wed Nov 28 10:51:13 2001
+++ Zope/lib/python/Shared/DC/Scripts/Bindings.py	Wed Aug 14 17:50:59 2002
@@ -1,14 +1,14 @@
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-# 
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 # FOR A PARTICULAR PURPOSE
-# 
+#
 ##############################################################################
 
 __version__='$Revision$'[11:-2]
@@ -142,7 +142,7 @@
 
 
 class Bindings:
-    
+
     __ac_permissions__ = (
         ('View management screens', ('getBindingAssignments',)),
         ('Change bindings', ('ZBindings_edit', 'ZBindings_setClient')),
@@ -188,7 +188,7 @@
 
     def _createBindCode(self, names):
         return names._createCodeBlockForMapping()
-        
+
     def _prepareBindCode(self):
         # Creates:
         # - a code block that quickly generates "bound_data" and
@@ -210,7 +210,7 @@
         if bindcount is _marker:
             self._prepareBindCode()
             bindcount = self._v_bindcount
-        return bindcount            
+        return bindcount
 
     def _getContext(self):
         # Utility for bindcode.
@@ -281,6 +281,3 @@
             exec bindcode
             bound_data = bound_data[0]
         return self._exec(bound_data, args, kw)
-
-
-


=== Zope/lib/python/Shared/DC/Scripts/BindingsUI.py 1.3 => 1.4 ===
--- Zope/lib/python/Shared/DC/Scripts/BindingsUI.py:1.3	Wed Nov 28 10:51:13 2001
+++ Zope/lib/python/Shared/DC/Scripts/BindingsUI.py	Wed Aug 14 17:50:59 2002
@@ -1,14 +1,14 @@
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-# 
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 # FOR A PARTICULAR PURPOSE
-# 
+#
 ##############################################################################
 
 __version__='$Revision$'[11:-2]
@@ -17,7 +17,7 @@
 from Bindings import Bindings
 
 class BindingsUI(Bindings):
-    
+
     manage_options = (
         {'label':'Bindings',
          'action':'ZBindingsHTML_editForm',


=== Zope/lib/python/Shared/DC/Scripts/Script.py 1.6 => 1.7 ===
--- Zope/lib/python/Shared/DC/Scripts/Script.py:1.6	Tue Jan 29 12:09:05 2002
+++ Zope/lib/python/Shared/DC/Scripts/Script.py	Wed Aug 14 17:50:59 2002
@@ -1,14 +1,14 @@
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-# 
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 # FOR A PARTICULAR PURPOSE
-# 
+#
 ##############################################################################
 
 """Script module
@@ -54,4 +54,3 @@
         raise "Redirect", "%s?%s" % (REQUEST['URL1'], join(vv, '&'))
 
     from Signature import _setFuncSignature
-


=== Zope/lib/python/Shared/DC/Scripts/Signature.py 1.5 => 1.6 ===
--- Zope/lib/python/Shared/DC/Scripts/Signature.py:1.5	Wed Nov 28 10:51:13 2001
+++ Zope/lib/python/Shared/DC/Scripts/Signature.py	Wed Aug 14 17:50:59 2002
@@ -1,14 +1,14 @@
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-# 
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 # FOR A PARTICULAR PURPOSE
-# 
+#
 ##############################################################################
 
 """Signature module
@@ -42,4 +42,3 @@
     code = FuncCode(varnames, argcount)
     if self.func_code != code:
         self.func_code = code
-


=== Zope/lib/python/Shared/DC/Scripts/__init__.py 1.3 => 1.4 ===
--- Zope/lib/python/Shared/DC/Scripts/__init__.py:1.3	Wed Nov 28 10:51:13 2001
+++ Zope/lib/python/Shared/DC/Scripts/__init__.py	Wed Aug 14 17:50:59 2002
@@ -1,14 +1,14 @@
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-# 
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 # FOR A PARTICULAR PURPOSE
-# 
+#
 ##############################################################################
 
 __version__='$Revision$'[11:-2]