[ZDP] BackTalk to Document The Zope Book (2.5 Edition)/Advanced Zope Scripting

webmaster@zope.org webmaster@zope.org
Thu, 26 Sep 2002 18:24:01 -0400


A comment to the paragraph below was recently added via http://www.zope.org/Documentation/Books/ZopeBook/current/ScriptingZope.stx#3-35

---------------

      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.

        % Anonymous User - Sep. 26, 2002 6:23 pm:
         just forget this "context.processName(name)" stuff, it is nonsensical here. blf