- 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'
+ match 'api/capabilities' => 'api#capabilities'
+ match 'api/0.6/capabilities' => 'api#capabilities'
+
+ match 'api/0.6/changeset/create' => 'changeset#create'
+ match 'api/0.6/changeset/:id/upload' => 'changeset#upload', :id => /\d+/
+ match 'api/0.6/changeset/:id/download' => 'changeset#download', :as => :changeset_download, :id => /\d+/
+ match 'api/0.6/changeset/:id/expand_bbox' => 'changeset#expand_bbox', :id => /\d+/
+ match 'api/0.6/changeset/:id' => 'changeset#read', :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', :id => /\d+/
+ match 'api/0.6/changesets' => 'changeset#query', :id => nil
+
+ match 'api/0.6/node/create' => 'node#create'
+ match 'api/0.6/node/:id/ways' => 'way#ways_for_node', :id => /\d+/
+ match 'api/0.6/node/:id/relations' => 'relation#relations_for_node', :id => /\d+/
+ match 'api/0.6/node/:id/history' => 'old_node#history', :id => /\d+/
+ match 'api/0.6/node/:id/:version' => 'old_node#version', :version => /\d+/, :id => /\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', :id => nil
+
+ match 'api/0.6/way/create' => 'way#create'
+ match 'api/0.6/way/:id/history' => 'old_way#history', :id => /\d+/
+ match 'api/0.6/way/:id/full' => 'way#full', :id => /\d+/
+ match 'api/0.6/way/:id/relations' => 'relation#relations_for_way', :id => /\d+/
+ match 'api/0.6/way/:id/:version' => 'old_way#version', :version => /\d+/, :id => /\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', :id => nil
+
+ match 'api/0.6/relation/create' => 'relation#create'
+ match 'api/0.6/relation/:id/relations' => 'relation#relations_for_relation', :id => /\d+/
+ match 'api/0.6/relation/:id/history' => 'old_relation#history', :id => /\d+/
+ match 'api/0.6/relation/:id/full' => 'relation#full', :id => /\d+/
+ match 'api/0.6/relation/:id/:version' => 'old_relation#version', :version => /\d+/, :id => /\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'
+
+ match 'api/0.6/map' => 'api#map'
+
+ match 'api/0.6/trackpoints' => 'api#trackpoints'
+
+ match 'api/0.6/changes' => 'api#changes'
+
+ match 'api/0.6/search' => 'search#search_all'
+ match 'api/0.6/ways/search' => 'search#search_ways'
+ match 'api/0.6/relations/search' => 'search#search_relations'
+ match 'api/0.6/nodes/search' => 'search#search_nodes'
+
+ match 'api/0.6/user/details' => 'user#api_details'
+ 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'
+
+ match 'api/0.6/gpx/create' => 'trace#api_create'
+ 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', :id => /\d+/
+ match 'api/0.6/gpx/:id/data' => 'trace#api_data'
+ match 'api/0.6/gpx/:id/data.:format' => 'trace#api_data'