]> git.openstreetmap.org Git - rails.git/blobdiff - config/routes.rb
Use resourceful routing for message replies
[rails.git] / config / routes.rb
index 6c30f1170ac33a5817d494860fd2c4bc61e5810e..1a5fb827231b8045cb00a84c8cb957a4a3aab47d 100644 (file)
-ActionController::Routing::Routes.draw do |map|
+OpenStreetMap::Application.routes.draw do
   # API
-  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", :controller => 'trace', :action => 'api_read', :id => /\d+/, :conditions => { :method => :get }
-  map.connect "api/#{API_VERSION}/gpx/:id", :controller => 'trace', :action => 'api_update', :id => /\d+/, :conditions => { :method => :put }
-  map.connect "api/#{API_VERSION}/gpx/:id", :controller => 'trace', :action => 'api_delete', :id => /\d+/, :conditions => { :method => :delete }
-  map.connect "api/#{API_VERSION}/gpx/:id/details", :controller => 'trace', :action => 'api_read', :id => /\d+/
-  map.connect "api/#{API_VERSION}/gpx/:id/data", :controller => 'trace', :action => 'api_data', :id => /\d+/
-  map.connect "api/#{API_VERSION}/gpx/:id/data.:format", :controller => 'trace', :action => 'api_data', :id => /\d+/
-  
-  # 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'
-
-  # Map notes API
-  map.connect "api/#{API_VERSION}/notes", :controller => 'note', :action => 'list'
-  map.connect "api/#{API_VERSION}/notes.:format", :controller => 'note', :action => 'list'
-  map.connect "api/#{API_VERSION}/notes/search", :controller => 'note', :action => 'search'
-  map.connect "api/#{API_VERSION}/notes/rss", :controller =>'notes', :action => 'rss'
-  map.connect "api/#{API_VERSION}/note/create", :controller => 'note', :action => 'create'
-  map.connect "api/#{API_VERSION}/note/:id/comment", :controller => 'note', :action => 'update', :id => /\d+/
-  map.connect "api/#{API_VERSION}/note/:id/close", :controller => 'note', :action => 'close', :id => /\d+/
-  map.connect "api/#{API_VERSION}/note/:id", :controller => 'note', :action => 'read', :id => /\d+/, :conditions => { :method => :get }
-  map.connect "api/#{API_VERSION}/note/:id.:format", :controller => 'note', :action => 'read', :id => /\d+/, :conditions => { :method => :get }
-  map.connect "api/#{API_VERSION}/note/:id", :controller => 'note', :action => 'delete', :id => /\d+/, :conditions => { :method => :delete }
-  map.connect "api/#{API_VERSION}/notes/getBugs", :controller => 'note', :action => 'list'
-  map.connect "api/#{API_VERSION}/notes/addPOIexec", :controller => 'note', :action => 'create'
-  map.connect "api/#{API_VERSION}/notes/closePOIexec", :controller => 'note', :action => 'close'
-  map.connect "api/#{API_VERSION}/notes/editPOIexec", :controller => 'note', :action => 'update'
-  map.connect "api/#{API_VERSION}/notes/getGPX", :controller => 'note', :action => 'list', :format => :gpx
-  map.connect "api/#{API_VERSION}/notes/getRSSfeed", :controller => 'note', :action => 'rss'
+  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
 
   # Data browsing
-  map.connect '/browse/start', :controller => 'browse', :action => 'start'
-  map.connect '/browse/way/:id', :controller => 'browse', :action => 'way', :id => /\d+/
-  map.connect '/browse/way/:id/history', :controller => 'browse', :action => 'way_history', :id => /\d+/
-  map.connect '/browse/node/:id', :controller => 'browse', :action => 'node', :id => /\d+/
-  map.connect '/browse/node/:id/history', :controller => 'browse', :action => 'node_history', :id => /\d+/
-  map.connect '/browse/relation/:id', :controller => 'browse', :action => 'relation', :id => /\d+/
-  map.connect '/browse/relation/:id/history', :controller => 'browse', :action => 'relation_history', :id => /\d+/
-  map.changeset '/browse/changeset/:id', :controller => 'browse', :action => 'changeset', :id => /\d+/
-  map.connect '/user/:display_name/edits/feed', :controller => 'changeset', :action => 'list', :format =>:atom
-  map.connect '/user/:display_name/edits', :controller => 'changeset', :action => 'list'
-  map.connect '/browse/changesets/feed', :controller => 'changeset', :action => 'list', :format => :atom
-  map.connect '/browse/changesets', :controller => 'changeset', :action => 'list'
-  map.connect '/browse/note/:id', :controller => 'browse', :action => 'note', :id => /\d+/
-  map.connect '/user/:display_name/notes', :controller => 'note', :action => 'mine'
-  map.connect '/browse', :controller => 'changeset', :action => 'list'
+  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")
 
   # web site
