- match 'api/capabilities' => 'api#capabilities', :via => :get
- match 'api/0.6/capabilities' => 'api#capabilities', :via => :get
-
- match 'api/0.6/changeset/create' => 'changeset#create', :via => :put
- match 'api/0.6/changeset/:id/upload' => 'changeset#upload', :via => :post, :id => /\d+/
- match 'api/0.6/changeset/:id/download' => 'changeset#download', :via => :get, :as => :changeset_download, :id => /\d+/
- match 'api/0.6/changeset/:id/expand_bbox' => 'changeset#expand_bbox', :via => :post, :id => /\d+/
- match 'api/0.6/changeset/:id' => 'changeset#read', :via => :get, :as => :changeset_read, :via => :get, :id => /\d+/
- match 'api/0.6/changeset/:id' => 'changeset#update', :via => :put, :id => /\d+/
- match 'api/0.6/changeset/:id/close' => 'changeset#close', :via => :put, :id => /\d+/
- match 'api/0.6/changesets' => 'changeset#query', :via => :get
-
- match 'api/0.6/node/create' => 'node#create', :via => :put
- match 'api/0.6/node/:id/ways' => 'way#ways_for_node', :via => :get, :id => /\d+/
- match 'api/0.6/node/:id/relations' => 'relation#relations_for_node', :via => :get, :id => /\d+/
- match 'api/0.6/node/:id/history' => 'old_node#history', :via => :get, :id => /\d+/
- match 'api/0.6/node/:id/:version' => 'old_node#version', :via => :get, :id => /\d+/, :version => /\d+/
- match 'api/0.6/node/:id' => 'node#read', :via => :get, :id => /\d+/
- match 'api/0.6/node/:id' => 'node#update', :via => :put, :id => /\d+/
- match 'api/0.6/node/:id' => 'node#delete', :via => :delete, :id => /\d+/
- match 'api/0.6/nodes' => 'node#nodes', :via => :get
-
- match 'api/0.6/way/create' => 'way#create', :via => :put
- match 'api/0.6/way/:id/history' => 'old_way#history', :via => :get, :id => /\d+/
- match 'api/0.6/way/:id/full' => 'way#full', :via => :get, :id => /\d+/
- match 'api/0.6/way/:id/relations' => 'relation#relations_for_way', :via => :get, :id => /\d+/
- match 'api/0.6/way/:id/:version' => 'old_way#version', :via => :get, :id => /\d+/, :version => /\d+/
- match 'api/0.6/way/:id' => 'way#read', :via => :get, :id => /\d+/
- match 'api/0.6/way/:id' => 'way#update', :via => :put, :id => /\d+/
- match 'api/0.6/way/:id' => 'way#delete', :via => :delete, :id => /\d+/
- match 'api/0.6/ways' => 'way#ways', :via => :get
-
- match 'api/0.6/relation/create' => 'relation#create', :via => :put
- match 'api/0.6/relation/:id/relations' => 'relation#relations_for_relation', :via => :get, :id => /\d+/
- match 'api/0.6/relation/:id/history' => 'old_relation#history', :via => :get, :id => /\d+/
- match 'api/0.6/relation/:id/full' => 'relation#full', :via => :get, :id => /\d+/
- match 'api/0.6/relation/:id/:version' => 'old_relation#version', :via => :get, :id => /\d+/, :version => /\d+/
- match 'api/0.6/relation/:id' => 'relation#read', :via => :get, :id => /\d+/
- match 'api/0.6/relation/:id' => 'relation#update', :via => :put, :id => /\d+/
- match 'api/0.6/relation/:id' => 'relation#delete', :via => :delete, :id => /\d+/
- match 'api/0.6/relations' => 'relation#relations', :via => :get
-
- match 'api/0.6/map' => 'api#map', :via => :get
-
- match 'api/0.6/trackpoints' => 'api#trackpoints', :via => :get
-
- match 'api/0.6/changes' => 'api#changes', :via => :get
-
- match 'api/0.6/search' => 'search#search_all', :via => :get
- match 'api/0.6/ways/search' => 'search#search_ways', :via => :get
- match 'api/0.6/relations/search' => 'search#search_relations', :via => :get
- match 'api/0.6/nodes/search' => 'search#search_nodes', :via => :get
-
- match 'api/0.6/user/details' => 'user#api_details', :via => :get
- match 'api/0.6/user/preferences' => 'user_preference#read', :via => :get
- match 'api/0.6/user/preferences/:preference_key' => 'user_preference#read_one', :via => :get
- match 'api/0.6/user/preferences' => 'user_preference#update', :via => :put
- match 'api/0.6/user/preferences/:preference_key' => 'user_preference#update_one', :via => :put
- match 'api/0.6/user/preferences/:preference_key' => 'user_preference#delete_one', :via => :delete
- match 'api/0.6/user/gpx_files' => 'user#api_gpx_files', :via => :get
-
- match 'api/0.6/gpx/create' => 'trace#api_create', :via => :post
- match 'api/0.6/gpx/:id' => 'trace#api_read', :via => :get, :id => /\d+/
- match 'api/0.6/gpx/:id' => 'trace#api_update', :via => :put, :id => /\d+/
- match 'api/0.6/gpx/:id' => 'trace#api_delete', :via => :delete, :id => /\d+/
- match 'api/0.6/gpx/:id/details' => 'trace#api_read', :via => :get, :id => /\d+/
- match 'api/0.6/gpx/:id/data' => 'trace#api_data', :via => :get
-
- # AMF (ActionScript) API
-
- match 'api/0.6/amf/read' => 'amf#amf_read', :via => :post
- match 'api/0.6/amf/write' => 'amf#amf_write', :via => :post
- match 'api/0.6/swf/trackpoints' => 'swf#trackpoints', :via => :get
+ namespace :api do
+ get "capabilities" => "capabilities#show" # Deprecated, remove when 0.6 support is removed
+ get "versions" => "versions#show"
+ end
+
+ scope "api/0.6" do
+ get "capabilities" => "api/capabilities#show"
+ get "permissions" => "api/permissions#show"
+
+ put "changeset/create" => "api/changesets#create"
+ post "changeset/:id/upload" => "api/changesets#upload", :id => /\d+/
+ get "changeset/:id/download" => "api/changesets#download", :as => :changeset_download, :id => /\d+/
+ post "changeset/:id/expand_bbox" => "api/changesets#expand_bbox", :id => /\d+/
+ get "changeset/:id" => "api/changesets#show", :as => :changeset_show, :id => /\d+/
+ post "changeset/:id/subscribe" => "api/changesets#subscribe", :as => :changeset_subscribe, :id => /\d+/
+ post "changeset/:id/unsubscribe" => "api/changesets#unsubscribe", :as => :changeset_unsubscribe, :id => /\d+/
+ put "changeset/:id" => "api/changesets#update", :id => /\d+/
+ put "changeset/:id/close" => "api/changesets#close", :id => /\d+/
+ get "changesets" => "api/changesets#query"
+ post "changeset/:id/comment" => "api/changeset_comments#create", :as => :changeset_comment, :id => /\d+/
+ post "changeset/comment/:id/hide" => "api/changeset_comments#destroy", :as => :changeset_comment_hide, :id => /\d+/
+ post "changeset/comment/:id/unhide" => "api/changeset_comments#restore", :as => :changeset_comment_unhide, :id => /\d+/
+
+ put "node/create" => "api/nodes#create"
+ get "node/:id/ways" => "api/ways#ways_for_node", :id => /\d+/
+ get "node/:id/relations" => "api/relations#relations_for_node", :id => /\d+/
+ get "node/:id/history" => "api/old_nodes#history", :id => /\d+/
+ post "node/:id/:version/redact" => "api/old_nodes#redact", :version => /\d+/, :id => /\d+/
+ get "node/:id/:version" => "api/old_nodes#version", :id => /\d+/, :version => /\d+/
+ get "node/:id" => "api/nodes#show", :id => /\d+/
+ put "node/:id" => "api/nodes#update", :id => /\d+/
+ delete "node/:id" => "api/nodes#delete", :id => /\d+/
+ get "nodes" => "api/nodes#index"
+
+ put "way/create" => "api/ways#create"
+ get "way/:id/history" => "api/old_ways#history", :id => /\d+/
+ get "way/:id/full" => "api/ways#full", :id => /\d+/
+ get "way/:id/relations" => "api/relations#relations_for_way", :id => /\d+/
+ post "way/:id/:version/redact" => "api/old_ways#redact", :version => /\d+/, :id => /\d+/
+ get "way/:id/:version" => "api/old_ways#version", :id => /\d+/, :version => /\d+/
+ get "way/:id" => "api/ways#show", :id => /\d+/
+ put "way/:id" => "api/ways#update", :id => /\d+/
+ delete "way/:id" => "api/ways#delete", :id => /\d+/
+ get "ways" => "api/ways#index"
+
+ put "relation/create" => "api/relations#create"
+ get "relation/:id/relations" => "api/relations#relations_for_relation", :id => /\d+/
+ get "relation/:id/history" => "api/old_relations#history", :id => /\d+/
+ get "relation/:id/full" => "api/relations#full", :id => /\d+/
+ post "relation/:id/:version/redact" => "api/old_relations#redact", :version => /\d+/, :id => /\d+/
+ get "relation/:id/:version" => "api/old_relations#version", :id => /\d+/, :version => /\d+/
+ get "relation/:id" => "api/relations#show", :id => /\d+/
+ put "relation/:id" => "api/relations#update", :id => /\d+/
+ delete "relation/:id" => "api/relations#delete", :id => /\d+/
+ get "relations" => "api/relations#index"
+
+ get "map" => "api/map#index"
+
+ get "trackpoints" => "api/tracepoints#index"
+
+ get "changes" => "api/changes#index"
+
+ get "user/:id" => "api/users#show", :id => /\d+/
+ get "user/details" => "api/users#details"
+ get "user/gpx_files" => "api/users#gpx_files"
+ get "users" => "api/users#index", :as => :api_users
+
+ get "user/preferences" => "api/user_preferences#index"
+ get "user/preferences/:preference_key" => "api/user_preferences#show"
+ put "user/preferences" => "api/user_preferences#update_all"
+ put "user/preferences/:preference_key" => "api/user_preferences#update"
+ delete "user/preferences/:preference_key" => "api/user_preferences#destroy"
+
+ post "gpx/create" => "api/traces#create"
+ get "gpx/:id" => "api/traces#show", :id => /\d+/
+ put "gpx/:id" => "api/traces#update", :id => /\d+/
+ delete "gpx/:id" => "api/traces#destroy", :id => /\d+/
+ get "gpx/:id/details" => "api/traces#show", :id => /\d+/
+ get "gpx/:id/data" => "api/traces#data"
+
+ # AMF (ActionScript) API
+ post "amf/read" => "api/amf#amf_read"
+ post "amf/write" => "api/amf#amf_write"
+
+ # Map notes API
+ resources :notes, :except => [:new, :edit, :update], :constraints => { :id => /\d+/ }, :defaults => { :format => "xml" }, :controller => "api/notes" do
+ collection do
+ get "search"
+ get "feed", :defaults => { :format => "rss" }
+ end
+
+ member do
+ post "comment"
+ post "close"
+ post "reopen"
+ end
+ end
+
+ post "notes/addPOIexec" => "api/notes#create"
+ post "notes/closePOIexec" => "api/notes#close"
+ post "notes/editPOIexec" => "api/notes#comment"
+ get "notes/getGPX" => "api/notes#index", :format => "gpx"
+ get "notes/getRSSfeed" => "api/notes#feed", :format => "rss"
+ end