From 98c7c179ca3fb614ba4544f1199eaaaae56c6524 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Fri, 17 Dec 2010 13:40:25 +0000 Subject: Gantt code cleanup. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4522 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/helpers/gantt.rb | 71 ++++++++------------------------------------ 1 file changed, 13 insertions(+), 58 deletions(-) (limited to 'lib') diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index ea0140c4d..2d22da537 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -435,65 +435,11 @@ module Redmine case options[:format] when :html - output = '' - i_left = ((version.start_date - self.date_from)*options[:zoom]).floor - # TODO: or version.fixed_issues.collect(&:start_date).min - start_date = version.fixed_issues.minimum('start_date') if version.fixed_issues.present? - start_date ||= self.date_from - start_left = ((start_date - self.date_from)*options[:zoom]).floor - - i_end_date = ((version.due_date <= self.date_to) ? version.due_date : self.date_to ) - i_done_date = start_date + ((version.due_date - start_date+1)* version.completed_pourcent/100).floor - i_done_date = (i_done_date <= self.date_from ? self.date_from : i_done_date ) - i_done_date = (i_done_date >= self.date_to ? self.date_to : i_done_date ) + coords = coordinates(version.fixed_issues.minimum('start_date'), version.due_date, version.completed_pourcent, options[:zoom]) + label = "#{h version } #{h version.completed_pourcent.to_i.to_s}%" + label = h("#{version.project} -") + label unless @project && @project == version.project + output = html_task(options[:top], coords, :css => "version task", :label => label, :markers => true) - i_late_date = [i_end_date, Date.today].min if start_date < Date.today - - i_width = (i_left - start_left + 1).floor - 2 # total width of the issue (- 2 for left and right borders) - d_width = ((i_done_date - start_date)*options[:zoom]).floor - 2 # done width - l_width = i_late_date ? ((i_late_date - start_date+1)*options[:zoom]).floor - 2 : 0 # delay width - - i_end = ((i_end_date - self.date_from) * options[:zoom]).floor # Ending pixel - - # Bar graphic - - # Make sure that negative i_left and i_width don't - # overflow the subject - if i_width > 0 && i_left <= options[:g_width] - output << "
 
" - end - if l_width > 0 && i_left <= options[:g_width] - output << "
 
" - end - if d_width > 0 && i_left <= options[:g_width] - output<< "
 
" - end - - - # Starting diamond - if start_left <= options[:g_width] && start_left > 0 - output << "
 
" - output << "
" - output << "
" - end - - # Ending diamond - # Don't show items too far ahead - if i_left <= options[:g_width] && i_end > 0 - output << "
 
" - end - - # Display the Version name and % - if i_end <= options[:g_width] - # Display the status even if it's floated off to the left - status_px = i_end + 12 # 12px for the diamond - status_px = 0 if status_px <= 0 - - output << "
" - output << h("#{version.project} -") unless @project && @project == version.project - output << "#{h version } #{h version.completed_pourcent.to_i.to_s}%" - output << "
" - end @lines << output output when :image @@ -1017,6 +963,15 @@ module Redmine output << "
 
" end end + # Renders the markers + if options[:markers] + if coords[:start] + output << "
 
" + end + if coords[:end] + output << "
 
" + end + end # Renders the label on the right if options[:label] output << "
" -- cgit v1.2.3