-  map.root :controller => 'site', :action => 'index'
-  map.connect '/', :controller => 'site', :action => 'index'
-  map.connect '/edit', :controller => 'site', :action => 'edit'
-  map.connect '/copyright', :controller => 'site', :action => 'copyright'
-  map.connect '/copyright/:copyright_locale', :controller => 'site', :action => 'copyright'
-  map.connect '/history', :controller => 'changeset', :action => 'list'
-  map.connect '/history/feed', :controller => 'changeset', :action => 'list', :format => :atom
-  map.connect '/export', :controller => 'site', :action => 'export'
-  map.connect '/login', :controller => 'user', :action => 'login'
-  map.connect '/logout', :controller => 'user', :action => 'logout'
-  map.connect '/offline', :controller => 'site', :action => 'offline'
-  map.connect '/key', :controller => 'site', :action => 'key'
-  map.connect '/user/new', :controller => 'user', :action => 'new'
-  map.connect '/user/terms', :controller => 'user', :action => 'terms'
-  map.connect '/user/save', :controller => 'user', :action => 'save'
-  map.connect '/user/:display_name/confirm/resend', :controller => 'user', :action => 'confirm_resend'
-  map.connect '/user/:display_name/confirm', :controller => 'user', :action => 'confirm'
-  map.connect '/user/confirm', :controller => 'user', :action => 'confirm'
-  map.connect '/user/confirm-email', :controller => 'user', :action => 'confirm_email'
-  map.connect '/user/go_public', :controller => 'user', :action => 'go_public'
-  map.connect '/user/reset-password', :controller => 'user', :action => 'reset_password'
-  map.connect '/user/forgot-password', :controller => 'user', :action => 'lost_password'
-  map.connect '/user/suspended', :controller => 'user', :action => 'suspended'
-
-  map.connect '/index.html', :controller => 'site', :action => 'index'
-  map.connect '/edit.html', :controller => 'site', :action => 'edit'
-  map.connect '/export.html', :controller => 'site', :action => 'export'
-  map.connect '/login.html', :controller => 'user', :action => 'login'
-  map.connect '/logout.html', :controller => 'user', :action => 'logout'
-  map.connect '/create-account.html', :controller => 'user', :action => 'new'
-  map.connect '/forgot-password.html', :controller => 'user', :action => 'lost_password'
+  root :to => "site#index", :via => [:get, :post]
+  get "/edit" => "site#edit"
+  get "/copyright/:copyright_locale" => "site#copyright"
+  get "/copyright" => "site#copyright"
+  get "/welcome" => "site#welcome"
+  get "/fixthemap" => "site#fixthemap"
+  get "/help" => "site#help"
+  get "/about" => "site#about"
+  get "/history" => "changeset#list"
+  get "/history/feed" => "changeset#feed", :defaults => { :format => :atom }
+  get "/history/comments/feed" => "changeset#comments_feed", :as => :changesets_comments_feed, :defaults => { :format => "rss" }
+  get "/export" => "site#export"
+  match "/login" => "user#login", :via => [:get, :post]
+  match "/logout" => "user#logout", :via => [:get, :post]
+  get "/offline" => "site#offline"
+  get "/key" => "site#key"
+  get "/id" => "site#id"
+  get "/query" => "browse#query"
+  get "/user/new" => "user#new"
+  post "/user/new" => "user#create"
+  get "/user/terms" => "user#terms"
+  post "/user/save" => "user#save"
+  get "/user/:display_name/confirm/resend" => "user#confirm_resend"
+  match "/user/:display_name/confirm" => "user#confirm", :via => [:get, :post]
+  match "/user/confirm" => "user#confirm", :via => [:get, :post]
+  match "/user/confirm-email" => "user#confirm_email", :via => [:get, :post]
+  post "/user/go_public" => "user#go_public"
+  match "/user/reset-password" => "user#reset_password", :via => [:get, :post]
+  match "/user/forgot-password" => "user#lost_password", :via => [:get, :post]
+  get "/user/suspended" => "user#suspended"
+
+  get "/index.html", :to => redirect(:path => "/")
+  get "/create-account.html", :to => redirect(:path => "/user/new")
+  get "/forgot-password.html", :to => redirect(:path => "/user/forgot-password")
+
+  # omniauth
+  get "/auth/failure" => "user#auth_failure"
+  match "/auth/:provider/callback" => "user#auth_success", :via => [:get, :post], :as => :auth_success
+  match "/auth/:provider" => "user#auth", :via => [:get, :post], :as => :auth
 
   # permalink
