TomK32 / feedme forked from toastdriven/feedme

A better (for me) RSS aggregator. Collects numerous RSS feeds and displays entries in chronological order. Similar to the "planet" concept.

This URL has Read+Write access

TomK32 (author)
Wed Jun 25 06:55:30 -0700 2008
commit  8691bf7f779da01c7afbb6eab3a8867b8d2bff4d
tree    7fcf5db73c7fb1c93f4092fbedfebdce77f92195
parent  48625f0a73662e478c69ec01bb4cc69fa14c1764
feedme / config / routes.rb
100644 13 lines (9 sloc) 0.441 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
ActionController::Routing::Routes.draw do |map|
  map.resources :feeds, :collection => {:ping => :any}
  map.root :controller => 'front'
 
  map.articles_for ':year/:month/:day', :controller => 'front', :action => 'articles_for',
    :year => /\d{4}/, :month => /\d{1,2}/, :day => /\d{1,2}/
 
  # Install the default routes as the lowest priority.
  map.connect ':controller/:action/:id'
  map.connect ':controller/:action/:id.:format'
  
end