##// END OF EJS Templates
Updates for 3.2.1 release....
Updates for 3.2.1 release. git-svn-id: http://svn.redmine.org/redmine/trunk@15236 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13490:000124f44f53
r14854:554cd5efabfc
Show More
access_keys.rb
33 lines | 1.2 KiB | text/x-ruby | RubyLexer
Toshi MARUYAMA
remove trailing white-spaces from lib/redmine/access_keys.rb...
r7281 # Redmine - project management software
Jean-Philippe Lang
Copyright update....
r13490 # Copyright (C) 2006-2015 Jean-Philippe Lang
Jean-Philippe Lang
Added a 'New issue' link in the main menu (accesskey 7)....
r1067 #
# 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.
Toshi MARUYAMA
remove trailing white-spaces from lib/redmine/access_keys.rb...
r7281 #
Jean-Philippe Lang
Added a 'New issue' link in the main menu (accesskey 7)....
r1067 # 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.
Toshi MARUYAMA
remove trailing white-spaces from lib/redmine/access_keys.rb...
r7281 #
Jean-Philippe Lang
Added a 'New issue' link in the main menu (accesskey 7)....
r1067 # 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',
Jean-Philippe Lang
Adds p/n access keys for previous/next links (#18692)....
r13412 :new_issue => '7',
:previous => 'p',
:next => 'n'
Jean-Philippe Lang
Added a 'New issue' link in the main menu (accesskey 7)....
r1067 }.freeze unless const_defined?(:ACCESSKEYS)
Toshi MARUYAMA
remove trailing white-spaces from lib/redmine/access_keys.rb...
r7281
Jean-Philippe Lang
Added a 'New issue' link in the main menu (accesskey 7)....
r1067 def self.key_for(action)
ACCESSKEYS[action]
end
end
end