expire_fragment(Regexp.new(Regexp.escape(path) + "\\..*"))
end
+ ##
+ # is the requestor logged in?
+ def logged_in?
+ !@user.nil?
+ end
+
private
# extract authorisation credentials from headers, returns user = nil if none
before_filter :offline_redirect, :only => [:create, :edit, :delete, :data, :api_data, :api_create]
around_filter :api_call_handle_error, :only => [:api_details, :api_data, :api_create]
- caches_action :list, :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]
cache_sweeper :tracetag_sweeper, :only => [:create, :edit, :delete, :api_create]