diff --git a/controller/Expire.py b/controller/Expire.py index cac12b4..c2148d1 100644 --- a/controller/Expire.py +++ b/controller/Expire.py @@ -6,11 +6,11 @@ def strongly_expire( function ): Decorator that sends headers that instruct browsers and proxies not to cache. """ def expire( *args, **kwargs ): - cherrypy.response.headers[ "Expires" ] = "Sun, 19 Nov 1978 05:00:00 GMT" - cherrypy.response.headers[ "Cache-Control" ] = "no-store, no-cache, must-revalidate, post-check=0, pre-check=0" - cherrypy.response.headers[ "Pragma" ] = "no-cache" + cherrypy.response.headers[ "Expires" ] = "Sun, 19 Nov 1978 05:00:00 GMT" + cherrypy.response.headers[ "Cache-Control" ] = "no-store, no-cache, must-revalidate, post-check=0, pre-check=0" + cherrypy.response.headers[ "Pragma" ] = "no-cache" - return function( *args, **kwargs ) + return function( *args, **kwargs ) return expire @@ -22,8 +22,8 @@ def weakly_expire( function ): breaking Internet Explorer HTTPS file downloads. """ def expire( *args, **kwargs ): - cherrypy.response.headers[ "Expires" ] = "Sun, 19 Nov 1978 05:00:00 GMT" + cherrypy.response.headers[ "Expires" ] = "Sun, 19 Nov 1978 05:00:00 GMT" - return function( *args, **kwargs ) + return function( *args, **kwargs ) return expire