[ZDP] BackTalk to Document The Zope Book (2.5 Edition)/Advanced Zope Scripting
nobody@nowhere.com
nobody@nowhere.com
Fri, 30 Aug 2002 07:26:31 -0400
A comment to the paragraph below was recently added via http://www.zope.org/Documentation/Books/ZopeBook/current/ScriptingZope.stx#3-30
---------------
You can easily process this form with a script named
*actionScript* that includes *name* and *age* in its parameter
list::
## Script (Python) "actionScript"
##parameters=name, age
##
"Process form"
context.processName(name)
context.processAge(age)
return context.responseMessage()
% Anonymous User - Aug. 30, 2002 7:26 am:
I don't understand why you keep giving such senseless examples. I mean in order to get this code to work you
would have to create methods or scripts named "processName", "processAge" and "responseMessage" if am not
mistaken.
How am I supposed to understand what you are trying to explain here, when your code doesn't work.
At this point I am quite frustrated as it is by far not the first time your examples don't work.