OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/config/routes.rb

263 lines
12 KiB

#-- encoding: UTF-8
#-- copyright
# ChiliProject is a project management system.
#
# Copyright (C) 2010-2011 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
OpenProject::Application.routes.draw do
scope Redmine::Utils.relative_url_root.blank? ? "/" : Redmine::Utils.relative_url_root do
# Add your own custom routes here.
# The priority is based upon order of creation: first created -> highest priority.
# Here's a sample route:
# connect 'products/:id', :controller => 'catalog', :action => 'view'
# Keep in mind you can assign values other than :controller and :action
root :to => 'Welcome#index', :as => 'home'
match '/login' => 'account#login', :as => 'signin'
match '/logout' => 'account#logout', :as => 'signout'
match '/roles/workflow/:id/:role_id/:tracker_id' => 'roles#worklfow'
match '/help/:ctrl/:page' => 'help#index'
scope :controller => 'time_entry_reports', :action => 'report', :via => :get do
match '/projects/:project_id/issues/:issue_id/time_entries/report(.:format)'
match '/projects/:project_id/time_entries/report(.:format)'
match '/time_entries/report(.:format)'
Converted routing and urls to follow the Rails REST convention. Patch supplied by commits from Gerrit Kaiser on Github. Existing routes will still work (backwards compatible) but any new urls will be generated using the new routing rules. Changes listed below: * made the URLs for some project tabs and project settings follow the new rails RESTful conventions of /collection/:id/subcollection/:sub_id * prettier URL for project roadmap * more nice project URLs * use GET for filtering form * prettified URLs used on issues tab * custom route for activity atom feeds * prettier repository urls * fixed broken route definition * fixed failing tests for issuecontroller that were hardcoding the url string * more RESTful routes for boards and messages * RESTful routes for wiki pages * RESTful routes for documents * moved old routes that are retained for compatibility to the bottom and grouped them together * added RESTful URIs for issues * RESTfulness for the news section * fixed route order * changed hardcoded URLs in tests * fixed badly written tests * fixed forgotten parameter in routes * changed hardcoded URLS to new scheme * changed project add url to the standard POST to collection * create new issue by POSTing to collection * changed hardcoded URLs in integrations tests * made project add form work again * restful routes for project deletion * prettier routes for project (un)archival * made routes table more readable * fixed note quoting * user routing * fixed bug * always sort by GET * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled. * prettified URLs used on issues tab * urls for time log * fixed reply routing * eliminate revision query paremeter for diff and entry actions * fixed test failures with hard-coded urls * ensure ajax links always use get * refactored ajax link generation into separate method #1901 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2317 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 years ago
end
resources :time_entries, :controller => 'timelog'
match '/projects/:id/wiki' => 'wikis#edit', :via => :post
match '/projects/:id/wiki/destroy' => 'wikis#destroy', :via => [:get, :post]
scope :controller => 'messages' do
scope :via => :get do
match '/boards/:board_id/topics/new', :action => :new
match '/boards/:board_id/topics/:id', :action => :show
match '/boards/:board_id/topics/:id/edit', :action => :edit
end
scope :via => :post do
match '/boards/:board_id/topics/new', :action => :new
match '/boards/:board_id/topics/:id/replies', :action => :reply
match '/boards/:board_id/topics/:id/:action', :action => /edit|destroy/
end
Converted routing and urls to follow the Rails REST convention. Patch supplied by commits from Gerrit Kaiser on Github. Existing routes will still work (backwards compatible) but any new urls will be generated using the new routing rules. Changes listed below: * made the URLs for some project tabs and project settings follow the new rails RESTful conventions of /collection/:id/subcollection/:sub_id * prettier URL for project roadmap * more nice project URLs * use GET for filtering form * prettified URLs used on issues tab * custom route for activity atom feeds * prettier repository urls * fixed broken route definition * fixed failing tests for issuecontroller that were hardcoding the url string * more RESTful routes for boards and messages * RESTful routes for wiki pages * RESTful routes for documents * moved old routes that are retained for compatibility to the bottom and grouped them together * added RESTful URIs for issues * RESTfulness for the news section * fixed route order * changed hardcoded URLs in tests * fixed badly written tests * fixed forgotten parameter in routes * changed hardcoded URLS to new scheme * changed project add url to the standard POST to collection * create new issue by POSTing to collection * changed hardcoded URLs in integrations tests * made project add form work again * restful routes for project deletion * prettier routes for project (un)archival * made routes table more readable * fixed note quoting * user routing * fixed bug * always sort by GET * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled. * prettified URLs used on issues tab * urls for time log * fixed reply routing * eliminate revision query paremeter for diff and entry actions * fixed test failures with hard-coded urls * ensure ajax links always use get * refactored ajax link generation into separate method #1901 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2317 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 years ago
end
scope :controller => 'boards' do
scope :via => :get do
match '/projects/:project_id/boards', :action => :index
match '/projects/:project_id/boards/new', :action => :new
match '/projects/:project_id/boards/:id', :action => :show
match '/projects/:project_id/boards/:id.:format', :action => :show
match '/projects/:project_id/boards/:id/edit', :action => :edit
end
scope :via => :post do
match '/projects/:project_id/boards', :action => :new
match '/projects/:project_id/boards/:id/:action', :action => /edit|destroy/
end
Converted routing and urls to follow the Rails REST convention. Patch supplied by commits from Gerrit Kaiser on Github. Existing routes will still work (backwards compatible) but any new urls will be generated using the new routing rules. Changes listed below: * made the URLs for some project tabs and project settings follow the new rails RESTful conventions of /collection/:id/subcollection/:sub_id * prettier URL for project roadmap * more nice project URLs * use GET for filtering form * prettified URLs used on issues tab * custom route for activity atom feeds * prettier repository urls * fixed broken route definition * fixed failing tests for issuecontroller that were hardcoding the url string * more RESTful routes for boards and messages * RESTful routes for wiki pages * RESTful routes for documents * moved old routes that are retained for compatibility to the bottom and grouped them together * added RESTful URIs for issues * RESTfulness for the news section * fixed route order * changed hardcoded URLs in tests * fixed badly written tests * fixed forgotten parameter in routes * changed hardcoded URLS to new scheme * changed project add url to the standard POST to collection * create new issue by POSTing to collection * changed hardcoded URLs in integrations tests * made project add form work again * restful routes for project deletion * prettier routes for project (un)archival * made routes table more readable * fixed note quoting * user routing * fixed bug * always sort by GET * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled. * prettified URLs used on issues tab * urls for time log * fixed reply routing * eliminate revision query paremeter for diff and entry actions * fixed test failures with hard-coded urls * ensure ajax links always use get * refactored ajax link generation into separate method #1901 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2317 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 years ago
end
scope :controller => 'documents' do
scope :via => :get do
match '/projects/:project_id/documents', :action => :index
match '/projects/:project_id/documents/new', :action => :new
match '/documents/:id', :action => :show
match '/documents/:id/edit', :action => :edit
end
scope :via => :post do
match '/projects/:project_id/documents', :action => :new
match '/documents/:id/:action', :action => /destroy|edit/
end
Converted routing and urls to follow the Rails REST convention. Patch supplied by commits from Gerrit Kaiser on Github. Existing routes will still work (backwards compatible) but any new urls will be generated using the new routing rules. Changes listed below: * made the URLs for some project tabs and project settings follow the new rails RESTful conventions of /collection/:id/subcollection/:sub_id * prettier URL for project roadmap * more nice project URLs * use GET for filtering form * prettified URLs used on issues tab * custom route for activity atom feeds * prettier repository urls * fixed broken route definition * fixed failing tests for issuecontroller that were hardcoding the url string * more RESTful routes for boards and messages * RESTful routes for wiki pages * RESTful routes for documents * moved old routes that are retained for compatibility to the bottom and grouped them together * added RESTful URIs for issues * RESTfulness for the news section * fixed route order * changed hardcoded URLs in tests * fixed badly written tests * fixed forgotten parameter in routes * changed hardcoded URLS to new scheme * changed project add url to the standard POST to collection * create new issue by POSTing to collection * changed hardcoded URLs in integrations tests * made project add form work again * restful routes for project deletion * prettier routes for project (un)archival * made routes table more readable * fixed note quoting * user routing * fixed bug * always sort by GET * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled. * prettified URLs used on issues tab * urls for time log * fixed reply routing * eliminate revision query paremeter for diff and entry actions * fixed test failures with hard-coded urls * ensure ajax links always use get * refactored ajax link generation into separate method #1901 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2317 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 years ago
end
resources :issue_moves, :only => [:new, :create], :path_prefix => '/issues', :as => 'issue_move'
# Misc issue routes. TODO: move into resources
match '/issues/auto_complete' => 'autoCompletes#issues', :as => 'auto_complete_issues'
match '/issues/preview/:id' => 'previews#issue', :as => 'preview_issue' # TODO: would look nicer as /issues/:id/preview
match '/issues/context_menu' => 'issues#context_menu', :as => 'issues_context_menu'
match '/issues/changes' => 'journals#index', :as => 'issue_changes'
match '/issues/bulk_edit' => 'issues#bulk_edit', :via => :get, :as => 'bulk_edit_issue'
match '/issues/bulk_edit' => 'issues#bulk_udpate', :via => :post, :as => 'bulk_update_issue'
match '/issues/:id/quoted' => 'journals#new', :id => /\d+/, :via => :post, :as => 'quoted_issue'
match '/issues/:id/destroy' => 'issues#destroy', :via => :post # legacy
resource :gantt, :path_prefix => '/issues', :controller => 'gantts', :only => [:show, :update]
resource :gantt, :path_prefix => '/projects/:project_id/issues', :controller => 'gantts', :only => [:show, :update]
resource :calendar, :path_prefix => '/issues', :controller => 'calendars', :only => [:show, :update]
resource :calendar, :path_prefix => '/projects/:project_id/issues', :controller => 'calendars', :only => [:show, :update]
scope :controller => 'reports', :via => :get do
match '/projects/:id/issues/report', :action => :issue_report
match '/projects/:id/issues/report/:detail', :action => :issue_report_details
end
# Following two routes conflict with the resources because #index allows POST
match '/issues' => 'issues#index', :via => :post
match '/issues/create' => 'issues#index', :via => :post
resources :issues, :member => { :edit => :post }, :collection => {} do
resources :time_entries, :controller => 'timelog'
end
resources :issues, :path_prefix => '/projects/:project_id', :collection => { :create => :post, :all => :get } do
resources :time_entries, :controller => 'timelog'
end
scope :controller => 'issue_relations', :via => :post do
match '/issues/:issue_id/relations/:id', :action => :new
match '/issues/:issue_id/relations/:id/destroy', :action => :destroy
end
match '/projects/:id/members/new' => 'members#new'
scope :controller => 'users' do
match '/users/:id/edit/:tab', :action => 'edit', :tab => nil, :via => :get
scope :via => :post do
match '/users/:id/memberships', :action => 'edit_membership'
match '/users/:id/memberships/:membership_id', :action => 'edit_membership'
match '/users/:id/memberships/:membership_id/destroy', :action => 'destroy_membership'
end
Converted routing and urls to follow the Rails REST convention. Patch supplied by commits from Gerrit Kaiser on Github. Existing routes will still work (backwards compatible) but any new urls will be generated using the new routing rules. Changes listed below: * made the URLs for some project tabs and project settings follow the new rails RESTful conventions of /collection/:id/subcollection/:sub_id * prettier URL for project roadmap * more nice project URLs * use GET for filtering form * prettified URLs used on issues tab * custom route for activity atom feeds * prettier repository urls * fixed broken route definition * fixed failing tests for issuecontroller that were hardcoding the url string * more RESTful routes for boards and messages * RESTful routes for wiki pages * RESTful routes for documents * moved old routes that are retained for compatibility to the bottom and grouped them together * added RESTful URIs for issues * RESTfulness for the news section * fixed route order * changed hardcoded URLs in tests * fixed badly written tests * fixed forgotten parameter in routes * changed hardcoded URLS to new scheme * changed project add url to the standard POST to collection * create new issue by POSTing to collection * changed hardcoded URLs in integrations tests * made project add form work again * restful routes for project deletion * prettier routes for project (un)archival * made routes table more readable * fixed note quoting * user routing * fixed bug * always sort by GET * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled. * prettified URLs used on issues tab * urls for time log * fixed reply routing * eliminate revision query paremeter for diff and entry actions * fixed test failures with hard-coded urls * ensure ajax links always use get * refactored ajax link generation into separate method #1901 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2317 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 years ago
end
resources :users, :member => {
:edit_membership => :post,
:destroy_membership => :post,
:deletion_info => :get
}
# For nice "road in the url for the index action
match '/projects/:project_id/roadmap' => 'Versions#index'
match '/news' => 'news#index', :as => 'all_news'
match '/news.:format' => 'news#index', :as => 'formatted_all_news'
match '/news/preview' => 'previews#news', :as => 'preview_news'
match '/news/:id/comments' => 'comments#create', :via => :post
match '/news/:id/comments/:comment_id' => 'comments#destroy', :via => :delete
resources :projects do
member do
get 'copy'
post 'copy'
get 'settings'
post 'modules'
post 'archive'
post 'unarchive'
end
resource :project_enumerations, :as => 'enumerations', :only => [:update, :destroy]
resources :files, :only => [:index, :new, :create]
resources :versions, :collection => {:close_completed => :put}, :member => {:status_by => :post}
resources :news, :shallow => true
resources :time_entries, :controller => 'timelog', :path_prefix => 'projects/:project_id'
match '/wiki' => 'wiki#show', :via => :get, :as => 'wiki_start_page'
match '/wiki/index' => 'wiki#index', :via => :get, :as => 'wiki_index'
match '/wiki/:id/diff/:version' => 'wiki#diff', :as => 'wiki_diff'
match '/wiki/:id/diff/:version/vs/:version_from' => 'wiki#diff', :as => 'wiki_diff'
match '/wiki/:id/annotate/:version' => 'wiki#annotate', :as => 'wiki_annotate'
resources :wiki, :except => [:new, :create], :member => {
:rename => [:get, :post],
:history => :get,
:preview => :any,
:protect => :post,
:add_attachment => :post
}, :collection => {
:export => :get,
:date_index => :get
}
end
# Destroy uses a get request to prompt the user before the actual DELETE request
match '/projects/:id/destroy' => 'project#destroy', :via => :get, :as => 'project_destroy_confirm'
# TODO: port to be part of the resources route(s)
scope :via => :get do
match '/projects/:id/settings(/:tab)' => 'projects#settings'
match '/projects/:project_id/issues/:copy_from/copy' => 'issues#new'
Converted routing and urls to follow the Rails REST convention. Patch supplied by commits from Gerrit Kaiser on Github. Existing routes will still work (backwards compatible) but any new urls will be generated using the new routing rules. Changes listed below: * made the URLs for some project tabs and project settings follow the new rails RESTful conventions of /collection/:id/subcollection/:sub_id * prettier URL for project roadmap * more nice project URLs * use GET for filtering form * prettified URLs used on issues tab * custom route for activity atom feeds * prettier repository urls * fixed broken route definition * fixed failing tests for issuecontroller that were hardcoding the url string * more RESTful routes for boards and messages * RESTful routes for wiki pages * RESTful routes for documents * moved old routes that are retained for compatibility to the bottom and grouped them together * added RESTful URIs for issues * RESTfulness for the news section * fixed route order * changed hardcoded URLs in tests * fixed badly written tests * fixed forgotten parameter in routes * changed hardcoded URLS to new scheme * changed project add url to the standard POST to collection * create new issue by POSTing to collection * changed hardcoded URLs in integrations tests * made project add form work again * restful routes for project deletion * prettier routes for project (un)archival * made routes table more readable * fixed note quoting * user routing * fixed bug * always sort by GET * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled. * prettified URLs used on issues tab * urls for time log * fixed reply routing * eliminate revision query paremeter for diff and entry actions * fixed test failures with hard-coded urls * ensure ajax links always use get * refactored ajax link generation into separate method #1901 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2317 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 years ago
end
scope :controller => 'activities', :action => 'index', :via => :get do
match '/projects/:id/activity(.:format)'
match '/activity(.:format)'
end
scope :controller => 'issue_categories' do
match '/projects/:project_id/issue_categories/new', :action => :new
end
scope :controller => 'repositories' do
scope :via => :get do
match '/projects/:id/repository', :action => :show
match '/projects/:id/repository/edit', :action => :edit
match '/projects/:id/repository/statistics', :action => :stats
match '/projects/:id/repository/revisions', :action => :revisions
match '/projects/:id/repository/revisions.:format', :action => :revisions
match '/projects/:id/repository/revisions/:rev', :action => :revision
match '/projects/:id/repository/revisions/:rev/diff', :action => :diff
match '/projects/:id/repository/revisions/:rev/diff.:format', :action => :diff
match '/projects/:id/repository/revisions/:rev/raw/*path', :action => :entry, :format => 'raw', :rev => /[a-z0-9\.\-_]+/
match '/projects/:id/repository/revisions/:rev/:action/*path', :rev => /[a-z0-9\.\-_]+/
match '/projects/:id/repository/raw/*path', :action => :entry, :format => 'raw'
# TODO: why the following route is required?
match '/projects/:id/repository/entry/*path', :action => :entry
match '/projects/:id/repository/:action/*path'
end
match '/projects/:id/repository/:action', :via => :post
Converted routing and urls to follow the Rails REST convention. Patch supplied by commits from Gerrit Kaiser on Github. Existing routes will still work (backwards compatible) but any new urls will be generated using the new routing rules. Changes listed below: * made the URLs for some project tabs and project settings follow the new rails RESTful conventions of /collection/:id/subcollection/:sub_id * prettier URL for project roadmap * more nice project URLs * use GET for filtering form * prettified URLs used on issues tab * custom route for activity atom feeds * prettier repository urls * fixed broken route definition * fixed failing tests for issuecontroller that were hardcoding the url string * more RESTful routes for boards and messages * RESTful routes for wiki pages * RESTful routes for documents * moved old routes that are retained for compatibility to the bottom and grouped them together * added RESTful URIs for issues * RESTfulness for the news section * fixed route order * changed hardcoded URLs in tests * fixed badly written tests * fixed forgotten parameter in routes * changed hardcoded URLS to new scheme * changed project add url to the standard POST to collection * create new issue by POSTing to collection * changed hardcoded URLs in integrations tests * made project add form work again * restful routes for project deletion * prettier routes for project (un)archival * made routes table more readable * fixed note quoting * user routing * fixed bug * always sort by GET * Fixed: cross-project issue list should not show issues of projects for which the issue tracking module was disabled. * prettified URLs used on issues tab * urls for time log * fixed reply routing * eliminate revision query paremeter for diff and entry actions * fixed test failures with hard-coded urls * ensure ajax links always use get * refactored ajax link generation into separate method #1901 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2317 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 years ago
end
match '/attachments/:id' => 'attachments#show', :id => /\d+/
match '/attachments/:id/:filename' => 'attachments#show', :id => /\d+/, :filename => /.*/
match '/attachments/download/:id/:filename' => 'attachments#download', :id => /\d+/, :filename => /.*/
resources :groups
#left old routes at the bottom for backwards compat
match '/projects/:project_id/issues/:action', :controller => 'issues'
match '/projects/:project_id/documents/:action', :controller => 'documents'
match '/projects/:project_id/boards/:action/:id', :controller => 'boards'
match '/boards/:board_id/topics/:action/:id', :controller => 'messages'
match '/wiki/:id/:page/:action', :page => nil, :controller => 'wiki'
match '/issues/:issue_id/relations/:action/:id', :controller => 'issue_relations'
match '/projects/:project_id/news/:action', :controller => 'news'
match '/projects/:project_id/timelog/:action/:id', :controller => 'timelog', :project_id => /.+/
scope :controller => 'repositories' do
match '/repositories/browse/:id/*path', :action => 'browse', :as => 'repositories_show'
match '/repositories/changes/:id/*path', :action => 'changes', :as => 'repositories_changes'
match '/repositories/diff/:id/*path', :action => 'diff', :as => 'repositories_diff'
match '/repositories/entry/:id/*path', :action => 'entry', :as => 'repositories_entry'
match '/repositories/annotate/:id/*path', :action => 'annotate', :as => 'stylesheet_link_tag'
match '/repositories/revision/:id/:rev', :action => 'revision'
end
scope :controller => 'sys' do
match '/sys/projects.:format', :action => 'projects', :via => :get
match '/sys/projects/:id/repository.:format', :action => 'create_project_repository', :via => :post
end
# alternate routes for the current user
scope :path_prefix => "my" do
match '/deletion_info' => 'users#deletion_info', :via => :get, :as => 'delete_my_account_info'
end
# Install the default route as the lowest priority.
match '/:controller(/:action(/:id))'
match '/robots.txt' => 'welcome#robots'
# Used for OpenID
root :to => 'account#login'
end
end