[Zope-Checkins] CVS: Zope/lib/python/Products/PythonScripts/help - PythonScript.py:1.8 Script.py:1.5 standard.py:1.5

Martijn Pieters mj@zope.com
Wed, 14 Aug 2002 18:25:40 -0400


Update of /cvs-repository/Zope/lib/python/Products/PythonScripts/help
In directory cvs.zope.org:/tmp/cvs-serv27658/PythonScripts/help

Modified Files:
	PythonScript.py Script.py standard.py 
Log Message:
Clean up indentation and trailing whitespace.


=== Zope/lib/python/Products/PythonScripts/help/PythonScript.py 1.7 => 1.8 ===
--- Zope/lib/python/Products/PythonScripts/help/PythonScript.py:1.7	Wed Nov 28 10:51:05 2001
+++ Zope/lib/python/Products/PythonScripts/help/PythonScript.py	Wed Aug 14 18:25:08 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
-# 
+#
 ##############################################################################
 
 def manage_addPythonScript(id, REQUEST=None):
@@ -136,7 +136,7 @@
     __extends__=(
         'PythonScripts.Script.Script',
         )
-    
+
 
     def ZPythonScriptHTML_editAction(REQUEST, title, params, body):
         """
@@ -230,8 +230,3 @@
         'text/plain' set on the RESPONSE.
 
         """
-
-
-
-
-


=== Zope/lib/python/Products/PythonScripts/help/Script.py 1.4 => 1.5 ===
--- Zope/lib/python/Products/PythonScripts/help/Script.py:1.4	Wed Feb 13 20:49:50 2002
+++ Zope/lib/python/Products/PythonScripts/help/Script.py	Wed Aug 14 18:25:08 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
-# 
+#
 ##############################################################################
 
 class Script:


=== Zope/lib/python/Products/PythonScripts/help/standard.py 1.4 => 1.5 ===
--- Zope/lib/python/Products/PythonScripts/help/standard.py:1.4	Wed Aug 14 12:42:29 2002
+++ Zope/lib/python/Products/PythonScripts/help/standard.py	Wed Aug 14 18:25:08 2002
@@ -3,7 +3,7 @@
 
   The functions and classes in this module are available from
   Python-based scripts, DTML, and Page Templates.
-  
+
 """
 
 def whole_dollars(number):
@@ -23,7 +23,7 @@
     See Also
 
       "Structured-Text Rules":http://dev.zope.org/Members/jim/StructuredTextWiki/StructuredTextNGRules
-    
+
     """
 
 def sql_quote(s):
@@ -41,7 +41,7 @@
 
       "Python 'cgi' module":http://www.python.org/doc/current/lib/Functions_in_cgi_module.html
       'escape' function.
-      
+
     """
 
 def url_quote(s):
@@ -123,7 +123,7 @@
     def call(client=None, REQUEST={}, **kw):
         """
         Render the DTML.
-        
+
         To accomplish its task, DTML often needs to resolve various
         names into objects.  For example, when the code <dtml-var
         spam> is executed, the DTML engine tries to resolve the
@@ -148,5 +148,5 @@
         three methods.  You can pass any number of them or none at
         all. Names will be looked up first in the keyword argument,
         next in the client and finally in the mapping.
-        
+
         """