]> git.openstreetmap.org Git - rails.git/commitdiff
Disable caching of pages with dynamic layout
authorTom Hughes <tom@compton.nu>
Tue, 8 Jan 2013 13:49:58 +0000 (13:49 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 14 Jan 2013 22:30:03 +0000 (22:30 +0000)
Pages now feed back into the layout to set the content of the heading
block so we can't cache any page which has a layout as that would mean
the heading wouldn't appear when the cached page was used.

app/controllers/diary_entry_controller.rb
app/controllers/trace_controller.rb

index d69d58df34075bbcd9d55294aba90ca84a9e4b36..f218ea6bb1ea89d4f1c634a6da4e8995d5267655 100644 (file)
@@ -9,9 +9,9 @@ class DiaryEntryController < ApplicationController
   before_filter :check_database_writable, :only => [:new, :edit]
   before_filter :require_administrator, :only => [:hide, :hidecomment]
 
-  caches_action :list, :layout => false, :unless => :user_specific_list?
+#  caches_action :list, :layout => false, :unless => :user_specific_list?
   caches_action :rss, :layout => true
-  caches_action :view, :layout => false
+#  caches_action :view, :layout => false
   cache_sweeper :diary_sweeper, :only => [:new, :edit, :comment, :hide, :hidecomment]
 
   def new
index 4b138bdaecf5d52f22c08faec64671516bda6d92..14c64d2c67750179a70947be81c0b0c7fd51f185 100644 (file)
@@ -16,8 +16,8 @@ class TraceController < ApplicationController
   before_filter :offline_redirect, :only => [:create, :edit, :delete, :data, :api_create, :api_delete, :api_data]
   around_filter :api_call_handle_error, :only => [:api_create, :api_read, :api_update, :api_delete, :api_data]
 
-  caches_action :list, :unless => :logged_in?, :layout => false
-  caches_action :view, :layout => false
+#  caches_action :list, :unless => :logged_in?, :layout => false
+#  caches_action :view, :layout => false
   caches_action :georss, :layout => true
   cache_sweeper :trace_sweeper, :only => [:create, :edit, :delete, :api_create, :api_update, :api_delete]
   cache_sweeper :tracetag_sweeper, :only => [:create, :edit, :delete, :api_create, :api_update, :api_delete]