- 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/redact" => "old_node#redact", :via => :post, :version => /\d+/, :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/redact" => "old_way#redact", :via => :post, :version => /\d+/, :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/redact" => "old_relation#redact", :via => :post, :version => /\d+/, :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/:id" => "user#api_read", :via => :get, :id => /\d+/
- match "api/0.6/user/details" => "user#api_details", :via => :get
- match "api/0.6/user/gpx_files" => "user#api_gpx_files", :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/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
+ put "api/0.6/node/create" => "node#create"
+ get "api/0.6/node/:id/ways" => "way#ways_for_node", :id => /\d+/
+ get "api/0.6/node/:id/relations" => "relation#relations_for_node", :id => /\d+/
+ get "api/0.6/node/:id/history" => "old_node#history", :id => /\d+/
+ post "api/0.6/node/:id/:version/redact" => "old_node#redact", :version => /\d+/, :id => /\d+/
+ get "api/0.6/node/:id/:version" => "old_node#version", :id => /\d+/, :version => /\d+/
+ get "api/0.6/node/:id" => "node#read", :id => /\d+/
+ put "api/0.6/node/:id" => "node#update", :id => /\d+/
+ delete "api/0.6/node/:id" => "node#delete", :id => /\d+/
+ get "api/0.6/nodes" => "node#nodes"
+
+ put "api/0.6/way/create" => "way#create"
+ get "api/0.6/way/:id/history" => "old_way#history", :id => /\d+/
+ get "api/0.6/way/:id/full" => "way#full", :id => /\d+/
+ get "api/0.6/way/:id/relations" => "relation#relations_for_way", :id => /\d+/
+ post "api/0.6/way/:id/:version/redact" => "old_way#redact", :version => /\d+/, :id => /\d+/
+ get "api/0.6/way/:id/:version" => "old_way#version", :id => /\d+/, :version => /\d+/
+ get "api/0.6/way/:id" => "way#read", :id => /\d+/
+ put "api/0.6/way/:id" => "way#update", :id => /\d+/
+ delete "api/0.6/way/:id" => "way#delete", :id => /\d+/
+ get "api/0.6/ways" => "way#ways"
+
+ put "api/0.6/relation/create" => "relation#create"
+ get "api/0.6/relation/:id/relations" => "relation#relations_for_relation", :id => /\d+/
+ get "api/0.6/relation/:id/history" => "old_relation#history", :id => /\d+/
+ get "api/0.6/relation/:id/full" => "relation#full", :id => /\d+/
+ post "api/0.6/relation/:id/:version/redact" => "old_relation#redact", :version => /\d+/, :id => /\d+/
+ get "api/0.6/relation/:id/:version" => "old_relation#version", :id => /\d+/, :version => /\d+/
+ get "api/0.6/relation/:id" => "relation#read", :id => /\d+/
+ put "api/0.6/relation/:id" => "relation#update", :id => /\d+/
+ delete "api/0.6/relation/:id" => "relation#delete", :id => /\d+/
+ get "api/0.6/relations" => "relation#relations"
+
+ get "api/0.6/map" => "api#map"
+
+ get "api/0.6/trackpoints" => "api#trackpoints"
+
+ get "api/0.6/changes" => "api#changes"
+
+ get "api/0.6/search" => "search#search_all"
+ get "api/0.6/ways/search" => "search#search_ways"
+ get "api/0.6/relations/search" => "search#search_relations"
+ get "api/0.6/nodes/search" => "search#search_nodes"
+
+ get "api/0.6/user/:id" => "user#api_read", :id => /\d+/
+ get "api/0.6/user/details" => "user#api_details"
+ get "api/0.6/user/gpx_files" => "user#api_gpx_files"
+
+ get "api/0.6/user/preferences" => "user_preference#read"
+ get "api/0.6/user/preferences/:preference_key" => "user_preference#read_one"
+ put "api/0.6/user/preferences" => "user_preference#update"
+ put "api/0.6/user/preferences/:preference_key" => "user_preference#update_one"
+ delete "api/0.6/user/preferences/:preference_key" => "user_preference#delete_one"
+
+ post "api/0.6/gpx/create" => "trace#api_create"
+ get "api/0.6/gpx/:id" => "trace#api_read", :id => /\d+/
+ put "api/0.6/gpx/:id" => "trace#api_update", :id => /\d+/
+ delete "api/0.6/gpx/:id" => "trace#api_delete", :id => /\d+/
+ get "api/0.6/gpx/:id/details" => "trace#api_read", :id => /\d+/
+ get "api/0.6/gpx/:id/data" => "trace#api_data"