Author: justi9
Date: 2009-03-18 11:47:27 -0400 (Wed, 18 Mar 2009)
New Revision: 3162
Modified:
mgmt/trunk/wooly/python/wooly/pages.py
Log:
Disable browser caching for UpdatePage
Modified: mgmt/trunk/wooly/python/wooly/pages.py
===================================================================
--- mgmt/trunk/wooly/python/wooly/pages.py 2009-03-18 15:33:33 UTC (rev 3161)
+++ mgmt/trunk/wooly/python/wooly/pages.py 2009-03-18 15:47:27 UTC (rev 3162)
@@ -61,6 +61,9 @@
def get_content_type(self, session):
return self.xml_content_type
+ def get_cache_control(self, session):
+ return "no-cache"
+
def do_process(self, session):
self.html_page.process(self.session.get(session))
Show replies by date