- <%= l(:label_tracker) %>: <%= new_issue_selector %>
- <% end %>
-
<% planning_links = []
planning_links << link_to_if_authorized(l(:label_calendar), :action => 'calendar', :id => @project)
planning_links << link_to_if_authorized(l(:label_gantt), :action => 'gantt', :id => @project)
diff --git a/lib/redmine.rb b/lib/redmine.rb
index ea05d6e8..1aee1767 100644
--- a/lib/redmine.rb
+++ b/lib/redmine.rb
@@ -95,6 +95,8 @@ Redmine::MenuManager.map :project_menu do |menu|
menu.push :activity, { :controller => 'projects', :action => 'activity' }, :caption => :label_activity
menu.push :roadmap, { :controller => 'projects', :action => 'roadmap' }, :caption => :label_roadmap
menu.push :issues, { :controller => 'issues', :action => 'index' }, :param => :project_id, :caption => :label_issue_plural
+ menu.push :new_issue, { :controller => 'issues', :action => 'new' }, :param => :project_id, :caption => :label_issue_new,
+ :html => { :accesskey => Redmine::AccessKeys.key_for(:new_issue) }
menu.push :news, { :controller => 'news', :action => 'index' }, :param => :project_id, :caption => :label_news_plural
menu.push :documents, { :controller => 'documents', :action => 'index' }, :param => :project_id, :caption => :label_document_plural
menu.push :wiki, { :controller => 'wiki', :action => 'index', :page => nil },
diff --git a/lib/redmine/access_keys.rb b/lib/redmine/access_keys.rb
new file mode 100644
index 00000000..96029a6f
--- /dev/null
+++ b/lib/redmine/access_keys.rb
@@ -0,0 +1,31 @@
+# redMine - project management software
+# Copyright (C) 2006-2008 Jean-Philippe Lang
+#
+# 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.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+module Redmine
+ module AccessKeys
+ ACCESSKEYS = {:edit => 'e',
+ :preview => 'r',
+ :quick_search => 'f',
+ :search => '4',
+ :new_issue => '7'
+ }.freeze unless const_defined?(:ACCESSKEYS)
+
+ def self.key_for(action)
+ ACCESSKEYS[action]
+ end
+ end
+end
diff --git a/lib/redmine/menu_manager.rb b/lib/redmine/menu_manager.rb
index c801cb38..379028eb 100644
--- a/lib/redmine/menu_manager.rb
+++ b/lib/redmine/menu_manager.rb
@@ -68,7 +68,7 @@ module Redmine
unless item.condition && !item.condition.call(project)
links << content_tag('li',
link_to(l(item.caption), {item.param => project}.merge(item.url),
- :class => (current_menu_item == item.name ? 'selected' : nil)))
+ (current_menu_item == item.name ? item.html_options.merge(:class => 'selected') : item.html_options)))
end
end if project && !project.new_record?
links.empty? ? nil : content_tag('ul', links.join("\n"))
@@ -94,6 +94,11 @@ module Redmine
end
class Mapper
+ # Adds an item at the end of the menu. Available options:
+ # * param: the parameter name that is used for the project id (default is :id)
+ # * condition: a proc that is called before rendering the item, the item is displayed only if it returns true
+ # * caption: the localized string key that is used as the item label
+ # * html_options: a hash of html options that are passed to link_to
def push(name, url, options={})
@items ||= []
@items << MenuItem.new(name, url, options)
@@ -105,7 +110,7 @@ module Redmine
end
class MenuItem
- attr_reader :name, :url, :param, :condition, :caption
+ attr_reader :name, :url, :param, :condition, :caption, :html_options
def initialize(name, url, options)
@name = name
@@ -113,6 +118,7 @@ module Redmine
@condition = options[:if]
@param = options[:param] || :id
@caption = options[:caption] || name.to_s.humanize
+ @html_options = options[:html] || {}
end
end
end
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index d370f1b4..5bada6e0 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -17,7 +17,7 @@ h4, .wiki h3 {font-size: 12px;padding: 2px 10px 1px 0px;margin-bottom: 5px; bord
#header a {color:#f8f8f8;}
#quick-search {float:right;}
-#main-menu {position: absolute; bottom: 0px; left:6px;}
+#main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px;}
#main-menu ul {margin: 0; padding: 0;}
#main-menu li {
float:left;