[ZPT] Newbie: Calling REQUEST.set from zpt ?

Dieter Maurer dieter@handshake.de
Mon, 28 Jan 2002 21:06:29 +0100


Gitte Wange writes:
 > ...
 > How do I call REQUEST.set() ?
Most uses of "REQUEST.set" can be avoided in ZPT because it has
true assignment:

     tal:define="var value;
                 global global_var  value;
		 ...
		"

If you need to communicate with objects outside the ZPT (and you
want to use "REQUEST" for this, you can use

     tal:define="dummy python: request.set(....)"


Dieter