Re: [Zope] Problem with 2.2.4b1

2000-11-25 Thread Wolfgang Strobl

On 24 Nov 2000, at 9:48, [EMAIL PROTECTED] wrote:

 I installed 2.2.4b1 over 2.2.3, and everything seems to work fine, but, when
 I IE5.5 to manage my sites, I loose some icons and graphics (not all!).
 But, if I clear my cache, The icons reappears, but only for a while!  Am I
 the only only experiencing this problem?

No. I reported this on Tuesday, and Brian Lloyd answered that it 
is fixed for final, on the very same day.

See Message-ID 

NEBBKMOOINLOHMJBOMPIKEFBCAAA.brian@di
gicool.com

-- 
eMSK / Wolfgang Strobl / [EMAIL PROTECTED]

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Problem with 2.2.4b1

2000-11-24 Thread Menard . Jean-Francois

I installed 2.2.4b1 over 2.2.3, and everything seems to work fine, but, when
I IE5.5 to manage my sites, I loose some icons and graphics (not all!).
But, if I clear my cache, The icons reappears, but only for a while!  Am I
the only only experiencing this problem?

Jean-François Ménard
Intranet DPAS
Pratiques d'affaires et orientations
*(514) 840-3000  poste 3939
*  (514) 840-5585
*  [EMAIL PROTECTED]
* 855 Ste-Catherine est, 6e étage
  Montréal, Qué. H2L 4P5


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Problem with 2.2.4b1

2000-11-24 Thread Chris Gray

Yes it happens for me too and it comes and goes as you describe.  Also
I've noticed it in Mozilla as well as IE5.5.

Chris


On Fri, 24 Nov 2000 [EMAIL PROTECTED] wrote:

 I installed 2.2.4b1 over 2.2.3, and everything seems to work fine, but, when
 I IE5.5 to manage my sites, I loose some icons and graphics (not all!).
 But, if I clear my cache, The icons reappears, but only for a while!  Am I
 the only only experiencing this problem?
 
 Jean-François Ménard
 Intranet DPAS
 Pratiques d'affaires et orientations
 *(514) 840-3000  poste 3939
 *  (514) 840-5585
 *  [EMAIL PROTECTED]
 * 855 Ste-Catherine est, 6e étage
   Montréal, Qué. H2L 4P5
 
 
 ___
 Zope maillist  -  [EMAIL PROTECTED]
 http://lists.zope.org/mailman/listinfo/zope
 **   No cross posts or HTML encoding!  **
 (Related lists - 
  http://lists.zope.org/mailman/listinfo/zope-announce
  http://lists.zope.org/mailman/listinfo/zope-dev )
 


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Problem with 2.2.4b1

2000-11-24 Thread Alastair Burt

[EMAIL PROTECTED] writes:

 I installed 2.2.4b1 over 2.2.3, and everything seems to work fine, but, when
 I IE5.5 to manage my sites, I loose some icons and graphics (not all!).
 But, if I clear my cache, The icons reappears, but only for a while!  Am I
 the only only experiencing this problem?

I found this problem and sent the following patch to the Collector.  

*** ImageFile.py2000/11/24 05:16:42 1.1
--- ImageFile.py2000/11/24 05:27:59
***
*** 137,146 
  try:mod_since=long(DateTime(header).timeTime())
  except: mod_since=None
  if mod_since is not None:
! if self._p_mtime:
! last_mod = long(self._p_mtime)
! else:
! last_mod = long(0)
  if last_mod  0 and last_mod = mod_since:
  RESPONSE.setStatus(304)
  return ''
--- 137,143 
  try:mod_since=long(DateTime(header).timeTime())
  except: mod_since=None
  if mod_since is not None:
! last_mod = long(getattr(self, '_p_mtime', 0))
  if last_mod  0 and last_mod = mod_since:
  RESPONSE.setStatus(304)
  return ''


--- Alastair


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )