- get "/way/:id" => "browse#way", :id => /\d+/, :as => :way
- get "/way/:id/history" => "browse#way_history", :id => /\d+/
- get "/node/:id" => "browse#node", :id => /\d+/, :as => :node
- get "/node/:id/history" => "browse#node_history", :id => /\d+/
- get "/relation/:id" => "browse#relation", :id => /\d+/, :as => :relation
- get "/relation/:id/history" => "browse#relation_history", :id => /\d+/
- get "/changeset/:id" => "browse#changeset", :as => :changeset, :id => /\d+/
+ get "/way/:id" => "ways#show", :id => /\d+/, :as => :way
+ get "/way/:id/history" => "old_ways#index", :id => /\d+/, :as => :way_history
+ resources :old_ways, :path => "/way/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
+ get "/node/:id" => "nodes#show", :id => /\d+/, :as => :node
+ get "/node/:id/history" => "old_nodes#index", :id => /\d+/, :as => :node_history
+ resources :old_nodes, :path => "/node/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
+ get "/relation/:id" => "relations#show", :id => /\d+/, :as => :relation
+ get "/relation/:id/history" => "old_relations#index", :id => /\d+/, :as => :relation_history
+ resources :old_relations, :path => "/relation/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
+ resources :changesets, :path => "changeset", :id => /\d+/, :only => :show do
+ match :subscribe, :unsubscribe, :on => :member, :via => [:get, :post]
+ end