]> git.openstreetmap.org Git - rails.git/blob - config/routes.rb
5c95e148dea86e04807f59e3c8e4af4f5477e6d5
[rails.git] / config / routes.rb
1 ActionController::Routing::Routes.draw do |map|
2 #  map.connect ':controller/service.wsdl', :action => 'wsdl'
3
4   map.connect 'api/0.4/node/create', :controller => 'node', :action => 'create'
5   map.connect 'api/0.4/node/:id/history', :controller => 'node', :action => 'history', :id => nil
6   map.connect 'api/0.4/node/:id', :controller => 'node', :action => 'rest', :id => nil
7
8   map.connect 'api/0.4/segment/create', :controller => 'segment', :action => 'create'
9   map.connect 'api/0.4/segment/:id/history', :controller => 'segment', :action => 'history'
10   map.connect 'api/0.4/segment/:id', :controller => 'segment', :action => 'rest'
11
12   map.connect 'api/0.4/way/create', :controller => 'way', :action => 'create'
13   map.connect 'api/0.4/way/:id', :controller => 'way', :action => 'rest'
14   
15   # misc site stuff
16
17   map.connect '/', :controller => 'site', :action => 'index'
18   map.connect '/index.html', :controller => 'site', :action => 'index'
19   map.connect '/edit.html', :controller => 'site', :action => 'edit'
20   map.connect '/login.html', :controller => 'user', :action => 'login'
21   map.connect '/logout.html', :controller => 'user', :action => 'logout'
22   map.connect '/create-account.html', :controller => 'user', :action => 'new'
23
24   map.connect ':controller/:action/:id'
25 end