Re: [Zope] stupid question I guess

2000-06-07 Thread Chris Withers
josh on wrote: can I set a local variable in zope on a dtml page dtml-var variablename = 1 Yup: dtml-call "REQUEST.set('variablename',1)" Nice syntax, huh? ;-) Chris ___ Zope maillist - [EMAIL PROTECTED]

Re: [Zope] stupid question I guess

2000-06-07 Thread Andrew Kenneth Milton
+[ Chris Withers ]- | josh on wrote: | can I set a local variable in zope on a dtml page | dtml-var variablename = 1 | | Yup: | | dtml-call "REQUEST.set('variablename',1)" | | Nice syntax, huh? ;-) Tsk tsk, that's global :-) dtml-let

Re: [Zope] stupid question I guess

2000-06-07 Thread Phil Harris
Is it global to the page, or local to the page ?!?!? - Original Message - From: "Andrew Kenneth Milton" [EMAIL PROTECTED] To: "Chris Withers" [EMAIL PROTECTED] Cc: "josh on" [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, June 07, 2000 3:05 PM Subject

Re: [Zope] stupid question I guess

2000-06-07 Thread Tony McDonald
At 12:05 am +1000 8/6/00, Andrew Kenneth Milton wrote: +[ Chris Withers ]- | josh on wrote: | can I set a local variable in zope on a dtml page | dtml-var variablename = 1 | | Yup: | | dtml-call "REQUEST.set('variablename',1)" | | Nice syntax,

Re: [Zope] stupid question I guess

2000-06-07 Thread josh on
] stupid question I guess At 2:55 pm +0100 7/6/00, Chris Withers wrote: josh on wrote: can I set a local variable in zope on a dtml page dtml-var variablename = 1 Yup: dtml-call "REQUEST.set('variablename',1)" Nice syntax, huh? ;-) Chris now now :) (tested)