summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-12-15 21:18:06 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-12-15 21:18:06 +0000
commitb48291ec63b58224df7b250ba62445dcbf5c835e (patch)
treead8ad421ae1b5a103fc23765f982ff8e32e06888 /lib
parent6a586c39e9f018d8bf787d5b78a54fa61e478cc6 (diff)
downloadredmine-b48291ec63b58224df7b250ba62445dcbf5c835e.tar.gz
redmine-b48291ec63b58224df7b250ba62445dcbf5c835e.zip
Adds an application setting to limit the number of items that can be displayed on the gantt chart (#6276).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4513 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/helpers/gantt.rb40
1 files changed, 35 insertions, 5 deletions
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb
index 79088dfe5..754d31de6 100644
--- a/lib/redmine/helpers/gantt.rb
+++ b/lib/redmine/helpers/gantt.rb
@@ -34,7 +34,7 @@ module Redmine
end
end
- attr_reader :year_from, :month_from, :date_from, :date_to, :zoom, :months
+ attr_reader :year_from, :month_from, :date_from, :date_to, :zoom, :months, :truncated, :max_rows
attr_accessor :query
attr_accessor :project
attr_accessor :view
@@ -71,6 +71,13 @@ module Redmine
@subjects = ''
@lines = ''
@number_of_rows = nil
+
+ @truncated = false
+ if options.has_key?(:max_rows)
+ @max_rows = options[:max_rows]
+ else
+ @max_rows = Setting.gantt_items_limit.blank? ? nil : Setting.gantt_items_limit.to_i
+ end
end
def common_params
@@ -94,13 +101,15 @@ module Redmine
def number_of_rows
return @number_of_rows if @number_of_rows
- if @project
- return number_of_rows_on_project(@project)
+ rows = if @project
+ number_of_rows_on_project(@project)
else
Project.roots.visible.has_module('issue_tracking').inject(0) do |total, project|
total += number_of_rows_on_project(project)
end
end
+
+ rows > @max_rows ? @max_rows : rows
end
# Returns the number of rows that will be used to list a project on
@@ -156,6 +165,7 @@ module Redmine
else
Project.roots.visible.has_module('issue_tracking').each do |project|
render_project(project, options)
+ break if abort?
end
end
@@ -176,22 +186,26 @@ module Redmine
options[:top] += options[:top_increment]
options[:indent] += options[:indent_increment]
@number_of_rows += 1
+ return if abort?
# Second, Issues without a version
- issues = project.issues.for_gantt.without_version.with_query(@query)
+ issues = project.issues.for_gantt.without_version.with_query(@query).all(:limit => current_limit)
sort_issues!(issues)
if issues
render_issues(issues, options)
+ return if abort?
end
# Third, Versions
project.versions.sort.each do |version|
render_version(version, options)
+ return if abort?
end
# Fourth, subprojects
project.children.visible.has_module('issue_tracking').each do |project|
render_project(project, options)
+ return if abort?
end
# Remove indent to hit the next sibling
@@ -205,6 +219,7 @@ module Redmine
options[:top] += options[:top_increment]
@number_of_rows += 1
+ return if abort?
end
end
@@ -215,13 +230,14 @@ module Redmine
options[:top] += options[:top_increment]
@number_of_rows += 1
+ return if abort?
# Remove the project requirement for Versions because it will
# restrict issues to only be on the current project. This
# ends up missing issues which are assigned to shared versions.
@query.project = nil if @query.project
- issues = version.fixed_issues.for_gantt.with_query(@query)
+ issues = version.fixed_issues.for_gantt.with_query(@query).all(:limit => current_limit)
if issues
sort_issues!(issues)
# Indent issues
@@ -961,6 +977,20 @@ module Redmine
end
end
+ def current_limit
+ if @max_rows
+ @max_rows - @number_of_rows
+ else
+ nil
+ end
+ end
+
+ def abort?
+ if @max_rows && @number_of_rows >= @max_rows
+ @truncated = true
+ end
+ end
+
def pdf_new_page?(options)
if options[:top] > 180
options[:pdf].Line(15, options[:top], PDF::TotalWidth, options[:top])