-  map.connect '/go/:code', :controller => 'site', :action => 'permalink', :code => /[a-zA-Z0-9_@]+[=-]*/
-
-  # traces  
-  map.connect '/user/:display_name/traces/tag/:tag/page/:page', :controller => 'trace', :action => 'list'
-  map.connect '/user/:display_name/traces/tag/:tag', :controller => 'trace', :action => 'list'
-  map.connect '/user/:display_name/traces/page/:page', :controller => 'trace', :action => 'list'
-  map.connect '/user/:display_name/traces', :controller => 'trace', :action => 'list'
-  map.connect '/user/:display_name/traces/tag/:tag/rss', :controller => 'trace', :action => 'georss'
-  map.connect '/user/:display_name/traces/rss', :controller => 'trace', :action => 'georss'
-  map.connect '/user/:display_name/traces/:id', :controller => 'trace', :action => 'view'
-  map.connect '/user/:display_name/traces/:id/picture', :controller => 'trace', :action => 'picture'
-  map.connect '/user/:display_name/traces/:id/icon', :controller => 'trace', :action => 'icon'
-  map.connect '/traces/tag/:tag/page/:page', :controller => 'trace', :action => 'list'
-  map.connect '/traces/tag/:tag', :controller => 'trace', :action => 'list'
-  map.connect '/traces/page/:page', :controller => 'trace', :action => 'list'
-  map.connect '/traces', :controller => 'trace', :action => 'list'
-  map.connect '/traces/tag/:tag/rss', :controller => 'trace', :action => 'georss'
-  map.connect '/traces/rss', :controller => 'trace', :action => 'georss'
-  map.connect '/traces/mine/tag/:tag/page/:page', :controller => 'trace', :action => 'mine'
-  map.connect '/traces/mine/tag/:tag', :controller => 'trace', :action => 'mine'
-  map.connect '/traces/mine/page/:page', :controller => 'trace', :action => 'mine'
-  map.connect '/traces/mine', :controller => 'trace', :action => 'mine'
-  map.connect '/trace/create', :controller => 'trace', :action => 'create'
-  map.connect '/trace/:id/data', :controller => 'trace', :action => 'data'
-  map.connect '/trace/:id/data.:format', :controller => 'trace', :action => 'data'
-  map.connect '/trace/:id/edit', :controller => 'trace', :action => 'edit'
-  map.connect '/trace/:id/delete', :controller => 'trace', :action => 'delete'
+  get "/go/:code" => "site#permalink", :code => /[a-zA-Z0-9_@~]+[=-]*/
+
+  # rich text preview
+  post "/preview/:type" => "site#preview", :as => :preview
+
+  # traces
+  resources :traces, :except => [:show]
+  get "/user/:display_name/traces/tag/:tag/page/:page" => "traces#index", :page => /[1-9][0-9]*/
+  get "/user/:display_name/traces/tag/:tag" => "traces#index"
+  get "/user/:display_name/traces/page/:page" => "traces#index", :page => /[1-9][0-9]*/
+  get "/user/:display_name/traces" => "traces#index"
+  get "/user/:display_name/traces/tag/:tag/rss" => "traces#georss", :defaults => { :format => :rss }
+  get "/user/:display_name/traces/rss" => "traces#georss", :defaults => { :format => :rss }
+  get "/user/:display_name/traces/:id" => "traces#show"
+  get "/user/:display_name/traces/:id/picture" => "traces#picture"
+  get "/user/:display_name/traces/:id/icon" => "traces#icon"
+  get "/traces/tag/:tag/page/:page" => "traces#index", :page => /[1-9][0-9]*/
+  get "/traces/tag/:tag" => "traces#index"
+  get "/traces/page/:page" => "traces#index", :page => /[1-9][0-9]*/
+  get "/traces/tag/:tag/rss" => "traces#georss", :defaults => { :format => :rss }
+  get "/traces/rss" => "traces#georss", :defaults => { :format => :rss }
+  get "/traces/mine/tag/:tag/page/:page" => "traces#mine", :page => /[1-9][0-9]*/
+  get "/traces/mine/tag/:tag" => "traces#mine"
+  get "/traces/mine/page/:page" => "traces#mine"
+  get "/traces/mine" => "traces#mine"
+  post "/trace/create" => "traces#create" # remove after deployment
+  get "/trace/create", :to => redirect(:path => "/traces/new")
+  get "/trace/:id/data" => "traces#data", :id => /\d+/, :as => "trace_data"
+  post "trace/:id/edit" => "traces#update" # remove after deployment
+  get "/trace/:id/edit", :to => redirect(:path => "/traces/%{id}/edit")
+  post "/trace/:id/delete" => "traces#delete", :id => /\d+/
 
   # diary pages
