Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 325
- Log:
Collaboa equivalent of Revision #315 and Revision #318
in Beast.
- Author:
- rool
- Date:
- Fri Mar 18 14:45:10 +0000 2011
- Size:
- 2504 Bytes
1 | ActionController::Routing::Routes.draw do |map| |
2 | # Add your own custom routes here. |
3 | # The priority is based upon order of creation: first created -> highest priority. |
4 | |
5 | # Here's a sample route: |
6 | # map.connect 'products/:id', :controller => 'catalog', :action => 'view' |
7 | # Keep in mind you can assign values other than :controller and :action |
8 | |
9 | map.connect '/admin', :controller => 'admin/dashboard', :action => 'index' |
10 | |
11 | map.connect '/repository/browse/*path', |
12 | :controller => 'repository', |
13 | :action => 'browse' |
14 | |
15 | # "Routing Error: Path components must occur last" :( |
16 | #map.connect '/repository/browse/*path/rev/:rev', |
17 | # :controller => 'repository', |
18 | # :action => 'browse', |
19 | # :rev => /\d+/ |
20 | |
21 | # TODO: Rework this into a general browse/view_file usable thing |
22 | #map.connect '/repository/file/rev/:rev/*path', |
23 | # :controller => 'repository', |
24 | # :action => 'view_file', |
25 | # :rev => /\d+/ |
26 | |
27 | map.connect '/repository/file/*path', |
28 | :controller => 'repository', |
29 | :action => 'view_file' |
30 | |
31 | map.connect '/repository/revisions/*path', |
32 | :controller => 'repository', |
33 | :action => 'revisions' |
34 | |
35 | map.connect '/repository/changesets', |
36 | :controller => 'repository', |
37 | :action => 'changesets' |
38 | |
39 | map.connect '/repository/changesets/:revision', |
40 | :controller => 'repository', |
41 | :action => 'show_changeset' |
42 | |
43 | map.connect '/tickets', |
44 | :controller => 'tickets', |
45 | :action => 'index' |
46 | |
47 | map.connect '/tickets/new', |
48 | :controller => 'tickets', |
49 | :action => 'new' |
50 | |
51 | map.connect '/tickets/:id', |
52 | :controller => 'tickets', |
53 | :action => 'show', |
54 | :requirements => { :id => /\d+/ } |
55 | |
56 | map.connect '/milestones', |
57 | :controller => 'milestones', |
58 | :action => 'index' |
59 | |
60 | map.connect '/milestones/:id', |
61 | :controller => 'milestones', |
62 | :action => 'show' |
63 | |
64 | # You can have the root of your site routed by hooking up '' |
65 | # -- just remember to delete public/index.html. |
66 | map.connect '/', |
67 | :controller => 'tickets' |
68 | |
69 | # Allow downloading Web Service WSDL as a file with an extension |
70 | # instead of a file named 'wsdl' |
71 | #map.connect ':controller/service.wsdl', :action => 'wsdl' |
72 | |
73 | # Install the default route as the lowest priority. |
74 | map.connect '/:controller/:action/:id' |
75 | end |