- map.connect "api/#{API_VERSION}/node/create", :controller => 'node', :action => 'create'
- map.connect "api/#{API_VERSION}/node/:id/ways", :controller => 'way', :action => 'ways_for_node', :id => /\d+/
- map.connect "api/#{API_VERSION}/node/:id/relations", :controller => 'relation', :action => 'relations_for_node', :id => /\d+/
- map.connect "api/#{API_VERSION}/node/:id/history", :controller => 'old_node', :action => 'history', :id => /\d+/
- map.connect "api/#{API_VERSION}/node/:id", :controller => 'node', :action => 'read', :id => /\d+/, :conditions => { :method => :get }
- map.connect "api/#{API_VERSION}/node/:id", :controller => 'node', :action => 'update', :id => /\d+/, :conditions => { :method => :put }
- map.connect "api/#{API_VERSION}/node/:id", :controller => 'node', :action => 'delete', :id => /\d+/, :conditions => { :method => :delete }
- map.connect "api/#{API_VERSION}/nodes", :controller => 'node', :action => 'nodes', :id => nil
-
- map.connect "api/#{API_VERSION}/way/create", :controller => 'way', :action => 'create'
- map.connect "api/#{API_VERSION}/way/:id/history", :controller => 'old_way', :action => 'history', :id => /\d+/
- map.connect "api/#{API_VERSION}/way/:id/full", :controller => 'way', :action => 'full', :id => /\d+/
- map.connect "api/#{API_VERSION}/way/:id/relations", :controller => 'relation', :action => 'relations_for_way', :id => /\d+/
- map.connect "api/#{API_VERSION}/way/:id", :controller => 'way', :action => 'read', :id => /\d+/, :conditions => { :method => :get }
- map.connect "api/#{API_VERSION}/way/:id", :controller => 'way', :action => 'update', :id => /\d+/, :conditions => { :method => :put }
- map.connect "api/#{API_VERSION}/way/:id", :controller => 'way', :action => 'delete', :id => /\d+/, :conditions => { :method => :delete }
- map.connect "api/#{API_VERSION}/ways", :controller => 'way', :action => 'ways', :id => nil
-
- map.connect "api/#{API_VERSION}/capabilities", :controller => 'api', :action => 'capabilities'
- map.connect "api/#{API_VERSION}/relation/create", :controller => 'relation', :action => 'create'
- map.connect "api/#{API_VERSION}/relation/:id/relations", :controller => 'relation', :action => 'relations_for_relation', :id => /\d+/
- map.connect "api/#{API_VERSION}/relation/:id/history", :controller => 'old_relation', :action => 'history', :id => /\d+/
- map.connect "api/#{API_VERSION}/relation/:id/full", :controller => 'relation', :action => 'full', :id => /\d+/
- map.connect "api/#{API_VERSION}/relation/:id", :controller => 'relation', :action => 'read', :id => /\d+/, :conditions => { :method => :get }
- map.connect "api/#{API_VERSION}/relation/:id", :controller => 'relation', :action => 'update', :id => /\d+/, :conditions => { :method => :put }
- map.connect "api/#{API_VERSION}/relation/:id", :controller => 'relation', :action => 'delete', :id => /\d+/, :conditions => { :method => :delete }
- map.connect "api/#{API_VERSION}/relations", :controller => 'relation', :action => 'relations', :id => nil
-
- map.connect "api/#{API_VERSION}/map", :controller => 'api', :action => 'map'
-
- map.connect "api/#{API_VERSION}/trackpoints", :controller => 'api', :action => 'trackpoints'
-
- map.connect "api/#{API_VERSION}/changes", :controller => 'api', :action => 'changes'
-
- map.connect "api/#{API_VERSION}/search", :controller => 'search', :action => 'search_all'
- map.connect "api/#{API_VERSION}/ways/search", :controller => 'search', :action => 'search_ways'
- map.connect "api/#{API_VERSION}/relations/search", :controller => 'search', :action => 'search_relations'
- map.connect "api/#{API_VERSION}/nodes/search", :controller => 'search', :action => 'search_nodes'
-
- map.connect "api/#{API_VERSION}/user/details", :controller => 'user', :action => 'api_details'
- map.connect "api/#{API_VERSION}/user/preferences", :controller => 'user_preference', :action => 'read', :conditions => { :method => :get }
- map.connect "api/#{API_VERSION}/user/preferences", :controller => 'user_preference', :action => 'update', :conditions => { :method => :put }
- map.connect "api/#{API_VERSION}/user/gpx_files", :controller => 'user', :action => 'api_gpx_files'
-
- map.connect "api/#{API_VERSION}/gpx/create", :controller => 'trace', :action => 'api_create'
- map.connect "api/#{API_VERSION}/gpx/:id/details", :controller => 'trace', :action => 'api_details'
- map.connect "api/#{API_VERSION}/gpx/:id/data", :controller => 'trace', :action => 'api_data'
-
- # Potlatch API
-
- map.connect "api/#{API_VERSION}/amf", :controller =>'amf', :action =>'talk'
- map.connect "api/#{API_VERSION}/swf/trackpoints", :controller =>'swf', :action =>'trackpoints'
-
+ get "api/capabilities" => "api#capabilities"
+
+ scope "api/0.6" do
+ get "capabilities" => "api#capabilities"
+ get "permissions" => "api#permissions"
+
+ put "changeset/create" => "changeset#create"
+ post "changeset/:id/upload" => "changeset#upload", :id => /\d+/
+ get "changeset/:id/download" => "changeset#download", :as => :changeset_download, :id => /\d+/
+ post "changeset/:id/expand_bbox" => "changeset#expand_bbox", :id => /\d+/
+ get "changeset/:id" => "changeset#read", :as => :changeset_read, :id => /\d+/
+ post "changeset/:id/subscribe" => "changeset#subscribe", :as => :changeset_subscribe, :id => /\d+/
+ post "changeset/:id/unsubscribe" => "changeset#unsubscribe", :as => :changeset_unsubscribe, :id => /\d+/
+ put "changeset/:id" => "changeset#update", :id => /\d+/
+ put "changeset/:id/close" => "changeset#close", :id => /\d+/
+ get "changesets" => "changeset#query"
+ post "changeset/:id/comment" => "changeset#comment", :as => :changeset_comment, :id => /\d+/
+ post "changeset/comment/:id/hide" => "changeset#hide_comment", :as => :changeset_comment_hide, :id => /\d+/
+ post "changeset/comment/:id/unhide" => "changeset#unhide_comment", :as => :changeset_comment_unhide, :id => /\d+/
+
+ put "node/create" => "node#create"
+ get "node/:id/ways" => "way#ways_for_node", :id => /\d+/
+ get "node/:id/relations" => "relation#relations_for_node", :id => /\d+/
+ get "node/:id/history" => "old_node#history", :id => /\d+/
+ post "node/:id/:version/redact" => "old_node#redact", :version => /\d+/, :id => /\d+/
+ get "node/:id/:version" => "old_node#version", :id => /\d+/, :version => /\d+/
+ get "node/:id" => "node#read", :id => /\d+/
+ put "node/:id" => "node#update", :id => /\d+/
+ delete "node/:id" => "node#delete", :id => /\d+/
+ get "nodes" => "node#nodes"
+
+ put "way/create" => "way#create"
+ get "way/:id/history" => "old_way#history", :id => /\d+/
+ get "way/:id/full" => "way#full", :id => /\d+/
+ get "way/:id/relations" => "relation#relations_for_way", :id => /\d+/
+ post "way/:id/:version/redact" => "old_way#redact", :version => /\d+/, :id => /\d+/
+ get "way/:id/:version" => "old_way#version", :id => /\d+/, :version => /\d+/
+ get "way/:id" => "way#read", :id => /\d+/
+ put "way/:id" => "way#update", :id => /\d+/
+ delete "way/:id" => "way#delete", :id => /\d+/
+ get "ways" => "way#ways"
+
+ put "relation/create" => "relation#create"
+ get "relation/:id/relations" => "relation#relations_for_relation", :id => /\d+/
+ get "relation/:id/history" => "old_relation#history", :id => /\d+/
+ get "relation/:id/full" => "relation#full", :id => /\d+/
+ post "relation/:id/:version/redact" => "old_relation#redact", :version => /\d+/, :id => /\d+/
+ get "relation/:id/:version" => "old_relation#version", :id => /\d+/, :version => /\d+/
+ get "relation/:id" => "relation#read", :id => /\d+/
+ put "relation/:id" => "relation#update", :id => /\d+/
+ delete "relation/:id" => "relation#delete", :id => /\d+/
+ get "relations" => "relation#relations"
+
+ get "map" => "api#map"
+
+ get "trackpoints" => "api#trackpoints"
+
+ get "changes" => "api#changes"
+
+ get "search" => "search#search_all", :as => "api_search"
+ get "ways/search" => "search#search_ways"
+ get "relations/search" => "search#search_relations"
+ get "nodes/search" => "search#search_nodes"
+
+ get "user/:id" => "user#api_read", :id => /\d+/
+ get "user/details" => "user#api_details"
+ get "user/gpx_files" => "user#api_gpx_files"
+
+ get "user/preferences" => "user_preferences#read"
+ get "user/preferences/:preference_key" => "user_preferences#read_one"
+ put "user/preferences" => "user_preferences#update"
+ put "user/preferences/:preference_key" => "user_preferences#update_one"
+ delete "user/preferences/:preference_key" => "user_preferences#delete_one"
+
+ post "gpx/create" => "traces#api_create"
+ get "gpx/:id" => "traces#api_read", :id => /\d+/
+ put "gpx/:id" => "traces#api_update", :id => /\d+/
+ delete "gpx/:id" => "traces#api_delete", :id => /\d+/
+ get "gpx/:id/details" => "traces#api_read", :id => /\d+/
+ get "gpx/:id/data" => "traces#api_data"
+
+ # AMF (ActionScript) API
+ post "amf/read" => "amf#amf_read"
+ post "amf/write" => "amf#amf_write"
+ get "swf/trackpoints" => "swf#trackpoints"
+
+ # Map notes API
+ resources :notes, :except => [:new, :edit, :update], :constraints => { :id => /\d+/ }, :defaults => { :format => "xml" } do
+ collection do
+ get "search"
+ get "feed", :defaults => { :format => "rss" }
+ end
+
+ member do
+ post "comment"
+ post "close"
+ post "reopen"
+ end
+ end
+
+ post "notes/addPOIexec" => "notes#create"
+ post "notes/closePOIexec" => "notes#close"
+ post "notes/editPOIexec" => "notes#comment"
+ get "notes/getGPX" => "notes#index", :format => "gpx"
+ get "notes/getRSSfeed" => "notes#feed", :format => "rss"
+ end
+
+ # Data browsing
+ 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 "/changeset/:id/comments/feed" => "changeset#comments_feed", :as => :changeset_comments_feed, :id => /\d*/, :defaults => { :format => "rss" }
+ get "/note/:id" => "browse#note", :id => /\d+/, :as => "browse_note"
+ get "/note/new" => "browse#new_note"
+ get "/user/:display_name/history" => "changeset#list"
+ get "/user/:display_name/history/feed" => "changeset#feed", :defaults => { :format => :atom }
+ get "/user/:display_name/notes" => "notes#mine"
+ get "/history/friends" => "changeset#list", :friends => true, :as => "friend_changesets", :defaults => { :format => :html }
+ get "/history/nearby" => "changeset#list", :nearby => true, :as => "nearby_changesets", :defaults => { :format => :html }
+
+ get "/browse/way/:id", :to => redirect(:path => "/way/%{id}")
+ get "/browse/way/:id/history", :to => redirect(:path => "/way/%{id}/history")
+ get "/browse/node/:id", :to => redirect(:path => "/node/%{id}")
+ get "/browse/node/:id/history", :to => redirect(:path => "/node/%{id}/history")
+ get "/browse/relation/:id", :to => redirect(:path => "/relation/%{id}")
+ get "/browse/relation/:id/history", :to => redirect(:path => "/relation/%{id}/history")
+ get "/browse/changeset/:id", :to => redirect(:path => "/changeset/%{id}")
+ get "/browse/note/:id", :to => redirect(:path => "/note/%{id}")
+ get "/user/:display_name/edits", :to => redirect(:path => "/user/%{display_name}/history")
+ get "/user/:display_name/edits/feed", :to => redirect(:path => "/user/%{display_name}/history/feed")
+ get "/browse/friends", :to => redirect(:path => "/history/friends")
+ get "/browse/nearby", :to => redirect(:path => "/history/nearby")
+ get "/browse/changesets/feed", :to => redirect(:path => "/history/feed")
+ get "/browse/changesets", :to => redirect(:path => "/history")
+ get "/browse", :to => redirect(:path => "/history")
+