[Zope] How can I force Zope to accept german date format ininput fields

Juergen R. Plasser / Hexagon plasser@hexagon.at
Wed, 03 Jul 2002 17:36:02 +0200


Hi Dirk,

I just changed the following lines in DateTime.py (and hope not to have=20
forgotten anything, the first tests seem to work properly):

from:

981                else:
982                    day=3Dints[1]
983                    month=3Dints[0]

to:

981                else:
982                    day=3Dints[0]
983                    month=3Dints[1]

If somebody sees problems with my changes or there have to be made some=20
other corrections please tell me.

Juergen

--On Mittwoch, 03. Juli 2002 16:06 +0200 Dirk Datzert=20
<dirk.datzert@tks-rasselstein.thyssenkrupp.com> wrote:

> Hi J=FCrgen,
>
> can you sent your changes to the mailing-list.
> I have the same problem, but no solution.
>