summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-31 21:18:43 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-31 21:18:43 +0000
commitfa688d48e673abfa8711beb69995aaf3d41069d1 (patch)
treeb86c5494839673b615cb2d99aac8a861067fd10d
parent671a0fa10161ead2ec0fef888710cf7d872b2f61 (diff)
downloadredmine-fa688d48e673abfa8711beb69995aaf3d41069d1.tar.gz
redmine-fa688d48e673abfa8711beb69995aaf3d41069d1.zip
added the ability to set the sort order for trackers
git-svn-id: http://redmine.rubyforge.org/svn/trunk@209 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/controllers/custom_fields_controller.rb4
-rw-r--r--app/controllers/projects_controller.rb6
-rw-r--r--app/controllers/reports_controller.rb4
-rw-r--r--app/controllers/roles_controller.rb2
-rw-r--r--app/controllers/trackers_controller.rb19
-rw-r--r--app/models/query.rb2
-rw-r--r--app/models/tracker.rb1
-rw-r--r--app/views/trackers/list.rhtml7
-rw-r--r--db/migrate/021_add_tracker_position.rb10
-rw-r--r--doc/CHANGELOG2
10 files changed, 45 insertions, 12 deletions
diff --git a/app/controllers/custom_fields_controller.rb b/app/controllers/custom_fields_controller.rb
index 29314f4b1..7d8829641 100644
--- a/app/controllers/custom_fields_controller.rb
+++ b/app/controllers/custom_fields_controller.rb
@@ -47,7 +47,7 @@ class CustomFieldsController < ApplicationController
flash[:notice] = l(:notice_successful_create)
redirect_to :action => 'list', :tab => @custom_field.type
end
- @trackers = Tracker.find(:all)
+ @trackers = Tracker.find(:all, :order => 'position')
end
def edit
@@ -59,7 +59,7 @@ class CustomFieldsController < ApplicationController
flash[:notice] = l(:notice_successful_update)
redirect_to :action => 'list', :tab => @custom_field.type
end
- @trackers = Tracker.find(:all)
+ @trackers = Tracker.find(:all, :order => 'position')
end
def destroy
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb
index 815edb87d..5d42221c3 100644
--- a/app/controllers/projects_controller.rb
+++ b/app/controllers/projects_controller.rb
@@ -81,7 +81,7 @@ class ProjectsController < ApplicationController
@members = @project.members.find(:all, :include => [:user, :role])
@subprojects = @project.children if @project.children.size > 0
@news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "news.created_on DESC")
- @trackers = Tracker.find(:all)
+ @trackers = Tracker.find(:all, :order => 'position')
@open_issues_by_tracker = Issue.count(:group => :tracker, :joins => "INNER JOIN issue_statuses ON issue_statuses.id = issues.status_id", :conditions => ["project_id=? and issue_statuses.is_closed=?", @project.id, false])
@total_issues_by_tracker = Issue.count(:group => :tracker, :conditions => ["project_id=?", @project.id])
end
@@ -245,7 +245,7 @@ class ProjectsController < ApplicationController
:limit => @issue_pages.items_per_page,
:offset => @issue_pages.current.offset
end
- @trackers = Tracker.find :all
+ @trackers = Tracker.find :all, :order => 'position'
render :layout => false if request.xhr?
end
@@ -404,7 +404,7 @@ class ProjectsController < ApplicationController
# Show changelog for @project
def changelog
- @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true])
+ @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true], :order => 'position')
if request.get?
@selected_tracker_ids = @trackers.collect {|t| t.id.to_s }
else
diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb
index 2e2f0fc8e..aa26e24b9 100644
--- a/app/controllers/reports_controller.rb
+++ b/app/controllers/reports_controller.rb
@@ -25,7 +25,7 @@ class ReportsController < ApplicationController
case params[:detail]
when "tracker"
@field = "tracker_id"
- @rows = Tracker.find :all
+ @rows = Tracker.find :all, :order => 'position'
@data = issues_by_tracker
@report_title = l(:field_tracker)
render :template => "reports/issue_report_details"
@@ -49,7 +49,7 @@ class ReportsController < ApplicationController
render :template => "reports/issue_report_details"
else
@queries = @project.queries.find :all, :conditions => ["is_public=? or user_id=?", true, (logged_in_user ? logged_in_user.id : 0)]
- @trackers = Tracker.find(:all)
+ @trackers = Tracker.find(:all, :order => 'position')
@priorities = Enumeration::get_values('IPRI')
@categories = @project.issue_categories
@authors = @project.members.collect { |m| m.user }
diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb
index 6ac08a767..b26cf730b 100644
--- a/app/controllers/roles_controller.rb
+++ b/app/controllers/roles_controller.rb
@@ -96,7 +96,7 @@ class RolesController < ApplicationController
end
end
@roles = Role.find(:all, :order => 'position')
- @trackers = Tracker.find :all
+ @trackers = Tracker.find(:all, :order => 'position')
@statuses = IssueStatus.find(:all, :include => :workflows, :order => 'position')
end
end
diff --git a/app/controllers/trackers_controller.rb b/app/controllers/trackers_controller.rb
index 186f8b7ae..173f63c48 100644
--- a/app/controllers/trackers_controller.rb
+++ b/app/controllers/trackers_controller.rb
@@ -28,7 +28,7 @@ class TrackersController < ApplicationController
verify :method => :post, :only => [ :destroy ], :redirect_to => { :action => :list }
def list
- @tracker_pages, @trackers = paginate :trackers, :per_page => 10
+ @tracker_pages, @trackers = paginate :trackers, :per_page => 10, :order => 'position'
render :action => "list", :layout => false if request.xhr?
end
@@ -47,7 +47,22 @@ class TrackersController < ApplicationController
redirect_to :action => 'list'
end
end
-
+
+ def move
+ @tracker = Tracker.find(params[:id])
+ case params[:position]
+ when 'highest'
+ @tracker.move_to_top
+ when 'higher'
+ @tracker.move_higher
+ when 'lower'
+ @tracker.move_lower
+ when 'lowest'
+ @tracker.move_to_bottom
+ end if params[:position]
+ redirect_to :action => 'list'
+ end
+
def destroy
@tracker = Tracker.find(params[:id])
unless @tracker.issues.empty?
diff --git a/app/models/query.rb b/app/models/query.rb
index 5594e5cb6..b6c9b680a 100644
--- a/app/models/query.rb
+++ b/app/models/query.rb
@@ -70,7 +70,7 @@ class Query < ActiveRecord::Base
def available_filters
return @available_filters if @available_filters
@available_filters = { "status_id" => { :type => :list_status, :order => 1, :values => IssueStatus.find(:all, :order => 'position').collect{|s| [s.name, s.id.to_s] } },
- "tracker_id" => { :type => :list, :order => 2, :values => Tracker.find(:all).collect{|s| [s.name, s.id.to_s] } },
+ "tracker_id" => { :type => :list, :order => 2, :values => Tracker.find(:all, :order => 'position').collect{|s| [s.name, s.id.to_s] } },
"priority_id" => { :type => :list, :order => 3, :values => Enumeration.find(:all, :conditions => ['opt=?','IPRI']).collect{|s| [s.name, s.id.to_s] } },
"subject" => { :type => :text, :order => 8 },
"created_on" => { :type => :date_past, :order => 9 },
diff --git a/app/models/tracker.rb b/app/models/tracker.rb
index 8790bf725..b584704c2 100644
--- a/app/models/tracker.rb
+++ b/app/models/tracker.rb
@@ -20,6 +20,7 @@ class Tracker < ActiveRecord::Base
has_many :issues
has_many :workflows, :dependent => :delete_all
has_and_belongs_to_many :custom_fields, :class_name => 'IssueCustomField', :join_table => 'custom_fields_trackers', :association_foreign_key => 'custom_field_id'
+ acts_as_list
validates_presence_of :name
validates_uniqueness_of :name
diff --git a/app/views/trackers/list.rhtml b/app/views/trackers/list.rhtml
index 644b1324e..a12e50845 100644
--- a/app/views/trackers/list.rhtml
+++ b/app/views/trackers/list.rhtml
@@ -7,6 +7,7 @@
<table class="list">
<thead><tr>
<th><%=l(:label_tracker)%></th>
+ <th><%=l(:button_sort)%></th>
<th></th>
</tr></thead>
<tbody>
@@ -14,6 +15,12 @@
<tr class="<%= cycle("odd", "even") %>">
<td><%= link_to tracker.name, :action => 'edit', :id => tracker %></td>
<td align="center">
+ <%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => tracker, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %>
+ <%= link_to image_tag('1uparrow.png', :alt => l(:label_sort_higher)), {:action => 'move', :id => tracker, :position => 'higher'}, :method => :post, :title => l(:label_sort_higher) %> -
+ <%= link_to image_tag('1downarrow.png', :alt => l(:label_sort_lower)), {:action => 'move', :id => tracker, :position => 'lower'}, :method => :post, :title => l(:label_sort_lower) %>
+ <%= link_to image_tag('2downarrow.png', :alt => l(:label_sort_lowest)), {:action => 'move', :id => tracker, :position => 'lowest'}, :method => :post, :title => l(:label_sort_lowest) %>
+ </td>
+ <td align="center">
<%= button_to l(:button_delete), { :action => 'destroy', :id => tracker }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
</td>
</tr>
diff --git a/db/migrate/021_add_tracker_position.rb b/db/migrate/021_add_tracker_position.rb
new file mode 100644
index 000000000..30a5d771c
--- /dev/null
+++ b/db/migrate/021_add_tracker_position.rb
@@ -0,0 +1,10 @@
+class AddTrackerPosition < ActiveRecord::Migration
+ def self.up
+ add_column :trackers, :position, :integer, :default => 1, :null => false
+ Tracker.find(:all).each_with_index {|tracker, i| tracker.update_attribute(:position, i+1)}
+ end
+
+ def self.down
+ remove_column :trackers, :position
+ end
+end
diff --git a/doc/CHANGELOG b/doc/CHANGELOG
index 66d513e65..23e0f6c31 100644
--- a/doc/CHANGELOG
+++ b/doc/CHANGELOG
@@ -11,7 +11,7 @@ http://redmine.rubyforge.org/
* settings are now stored in the database and editable through the application in: Admin -> Settings (config_custom.rb is no longer used)
* mail notifications added when a document, a file or an attachment is added
* tooltips added on Gantt chart and calender to view the details of the issues
-* ability to set the sort order for roles, issue statuses
+* ability to set the sort order for roles, trackers, issue statuses
* added missing fields to csv export: priority, start date, due date, done ratio
* all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)
* added back "fixed version" field on issue screen and in filters