Fixed caching bug with category 'list' and 'recently_revised' views.
Re-enabled filesystem caching.
This commit is contained in:
parent
edf335060a
commit
144540a761
4 changed files with 5 additions and 8 deletions
|
@ -22,10 +22,8 @@ ActionController::Routing::Routes.draw do |map|
|
|||
connect_to_web map, ':web/web_list', :controller => 'wiki', :action => 'web_list'
|
||||
connect_to_web map, ':web/show/diff/:id', :controller => 'wiki', :action => 'show', :mode => 'diff'
|
||||
connect_to_web map, ':web/revision/diff/:id', :controller => 'wiki', :action => 'revision', :mode => 'diff'
|
||||
connect_to_web map, ':web/list', :controller => 'wiki', :action => 'list'
|
||||
connect_to_web map, ':web/list/:category', :controller => 'wiki', :action => 'list'
|
||||
connect_to_web map, ':web/recently_revised', :controller => 'wiki', :action => 'recently_revised'
|
||||
connect_to_web map, ':web/recently_revised/:category', :controller => 'wiki', :action => 'recently_revised'
|
||||
connect_to_web map, ':web/list/:category', :controller => 'wiki', :action => 'list', :requirements => { :category => /.*/}, :category => nil
|
||||
connect_to_web map, ':web/recently_revised/:category', :controller => 'wiki', :action => 'recently_revised', :requirements => { :category => /.*/}, :category => nil
|
||||
connect_to_web map, ':web/:action/:id', :controller => 'wiki'
|
||||
connect_to_web map, ':web/:action', :controller => 'wiki'
|
||||
connect_to_web map, ':web', :controller => 'wiki', :action => 'index'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue