Re: [Zope] Working with ZopeTime

2000-05-30 Thread Chris Withers
The python expression syntax strikes again :( Tom Scheidt wrote: dtml-if "date1 == 'dtml-var ZopeTime fmt=Day'" You're trying to embed DTML within python here. you really want (untested): dtml-if "date1 == _DateTime.now().Day()" cheers, Chris

Re: [Zope] Working with ZopeTime

2000-05-30 Thread Chris Withers
Shane Hathaway wrote: Close but no brownies for you. :-) Make that... dtml-if "date1 == _.DateTime().Day()" Ack, a genuine typo... I'm going home to sulk ;( Chris ___ Zope maillist - [EMAIL PROTECTED]

Re: [Zope] Working with ZopeTime

2000-05-30 Thread Dieter Maurer
Hi Tom, But not with: dtml-if "date1 == 'dtml-var ZopeTime fmt=Day'" (and yes, the day I'm doing it on is Tuesday). Usually, DTML-tags cannot be nested. Exceptions: tags in compound tags such as "if, in, let, with, ...". In your case, the "dtml-var" is simply not recognized and treated as a

[Zope] Working with ZopeTime

2000-05-30 Thread Tom Scheidt
Hi All, Im trying to display information based on what day of the week it tis using: dtml-if "date1 == 'dtml-var ZopeTime fmt=Day'" The date1 property on the page I'm calling is "Tuesday". It works when i do this: dtml-if "date1 == 'Tuesday'" But not with: dtml-if "date1 == 'dtml-var