blob: f1e876e5e500240cc32a00a74c7f23949a75d611 [file] [log] [blame]
#--######################################################################
# Copyright (c) 2006 Logica
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#
# Onno van der Straaten:: initial implementation
#++######################################################################
# {Copyright (c) 2006 Logica}[link:files/COPYRIGHT.html]
class Sweeper < ActionController::Caching::Sweeper
observe WikiPage, Checkout, Comment, Wiki, UserVersion, Upload
# TODO more advanced expiration
def after_create(record)
if record.is_a?(Wiki) || record.is_a?(Checkout) || record.is_a?(Comment) || record.is_a?(UserVersion) || record.is_a?(Wiki) || record.is_a?(Upload)
expire_all_pages
elsif record.is_a?(WikiPage)
expire_all_pages if record.tool = 'Wiki'
end
end
def after_destroy(record)
if record.is_a?(Checkout)
expire_all_pages
end
end
end