-  map.connect '/diary/new', :controller => 'diary_entry', :action => 'new'
-  map.connect '/user/:display_name/diary/rss', :controller => 'diary_entry', :action => 'rss'
-  map.connect '/diary/:language/rss', :controller => 'diary_entry', :action => 'rss'
-  map.connect '/diary/rss', :controller => 'diary_entry', :action => 'rss'
-  map.connect '/user/:display_name/diary', :controller => 'diary_entry', :action => 'list'
-  map.connect '/diary/:language', :controller => 'diary_entry', :action => 'list'
-  map.connect '/diary', :controller => 'diary_entry', :action => 'list'
-  map.connect '/user/:display_name/diary/:id', :controller => 'diary_entry', :action => 'view', :id => /\d+/
-  map.connect '/user/:display_name/diary/:id/newcomment', :controller => 'diary_entry', :action => 'comment', :id => /\d+/
-  map.connect '/user/:display_name/diary/:id/edit', :controller => 'diary_entry', :action => 'edit', :id => /\d+/
-  map.connect '/user/:display_name/diary/:id/hide', :controller => 'diary_entry', :action => 'hide', :id => /\d+/
-  map.connect '/user/:display_name/diary/:id/hidecomment/:comment', :controller => 'diary_entry', :action => 'hidecomment', :id => /\d+/, :comment => /\d+/
+  match "/diary/new" => "diary_entry#new", :via => [:get, :post]
+  get "/diary/friends" => "diary_entry#list", :friends => true, :as => "friend_diaries"
+  get "/diary/nearby" => "diary_entry#list", :nearby => true, :as => "nearby_diaries"
+  get "/user/:display_name/diary/rss" => "diary_entry#rss", :defaults => { :format => :rss }
+  get "/diary/:language/rss" => "diary_entry#rss", :defaults => { :format => :rss }
+  get "/diary/rss" => "diary_entry#rss", :defaults => { :format => :rss }
+  get "/user/:display_name/diary/comments/:page" => "diary_entry#comments", :page => /[1-9][0-9]*/
+  get "/user/:display_name/diary/comments/" => "diary_entry#comments"
+  get "/user/:display_name/diary" => "diary_entry#list"
+  get "/diary/:language" => "diary_entry#list"
+  get "/diary" => "diary_entry#list"
+  get "/user/:display_name/diary/:id" => "diary_entry#view", :id => /\d+/, :as => :diary_entry
+  post "/user/:display_name/diary/:id/newcomment" => "diary_entry#comment", :id => /\d+/
+  match "/user/:display_name/diary/:id/edit" => "diary_entry#edit", :via => [:get, :post], :id => /\d+/
+  post "/user/:display_name/diary/:id/hide" => "diary_entry#hide", :id => /\d+/, :as => :hide_diary_entry
+  post "/user/:display_name/diary/:id/hidecomment/:comment" => "diary_entry#hidecomment", :id => /\d+/, :comment => /\d+/, :as => :hide_diary_comment
+  post "/user/:display_name/diary/:id/subscribe" => "diary_entry#subscribe", :as => :diary_entry_subscribe, :id => /\d+/
+  post "/user/:display_name/diary/:id/unsubscribe" => "diary_entry#unsubscribe", :as => :diary_entry_unsubscribe, :id => /\d+/
 
   # user pages
