[Zope] ZopeDate weiredness again

Alexandre Ratti alex@gabuzomeu.net
Thu, 02 Dec 1999 11:46:23 +0100


Hi Adonis,


I think there is another way to get a non-GMT date:

<dtml-with ZopeTime>
  <dtml-var "'%s/%s/%i - %s' % (dd(), mm(), year(), TimeMinutes())">
</dtml-with>

displays the correct date and time (in French format) on my box.

See this document:

<http://www.zope.org/Members/AlexR/CustomDateFormats/>


HTH.

Alexandre


At 12:00 01/12/1999 -0800, you wrote:
>From: technews@egsx.com
>Date: Wed, 1 Dec 1999 11:35:01 -0500 (EST)
>To: Joachim Schmitz <js@ac-copy.net>
>cc: "zope-dev@zope.org" <zope@zope.org>
>Subject: Re: [Zope] ZopeDate weiredness again
>
>Yes I had a similar problem with
>
> > <dtml-var  "ZopeTime('GMT+2')" fmt="%d.%m.%Y">
>
>Regardless of what time zone I put it did not change. I also used
>.toZone() and that did not work either.  The only way to get the GMT+2 was
>to divide 2/24 = 0.083 and added it to ZopeTime. i.e
>
><dtml-var  "ZopeTime() + 0.083" fmt="%d.%m.%Y">
>
>That worked...
>
>Adonis