d7832ba262
Added the ability to rename existing pages. [[!redirects Some Page Name]] redirects Wikilinks [[Some Page Name]] to the current page (assuming "Some Page Name" does not exist). Real pages trump redirects (though this may change, depending on user feedback).
35 lines
893 B
Ruby
35 lines
893 B
Ruby
require_dependency 'cache_sweeping_helper'
|
|
|
|
class WebSweeper < ActionController::Caching::Sweeper
|
|
|
|
include CacheSweepingHelper
|
|
|
|
observe Web, Page, WikiFile
|
|
|
|
def after_save(record)
|
|
if record.is_a?(Web)
|
|
web = record
|
|
web.pages.each { |page| expire_cached_page(web, page.name) }
|
|
expire_cached_summary_pages(web)
|
|
elsif record.is_a?(WikiFile)
|
|
record.web.pages_that_link_to_file(record.file_name).each do |page|
|
|
expire_cached_page(record.web, page)
|
|
end
|
|
expire_cached_summary_pages(record.web)
|
|
end
|
|
end
|
|
|
|
def after_destroy(record)
|
|
if record.is_a?(Web)
|
|
expire_cached_summary_pages(record)
|
|
elsif record.is_a?(Page)
|
|
expire_cached_page(record.web, record.name)
|
|
expire_cached_summary_pages(record.web)
|
|
expire_cached_revisions(record)
|
|
else
|
|
expire_cached_summary_pages(record.web)
|
|
end
|
|
end
|
|
|
|
end
|