source: ruby/branches/0.5/config/routes.rb@ 241

Last change on this file since 241 was 181, checked in by KOBAYASHI, Shinji, 15 years ago

assumed_library_types ride on rails

File size: 1.8 KB
Line 
1ActionController::Routing::Routes.draw do |map|
2 # The priority is based upon order of creation: first created -> highest priority.
3
4 # Sample of regular route:
5 # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
6 # Keep in mind you can assign values other than :controller and :action
7
8 # Sample of named route:
9 # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
10 # This route can be invoked with purchase_url(:id => product.id)
11
12 # Sample resource route (maps HTTP verbs to controller actions automatically):
13 # map.resources :products
14
15 # Sample resource route with options:
16 # map.resources :products, :member => { :short => :get, :toggle => :post }, :collection => { :sold => :get }
17
18 # Sample resource route with sub-resources:
19 # map.resources :products, :has_many => [ :comments, :sales ], :has_one => :seller
20
21 # Sample resource route with more complex sub-resources
22 # map.resources :products do |products|
23 # products.resources :comments
24 # products.resources :sales, :collection => { :recent => :get }
25 # end
26
27 # Sample resource route within a namespace:
28 # map.namespace :admin do |admin|
29 # # Directs /admin/products/* to Admin::ProductsController (app/controllers/admin/products_controller.rb)
30 # admin.resources :products
31 # end
32
33 # You can have the root of your site routed with map.root -- just remember to delete public/index.html.
34 # map.root :controller => "welcome"
35
36 # See how all your routes lay out with "rake routes"
37 # RESTful terminology interface
38 map.terminology 'terminology/:name/:lang/:code',
39 :controller => 'terminology',
40 :action => 'show'
41
42 # Install the default routes as the lowest priority.
43 map.connect ':controller/:action/:id'
44 map.connect ':controller/:action/:id.:format'
45
46end
Note: See TracBrowser for help on using the repository browser.