[CMF-checkins] CVS: Products/CMFCore - CookieCrumbler.py:1.28
Casey Duncan
casey at zope.com
Wed Jul 14 14:09:57 EDT 2004
Update of /cvs-repository/Products/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv17575/CMFCore
Modified Files:
CookieCrumbler.py
Log Message:
Change default cache-control header injected by CC from "no-cache" to "private". This allows browsers, but not shared caches to cache cookie authenticated pages.
=== Products/CMFCore/CookieCrumbler.py 1.27 => 1.28 ===
--- Products/CMFCore/CookieCrumbler.py:1.27 Tue Jun 1 06:36:52 2004
+++ Products/CMFCore/CookieCrumbler.py Wed Jul 14 14:09:57 2004
@@ -88,7 +88,7 @@
unauth_page = ''
logout_page = 'logged_out'
local_cookie_path = 0
- cache_header_value = 'no-cache'
+ cache_header_value = 'private'
security.declarePrivate('delRequestVar')
def delRequestVar(self, req, name):
More information about the CMF-checkins
mailing list