-  map.connect '/user/:display_name', :controller => 'user', :action => 'view'
-  map.connect '/user/:display_name/make_friend', :controller => 'user', :action => 'make_friend'
-  map.connect '/user/:display_name/remove_friend', :controller => 'user', :action => 'remove_friend'
-  map.connect '/user/:display_name/account', :controller => 'user', :action => 'account'
-  map.connect '/user/:display_name/set_status', :controller => 'user', :action => 'set_status'
-  map.connect '/user/:display_name/delete', :controller => 'user', :action => 'delete'
+  get "/user/:display_name" => "user#view", :as => "user"
+  match "/user/:display_name/make_friend" => "user#make_friend", :via => [:get, :post], :as => "make_friend"
+  match "/user/:display_name/remove_friend" => "user#remove_friend", :via => [:get, :post], :as => "remove_friend"
+  match "/user/:display_name/account" => "user#account", :via => [:get, :post]
+  get "/user/:display_name/set_status" => "user#set_status", :as => :set_status_user
+  get "/user/:display_name/delete" => "user#delete", :as => :delete_user
 
   # user lists
-  map.connect '/users', :controller => 'user', :action => 'list'
-  map.connect '/users/:status', :controller => 'user', :action => 'list'
-
-  # test pages
-  map.connect '/test/populate/:table/:from/:count', :controller => 'test', :action => 'populate'
-  map.connect '/test/populate/:table/:count', :controller => 'test', :action => 'populate', :from => 1
+  match "/users" => "user#list", :via => [:get, :post]
+  match "/users/:status" => "user#list", :via => [:get, :post]
 
   # geocoder
-  map.connect '/geocoder/search', :controller => 'geocoder', :action => 'search'
-  map.connect '/geocoder/search_latlon', :controller => 'geocoder', :action => 'search_latlon'
-  map.connect '/geocoder/search_us_postcode', :controller => 'geocoder', :action => 'search_us_postcode'
-  map.connect '/geocoder/search_uk_postcode', :controller => 'geocoder', :action => 'search_uk_postcode'
-  map.connect '/geocoder/search_ca_postcode', :controller => 'geocoder', :action => 'search_ca_postcode'
-  map.connect '/geocoder/search_osm_namefinder', :controller => 'geocoder', :action => 'search_osm_namefinder'
-  map.connect '/geocoder/search_osm_nominatim', :controller => 'geocoder', :action => 'search_osm_nominatim'
-  map.connect '/geocoder/search_geonames', :controller => 'geocoder', :action => 'search_geonames'
-  map.connect '/geocoder/description', :controller => 'geocoder', :action => 'description'
-  map.connect '/geocoder/description_osm_namefinder', :controller => 'geocoder', :action => 'description_osm_namefinder'
-  map.connect '/geocoder/description_osm_nominatim', :controller => 'geocoder', :action => 'description_osm_nominatim'
-  map.connect '/geocoder/description_geonames', :controller => 'geocoder', :action => 'description_geonames'
+  get "/search" => "geocoder#search"
+  get "/geocoder/search_latlon" => "geocoder#search_latlon"
+  get "/geocoder/search_ca_postcode" => "geocoder#search_ca_postcode"
+  get "/geocoder/search_osm_nominatim" => "geocoder#search_osm_nominatim"
+  get "/geocoder/search_geonames" => "geocoder#search_geonames"
+  get "/geocoder/search_osm_nominatim_reverse" => "geocoder#search_osm_nominatim_reverse"
+  get "/geocoder/search_geonames_reverse" => "geocoder#search_geonames_reverse"
+
+  # directions
+  get "/directions" => "directions#search"
 
   # export
-  map.connect '/export/start', :controller => 'export', :action => 'start'
-  map.connect '/export/finish', :controller => 'export', :action => 'finish'
+  post "/export/finish" => "export#finish"
+  get "/export/embed" => "export#embed"
 
   # messages
