[Zope] Netscape Image Problems (LoginManager?)
Dieter Maurer
dieter@handshake.de
Tue, 23 May 2000 21:05:55 +0200 (CEST)
Jon Delheimer writes:
> charset="iso-8859-1"
>
>
> Shane,
>
> I made the changes you suggested to Image.py.
>
> Here are the results:
>
> ...
> Thursday, 11-May-00 15:53:50 GMT
> 1900/05/11 15:53:50 GMT
> -2197699570.0
That explains the exception:
1900 is a bit too far in the past.
Seems that Netscape sends such a strange "If-Modified-Since" header.
You can try to fix this problem, by removing the "int(...)"
in "OFS.Image.py:186"
mod_since=int(DateTime(header).timeTime())
==== >
mod_since=DateTime(header).timeTime()