]> source.dussan.org Git - redmine.git/commitdiff
Added a 'New issue' link in the main menu (accesskey 7).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Jan 2008 13:07:19 +0000 (13:07 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Jan 2008 13:07:19 +0000 (13:07 +0000)
The drop-down lists to add an issue on the project overview and the issue list are removed.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1081 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/issues_controller.rb
app/helpers/application_helper.rb
app/helpers/projects_helper.rb
app/views/issues/_sidebar.rhtml
app/views/projects/show.rhtml
lib/redmine.rb
lib/redmine/access_keys.rb [new file with mode: 0644]
lib/redmine/menu_manager.rb
public/stylesheets/application.css

index 7a48282c9b1ee28d11dd5817fe7927f9c2aad5e9..643a4e0ef974ad631b04c1317ebbe6f114378ed9 100644 (file)
@@ -17,6 +17,8 @@
 
 class IssuesController < ApplicationController
   layout 'base'
+  menu_item :new_issue, :only => :new
+  
   before_filter :find_issue, :except => [:index, :changes, :preview, :new, :update_form]
   before_filter :find_project, :only => [:new, :update_form]
   before_filter :authorize, :except => [:index, :changes, :preview, :update_form]
index f0455f3e4137a411fb423e7d3be4b35236e194f1..1dfb57ff8888380a9b975e263c56ca498ed5f35a 100644 (file)
@@ -162,15 +162,9 @@ module ApplicationHelper
       @html_title += args
     end
   end
-  
-  ACCESSKEYS = {:edit => 'e',
-                :preview => 'r',
-                :quick_search => 'f',
-                :search => '4',
-                }.freeze unless const_defined?(:ACCESSKEYS)
 
   def accesskey(s)
-    ACCESSKEYS[s]
+    Redmine::AccessKeys.key_for s
   end
 
   # Formats text according to system settings.
index ee61d88ddffd65ccc5390584c5a232e82bb5d66d..883be0ead53f65277ac19791e55c0fa39a8d7352 100644 (file)
@@ -188,12 +188,4 @@ module ProjectsHelper
     gc.draw(imgl)
     imgl
   end if Object.const_defined?(:Magick)
-  
-  def new_issue_selector
-    trackers = @project.trackers
-    # can't use form tag inside helper
-    content_tag('form',
-      select_tag('tracker_id', '<option></option>' + options_from_collection_for_select(trackers, 'id', 'name'), :onchange => "if (this.value != '') {this.form.submit()}"),
-      :action => url_for(:controller => 'issues', :action => 'new', :project_id => @project), :method => 'get')
-  end
 end
index 1e1fc87d0c0ef97c80c16782a16a12294447ecca..4a1b7e9bc07e11515564d9c3124250d1be8efbfd 100644 (file)
@@ -1,8 +1,3 @@
-<% if authorize_for('issues', 'new') && @project.trackers.any? %>
-<h3><%= l(:label_issue_new) %></h3>
-<%= l(:label_tracker) %>: <%= new_issue_selector %>
-<% end %>
-
 <h3><%= l(:label_issue_plural) %></h3>
 <%= link_to l(:label_issue_view_all), { :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 } %><br />
 <%= link_to l(:field_summary), :controller => 'reports', :action => 'issue_report', :id => @project %><br />
index ecaa9750afc52983309e1951981c0fedc6232341..eb80bf9fa1a8814cd0ab3c26e107a6c3e9fb5f3d 100644 (file)
 </div>
 
 <% content_for :sidebar do %>
-    <% if authorize_for('issues', 'new') && @project.trackers.any? %>
-    <h3><%= l(:label_issue_new) %></h3>
-    <%= 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)
index ea05d6e8061f3a2bee78c440702b51b6b1474921..1aee1767cd10306015ca2b411a11f3c602134dec 100644 (file)
@@ -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 (file)
index 0000000..96029a6
--- /dev/null
@@ -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
index c801cb3838169f12c80f7c1b6b34855783804a5e..379028ebc5ce393971cff32bf30f2a0cacc9aa4c 100644 (file)
@@ -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
index d370f1b4263bbb14cb529d165b524568cb89df09..5bada6e068853a88f5bc59d3302fe0e17865f223 100644 (file)
@@ -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;