-  map.connect '/user/:display_name/inbox', :controller => 'message', :action => 'inbox'
-  map.connect '/user/:display_name/outbox', :controller => 'message', :action => 'outbox'
-  map.connect '/message/new/:display_name', :controller => 'message', :action => 'new'
-  map.connect '/message/read/:message_id', :controller => 'message', :action => 'read'
-  map.connect '/message/mark/:message_id', :controller => 'message', :action => 'mark'
-  map.connect '/message/reply/:message_id', :controller => 'message', :action => 'reply'
-  map.connect '/message/delete/:message_id', :controller => 'message', :action => 'delete'
+  resources :messages, :only => [:create, :show, :destroy] do
+    post :mark
+    match :reply, :via => [:get, :post]
+    collection do
+      get :inbox
+      get :outbox
+    end
+  end
+  get "/user/:display_name/inbox", :to => redirect(:path => "/messages/inbox")
+  get "/user/:display_name/outbox", :to => redirect(:path => "/messages/outbox")
+  get "/message/new/:display_name" => "messages#new", :as => "new_message"
+  get "/message/read/:message_id", :to => redirect(:path => "/messages/%{message_id}")
+  post "/message/mark/:message_id" => "messages#mark" # remove after deployment
+  match "/message/reply/:message_id" => "messages#reply", :via => [:get, :post] # remove after deployment
 
   # oauth admin pages (i.e: for setting up new clients, etc...)
-  map.resources :oauth_clients, :path_prefix => '/user/:display_name'
-  map.connect '/oauth/revoke', :controller => 'oauth', :action => 'revoke'
-  map.authorize '/oauth/authorize', :controller => 'oauth', :action => 'oauthorize'
-  map.request_token '/oauth/request_token', :controller => 'oauth', :action => 'request_token'
-  map.access_token '/oauth/access_token', :controller => 'oauth', :action => 'access_token'
-  map.test_request '/oauth/test_request', :controller => 'oauth', :action => 'test_request'
+  scope "/user/:display_name" do
+    resources :oauth_clients
+  end
+  match "/oauth/revoke" => "oauth#revoke", :via => [:get, :post]
+  match "/oauth/authorize" => "oauth#authorize", :via => [:get, :post], :as => :authorize
+  get "/oauth/token" => "oauth#token", :as => :token
+  match "/oauth/request_token" => "oauth#request_token", :via => [:get, :post], :as => :request_token
+  match "/oauth/access_token" => "oauth#access_token", :via => [:get, :post], :as => :access_token
+  get "/oauth/test_request" => "oauth#test_request", :as => :test_request
 
   # roles and banning pages
-  map.connect '/user/:display_name/role/:role/grant', :controller => 'user_roles', :action => 'grant'
-  map.connect '/user/:display_name/role/:role/revoke', :controller => 'user_roles', :action => 'revoke'
-  map.connect '/user/:display_name/blocks', :controller => 'user_blocks', :action => 'blocks_on'
-  map.connect '/user/:display_name/blocks_by', :controller => 'user_blocks', :action => 'blocks_by'
-  map.connect '/blocks/new/:display_name', :controller => 'user_blocks', :action => 'new'
-  map.resources :user_blocks, :as => 'blocks'
-  map.connect '/blocks/:id/revoke', :controller => 'user_blocks', :action => 'revoke'
-
-  # fall through
-  map.connect ':controller/:id/:action'
-  map.connect ':controller/:action'
+  post "/user/:display_name/role/:role/grant" => "user_roles#grant", :as => "grant_role"
+  post "/user/:display_name/role/:role/revoke" => "user_roles#revoke", :as => "revoke_role"
+  get "/user/:display_name/blocks" => "user_blocks#blocks_on"
+  get "/user/:display_name/blocks_by" => "user_blocks#blocks_by"
+  get "/blocks/new/:display_name" => "user_blocks#new", :as => "new_user_block"
+  resources :user_blocks
+  match "/blocks/:id/revoke" => "user_blocks#revoke", :via => [:get, :post], :as => "revoke_user_block"
+
+  # issues and reports
+  resources :issues do
+    resources :comments, :controller => :issue_comments
+    member do
+      post "resolve"
+      post "assign"
+      post "ignore"
+      post "reopen"
+    end
+  end
+
+  resources :reports
+
+  # redactions
+  resources :redactions
+
+  # errors
+  match "/403", :to => "errors#forbidden", :via => :all
+  match "/404", :to => "errors#not_found", :via => :all
+  match "/500", :to => "errors#internal_server_error", :via => :all
 end