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