diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-22 13:17:49 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-22 13:17:49 +0000 |
commit | 827e998afef3a3b6eded98c9b3af1023e54fccb5 (patch) | |
tree | ec61e0b48f850b620454f95904781aeb1b0c4845 /lib/redmine.rb | |
parent | 43f583d33243b825ef493d2bebb200660835af48 (diff) | |
download | redmine-827e998afef3a3b6eded98c9b3af1023e54fccb5.tar.gz redmine-827e998afef3a3b6eded98c9b3af1023e54fccb5.zip |
Application layout refactored.
The project menu is now the main menu.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@747 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine.rb')
-rw-r--r-- | lib/redmine.rb | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/redmine.rb b/lib/redmine.rb index a44a72ffe..3ec774928 100644 --- a/lib/redmine.rb +++ b/lib/redmine.rb @@ -89,19 +89,14 @@ end # Project menu configuration Redmine::MenuManager.map :project_menu do |menu| menu.push :label_overview, :controller => 'projects', :action => 'show' - menu.push :label_calendar, :controller => 'projects', :action => 'calendar' - menu.push :label_gantt, :controller => 'projects', :action => 'gantt' - menu.push :label_issue_plural, :controller => 'projects', :action => 'list_issues' - menu.push :label_report_plural, :controller => 'reports', :action => 'issue_report' menu.push :label_activity, :controller => 'projects', :action => 'activity' - menu.push :label_news_plural, :controller => 'projects', :action => 'list_news' - menu.push :label_change_log, :controller => 'projects', :action => 'changelog' menu.push :label_roadmap, :controller => 'projects', :action => 'roadmap' + menu.push :label_issue_plural, :controller => 'projects', :action => 'list_issues' + menu.push :label_news_plural, :controller => 'projects', :action => 'list_news' menu.push :label_document_plural, :controller => 'projects', :action => 'list_documents' menu.push :label_wiki, { :controller => 'wiki', :action => 'index', :page => nil }, :if => Proc.new { |p| p.wiki && !p.wiki.new_record? } menu.push :label_board_plural, { :controller => 'boards', :action => 'index', :id => nil }, :param => :project_id, :if => Proc.new { |p| p.boards.any? } menu.push :label_attachment_plural, :controller => 'projects', :action => 'list_files' - menu.push :label_search, :controller => 'search', :action => 'index' menu.push :label_repository, { :controller => 'repositories', :action => 'show' }, :if => Proc.new { |p| p.repository && !p.repository.new_record? } menu.push :label_settings, :controller => 'projects', :action => 'settings' end |