[Zope-Checkins] CVS: Zope2 - ExternalMethod.py:1.4
Amos Latteier
amos@digicool.com
Thu, 29 Mar 2001 16:44:35 -0500 (EST)
Update of /cvs-repository/Zope2/lib/python/Products/ExternalMethod/help
In directory korak:/tmp/cvs-serv21300/lib/python/Products/ExternalMethod/help
Modified Files:
ExternalMethod.py
Log Message:
Minor typo fixes.
--- Updated File ExternalMethod.py in package Zope2 --
--- ExternalMethod.py 2000/07/03 21:54:57 1.3
+++ ExternalMethod.py 2001/03/29 21:44:34 1.4
@@ -87,8 +87,8 @@
def manage_addExternalMethod(self, id, title, module, function):
"""
-
- Add an external method to an ObjectManager.
+ Add an external method to an
+ 'ObjectManager'.
In addition to the standard object-creation arguments,
'id' and title, the following arguments are defined:
@@ -114,8 +114,8 @@
class ExternalMethod:
"""
-
- Web-callable functions that encapsulate external python functions.
+ Web-callable functions that encapsulate external
+ Python functions.
The function is defined in an external file. This file is treated
like a module, but is not a module. It is not imported directly,
@@ -135,7 +135,8 @@
def manage_edit(self, title, module, function, REQUEST=None):
"""
- Change the external method
+ Change the
+ External Method.
See the description of manage_addExternalMethod for a
description of the arguments 'module' and 'function'.
@@ -150,8 +151,8 @@
def __call__(self, *args, **kw):
"""
-
- Call an ExternalMethod
+ Call the
+ External Method.
Calling an External Method is roughly equivalent to calling
the original actual function from Python. Positional and