diff --git a/app/controllers/cache_sweeping_helper.rb b/app/controllers/cache_sweeping_helper.rb index 4faacefd..a960291c 100644 --- a/app/controllers/cache_sweeping_helper.rb +++ b/app/controllers/cache_sweeping_helper.rb @@ -19,7 +19,6 @@ module CacheSweepingHelper %w(authors atom_with_content atom_with_headlines).each do |action| expire_action :controller => 'wiki', :web => web.address, :action => action end - expire_fragment :controller => 'wiki', :web => web.address, :action => %w(rss_with_headlines rss_with_content) end end diff --git a/app/views/wiki/rss_feed.rxml b/app/views/wiki/rss_feed.rxml deleted file mode 100644 index 84e29dbe..00000000 --- a/app/views/wiki/rss_feed.rxml +++ /dev/null @@ -1,21 +0,0 @@ -xml.rss('version' => '2.0') do - xml.channel do - xml.title(@web.name) - xml.link(url_for(:only_path => false, :web => @web_name, :action => @link_action, :id => 'HomePage')) - xml.description('An Instiki wiki') - xml.language('en-us') - xml.ttl('40') - - for page in @pages_by_revision - xml.item do - xml.title(page.plain_name) - unless @hide_description - xml.description(rendered_content(page)) - end - xml.pubDate(page.revised_at.getgm.strftime('%a, %d %b %Y %H:%M:%S Z')) - xml.guid(url_for(:only_path => false, :web => @web_name, :action => @link_action, :id => page.name)) - xml.link(url_for(:only_path => false, :web => @web_name, :action => @link_action, :id => page.name)) - end - end - end -end