23 Aug
2007
23 Aug
'07
5:55 p.m.
--On 23. August 2007 13:47:15 -0400 tonylabarbara@aol.com wrote:
Hi: I have this code (editing out the extraneous) at the beginning of a page:
<body bgcolor="#ffffff" tal:define="newRow string:yes">
After calling some other variables (specifically rotating through a changing ¨item¨ (for item in items...)), I try and change newRow:
Using 'global' is basically bad-style. It is even more bad-style to modify global variables in ZPT. Rethink your problem. If necessary move the related code into a Python script. -aj