[Zope] Python Script REQUEST namespace not found.

Chetan Kumar chetan@cdacindia.com
Wed, 04 Sep 2002 18:48:47 +0530


H.Tan wrote:

>Hi,
>
>I'm trying to write my first python script by passing parameter through the
>REQUEST object as following:
>
>
>---------------------------
>In the Python Script:
>
>Parameter: name="world"
>return "Hello %s" %name
>------------------------
>  
>
Here is one approach
Do not set Parameter (this will come from the request object)

GotName= request.other.name
retrun "Hello %s" GotName

This should work

HTH
Chetan