diff roundup/cgi/client.py @ 2989:1836d2361553 maint-0.7

merge from HEAD
author Richard Jones <richard@users.sourceforge.net>
date Fri, 03 Dec 2004 22:21:31 +0000
parents e8d22f8ff35a
children c2f9cd78f12f
line wrap: on
line diff
--- a/roundup/cgi/client.py	Fri Dec 03 22:14:31 2004 +0000
+++ b/roundup/cgi/client.py	Fri Dec 03 22:21:31 2004 +0000
@@ -1,4 +1,4 @@
-# $Id: client.py,v 1.176.2.8 2004-11-21 21:52:34 richard Exp $
+# $Id: client.py,v 1.176.2.9 2004-12-03 22:21:31 richard Exp $
 
 """WWW request handler (also used in the stand-alone server).
 """
@@ -208,7 +208,9 @@
 #            self.additional_headers['Pragma'] = 'no-cache'
 
             # expire this page 5 seconds from now
-            date = rfc822.formatdate(time.time() + 5)
+            # <rj> changed to "fix" IE caching issue - always expire all
+            # pages
+            date = rfc822.formatdate(time.time() - 1)
             self.additional_headers['Expires'] = date
 
             # render the content

Roundup Issue Tracker: http://roundup-tracker.org/