mmm, I don't know if this will help me. The code I showed, is used in a ZClass. I still get this error of : Invalid Date-Time String How do I have to convert the result of the ZopeTime() function so that it can be placed in a property of type 'Date'? Tom. ----- Original Message ----- From: Daniel G. Rusch <drusch@globalcrossing.com> To: Tom Deprez <tom.deprez@village.uunet.be> Cc: Michel Pelletier <michel@digicool.com>; <zope@zope.org> Sent: Tuesday, December 21, 1999 9:50 PM Subject: Re: [Zope] Error?
I think your looking at this from the wrong angle. There is a difference between a variable that lives in the REQUEST space and a property of a DTML Document (or Folder or whatever)
If I have a DTML Document with an id of Test and it has a property x of type int then this works.
<dtml-call "Test.manage_changeProperties(x=2)"> <dtml-var "Test.x">
Of course your property was a date type, but the same applies.
Hope this helps.
DR