- map.connect "api/capabilities", :controller => 'api', :action => 'capabilities'
- map.connect "api/#{API_VERSION}/capabilities", :controller => 'api', :action => 'capabilities'
-
- map.connect "api/#{API_VERSION}/changeset/create", :controller => 'changeset', :action => 'create'
- map.connect "api/#{API_VERSION}/changeset/:id/upload", :controller => 'changeset', :action => 'upload', :id => /\d+/
- map.changeset_download "api/#{API_VERSION}/changeset/:id/download", :controller => 'changeset', :action => 'download', :id => /\d+/
- map.connect "api/#{API_VERSION}/changeset/:id/expand_bbox", :controller => 'changeset', :action => 'expand_bbox', :id => /\d+/
- map.changeset_read "api/#{API_VERSION}/changeset/:id", :controller => 'changeset', :action => 'read', :id => /\d+/, :conditions => { :method => :get }
- map.connect "api/#{API_VERSION}/changeset/:id", :controller => 'changeset', :action => 'update', :id => /\d+/, :conditions => { :method => :put }
- map.connect "api/#{API_VERSION}/changeset/:id/close", :controller => 'changeset', :action => 'close', :id =>/\d+/
- map.connect "api/#{API_VERSION}/changesets", :controller => 'changeset', :action => 'query'
-
- 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/:version", :controller => 'old_node', :action => 'version', :id => /\d+/, :version => /\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/:version", :controller => 'old_way', :action => 'version', :id => /\d+/, :version => /\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}/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/:version", :controller => 'old_relation', :action => 'version', :id => /\d+/, :version => /\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/:preference_key", :controller => 'user_preference', :action => 'read_one', :conditions => { :method => :get }
- map.connect "api/#{API_VERSION}/user/preferences", :controller => 'user_preference', :action => 'update', :conditions => { :method => :put }
- map.connect "api/#{API_VERSION}/user/preferences/:preference_key", :controller => 'user_preference', :action => 'update_one', :conditions => { :method => :put }
- map.connect "api/#{API_VERSION}/user/preferences/:preference_key", :controller => 'user_preference', :action => 'delete_one', :conditions => { :method => :delete }
- 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'
-
- # AMF (ActionScript) API
-
- map.connect "api/#{API_VERSION}/amf/read", :controller =>'amf', :action =>'amf_read'
- map.connect "api/#{API_VERSION}/amf/write", :controller =>'amf', :action =>'amf_write'
- 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 "users" => "user#api_users", :as => :api_users
+
+ 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
+