##// END OF EJS Templates
Moves a method to the appropriate helper....
Jean-Philippe Lang -
r4167:a6f891d1b184
parent child
Show More
@@ -1,24 +1,51
1 1 # redMine - project management software
2 2 # Copyright (C) 2006 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 module GanttHelper
19
20 def gantt_zoom_link(gantt, in_or_out)
21 img_attributes = {:style => 'height:1.4em; width:1.4em; margin-left: 3px;'} # em for accessibility
22
23 case in_or_out
24 when :in
25 if gantt.zoom < 4
26 link_to_remote(l(:text_zoom_in) + image_tag('zoom_in.png', img_attributes.merge(:alt => l(:text_zoom_in))),
27 {:url => gantt.params.merge(:zoom => (gantt.zoom+1)), :method => :get, :update => 'content'},
28 {:href => url_for(gantt.params.merge(:zoom => (gantt.zoom+1)))})
29 else
30 l(:text_zoom_in) +
31 image_tag('zoom_in_g.png', img_attributes.merge(:alt => l(:text_zoom_in)))
32 end
33
34 when :out
35 if gantt.zoom > 1
36 link_to_remote(l(:text_zoom_out) + image_tag('zoom_out.png', img_attributes.merge(:alt => l(:text_zoom_out))),
37 {:url => gantt.params.merge(:zoom => (gantt.zoom-1)), :method => :get, :update => 'content'},
38 {:href => url_for(gantt.params.merge(:zoom => (gantt.zoom-1)))})
39 else
40 l(:text_zoom_out) +
41 image_tag('zoom_out_g.png', img_attributes.merge(:alt => l(:text_zoom_out)))
42 end
43 end
44 end
45
19 46 def number_of_issues_on_versions(gantt)
20 47 versions = gantt.events.collect {|event| (event.is_a? Version) ? event : nil}.compact
21 48
22 49 versions.sum {|v| v.fixed_issues.for_gantt.with_query(@query).count}
23 50 end
24 51 end
@@ -1,275 +1,249
1 1 # redMine - project management software
2 2 # Copyright (C) 2006 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 module IssuesHelper
19 19 include ApplicationHelper
20 20
21 21 def issue_list(issues, &block)
22 22 ancestors = []
23 23 issues.each do |issue|
24 24 while (ancestors.any? && !issue.is_descendant_of?(ancestors.last))
25 25 ancestors.pop
26 26 end
27 27 yield issue, ancestors.size
28 28 ancestors << issue unless issue.leaf?
29 29 end
30 30 end
31 31
32 32 # Renders a HTML/CSS tooltip
33 33 #
34 34 # To use, a trigger div is needed. This is a div with the class of "tooltip"
35 35 # that contains this method wrapped in a span with the class of "tip"
36 36 #
37 37 # <div class="tooltip"><%= link_to_issue(issue) %>
38 38 # <span class="tip"><%= render_issue_tooltip(issue) %></span>
39 39 # </div>
40 40 #
41 41 def render_issue_tooltip(issue)
42 42 @cached_label_status ||= l(:field_status)
43 43 @cached_label_start_date ||= l(:field_start_date)
44 44 @cached_label_due_date ||= l(:field_due_date)
45 45 @cached_label_assigned_to ||= l(:field_assigned_to)
46 46 @cached_label_priority ||= l(:field_priority)
47 47 @cached_label_project ||= l(:field_project)
48 48
49 49 link_to_issue(issue) + "<br /><br />" +
50 50 "<strong>#{@cached_label_project}</strong>: #{link_to_project(issue.project)}<br />" +
51 51 "<strong>#{@cached_label_status}</strong>: #{issue.status.name}<br />" +
52 52 "<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />" +
53 53 "<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />" +
54 54 "<strong>#{@cached_label_assigned_to}</strong>: #{issue.assigned_to}<br />" +
55 55 "<strong>#{@cached_label_priority}</strong>: #{issue.priority.name}"
56 56 end
57 57
58 58 def render_issue_subject_with_tree(issue)
59 59 s = ''
60 60 issue.ancestors.each do |ancestor|
61 61 s << '<div>' + content_tag('p', link_to_issue(ancestor))
62 62 end
63 63 s << '<div>' + content_tag('h3', h(issue.subject))
64 64 s << '</div>' * (issue.ancestors.size + 1)
65 65 s
66 66 end
67 67
68 68 def render_descendants_tree(issue)
69 69 s = '<form><table class="list issues">'
70 70 issue_list(issue.descendants.sort_by(&:lft)) do |child, level|
71 71 s << content_tag('tr',
72 72 content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') +
73 73 content_tag('td', link_to_issue(child, :truncate => 60), :class => 'subject') +
74 74 content_tag('td', h(child.status)) +
75 75 content_tag('td', link_to_user(child.assigned_to)) +
76 76 content_tag('td', progress_bar(child.done_ratio, :width => '80px')),
77 77 :class => "issue issue-#{child.id} hascontextmenu #{level > 0 ? "idnt idnt-#{level}" : nil}")
78 78 end
79 79 s << '</form></table>'
80 80 s
81 81 end
82 82
83 83 def render_custom_fields_rows(issue)
84 84 return if issue.custom_field_values.empty?
85 85 ordered_values = []
86 86 half = (issue.custom_field_values.size / 2.0).ceil
87 87 half.times do |i|
88 88 ordered_values << issue.custom_field_values[i]
89 89 ordered_values << issue.custom_field_values[i + half]
90 90 end
91 91 s = "<tr>\n"
92 92 n = 0
93 93 ordered_values.compact.each do |value|
94 94 s << "</tr>\n<tr>\n" if n > 0 && (n % 2) == 0
95 95 s << "\t<th>#{ h(value.custom_field.name) }:</th><td>#{ simple_format_without_paragraph(h(show_value(value))) }</td>\n"
96 96 n += 1
97 97 end
98 98 s << "</tr>\n"
99 99 s
100 100 end
101 101
102 102 def sidebar_queries
103 103 unless @sidebar_queries
104 104 # User can see public queries and his own queries
105 105 visible = ARCondition.new(["is_public = ? OR user_id = ?", true, (User.current.logged? ? User.current.id : 0)])
106 106 # Project specific queries and global queries
107 107 visible << (@project.nil? ? ["project_id IS NULL"] : ["project_id IS NULL OR project_id = ?", @project.id])
108 108 @sidebar_queries = Query.find(:all,
109 109 :select => 'id, name',
110 110 :order => "name ASC",
111 111 :conditions => visible.conditions)
112 112 end
113 113 @sidebar_queries
114 114 end
115 115
116 116 def show_detail(detail, no_html=false)
117 117 case detail.property
118 118 when 'attr'
119 119 field = detail.prop_key.to_s.gsub(/\_id$/, "")
120 120 label = l(("field_" + field).to_sym)
121 121 case
122 122 when ['due_date', 'start_date'].include?(detail.prop_key)
123 123 value = format_date(detail.value.to_date) if detail.value
124 124 old_value = format_date(detail.old_value.to_date) if detail.old_value
125 125
126 126 when ['project_id', 'status_id', 'tracker_id', 'assigned_to_id', 'priority_id', 'category_id', 'fixed_version_id'].include?(detail.prop_key)
127 127 value = find_name_by_reflection(field, detail.value)
128 128 old_value = find_name_by_reflection(field, detail.old_value)
129 129
130 130 when detail.prop_key == 'estimated_hours'
131 131 value = "%0.02f" % detail.value.to_f unless detail.value.blank?
132 132 old_value = "%0.02f" % detail.old_value.to_f unless detail.old_value.blank?
133 133
134 134 when detail.prop_key == 'parent_id'
135 135 label = l(:field_parent_issue)
136 136 value = "##{detail.value}" unless detail.value.blank?
137 137 old_value = "##{detail.old_value}" unless detail.old_value.blank?
138 138 end
139 139 when 'cf'
140 140 custom_field = CustomField.find_by_id(detail.prop_key)
141 141 if custom_field
142 142 label = custom_field.name
143 143 value = format_value(detail.value, custom_field.field_format) if detail.value
144 144 old_value = format_value(detail.old_value, custom_field.field_format) if detail.old_value
145 145 end
146 146 when 'attachment'
147 147 label = l(:label_attachment)
148 148 end
149 149 call_hook(:helper_issues_show_detail_after_setting, {:detail => detail, :label => label, :value => value, :old_value => old_value })
150 150
151 151 label ||= detail.prop_key
152 152 value ||= detail.value
153 153 old_value ||= detail.old_value
154 154
155 155 unless no_html
156 156 label = content_tag('strong', label)
157 157 old_value = content_tag("i", h(old_value)) if detail.old_value
158 158 old_value = content_tag("strike", old_value) if detail.old_value and (!detail.value or detail.value.empty?)
159 159 if detail.property == 'attachment' && !value.blank? && a = Attachment.find_by_id(detail.prop_key)
160 160 # Link to the attachment if it has not been removed
161 161 value = link_to_attachment(a)
162 162 else
163 163 value = content_tag("i", h(value)) if value
164 164 end
165 165 end
166 166
167 167 if !detail.value.blank?
168 168 case detail.property
169 169 when 'attr', 'cf'
170 170 if !detail.old_value.blank?
171 171 l(:text_journal_changed, :label => label, :old => old_value, :new => value)
172 172 else
173 173 l(:text_journal_set_to, :label => label, :value => value)
174 174 end
175 175 when 'attachment'
176 176 l(:text_journal_added, :label => label, :value => value)
177 177 end
178 178 else
179 179 l(:text_journal_deleted, :label => label, :old => old_value)
180 180 end
181 181 end
182 182
183 183 # Find the name of an associated record stored in the field attribute
184 184 def find_name_by_reflection(field, id)
185 185 association = Issue.reflect_on_association(field.to_sym)
186 186 if association
187 187 record = association.class_name.constantize.find_by_id(id)
188 188 return record.name if record
189 189 end
190 190 end
191 191
192 192 def issues_to_csv(issues, project = nil)
193 193 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
194 194 decimal_separator = l(:general_csv_decimal_separator)
195 195 export = FCSV.generate(:col_sep => l(:general_csv_separator)) do |csv|
196 196 # csv header fields
197 197 headers = [ "#",
198 198 l(:field_status),
199 199 l(:field_project),
200 200 l(:field_tracker),
201 201 l(:field_priority),
202 202 l(:field_subject),
203 203 l(:field_assigned_to),
204 204 l(:field_category),
205 205 l(:field_fixed_version),
206 206 l(:field_author),
207 207 l(:field_start_date),
208 208 l(:field_due_date),
209 209 l(:field_done_ratio),
210 210 l(:field_estimated_hours),
211 211 l(:field_parent_issue),
212 212 l(:field_created_on),
213 213 l(:field_updated_on)
214 214 ]
215 215 # Export project custom fields if project is given
216 216 # otherwise export custom fields marked as "For all projects"
217 217 custom_fields = project.nil? ? IssueCustomField.for_all : project.all_issue_custom_fields
218 218 custom_fields.each {|f| headers << f.name}
219 219 # Description in the last column
220 220 headers << l(:field_description)
221 221 csv << headers.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
222 222 # csv lines
223 223 issues.each do |issue|
224 224 fields = [issue.id,
225 225 issue.status.name,
226 226 issue.project.name,
227 227 issue.tracker.name,
228 228 issue.priority.name,
229 229 issue.subject,
230 230 issue.assigned_to,
231 231 issue.category,
232 232 issue.fixed_version,
233 233 issue.author.name,
234 234 format_date(issue.start_date),
235 235 format_date(issue.due_date),
236 236 issue.done_ratio,
237 237 issue.estimated_hours.to_s.gsub('.', decimal_separator),
238 238 issue.parent_id,
239 239 format_time(issue.created_on),
240 240 format_time(issue.updated_on)
241 241 ]
242 242 custom_fields.each {|f| fields << show_value(issue.custom_value_for(f)) }
243 243 fields << issue.description
244 244 csv << fields.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
245 245 end
246 246 end
247 247 export
248 248 end
249
250 def gantt_zoom_link(gantt, in_or_out)
251 img_attributes = {:style => 'height:1.4em; width:1.4em; margin-left: 3px;'} # em for accessibility
252
253 case in_or_out
254 when :in
255 if gantt.zoom < 4
256 link_to_remote(l(:text_zoom_in) + image_tag('zoom_in.png', img_attributes.merge(:alt => l(:text_zoom_in))),
257 {:url => gantt.params.merge(:zoom => (gantt.zoom+1)), :method => :get, :update => 'content'},
258 {:href => url_for(gantt.params.merge(:zoom => (gantt.zoom+1)))})
259 else
260 l(:text_zoom_in) +
261 image_tag('zoom_in_g.png', img_attributes.merge(:alt => l(:text_zoom_in)))
262 end
263
264 when :out
265 if gantt.zoom > 1
266 link_to_remote(l(:text_zoom_out) + image_tag('zoom_out.png', img_attributes.merge(:alt => l(:text_zoom_out))),
267 {:url => gantt.params.merge(:zoom => (gantt.zoom-1)), :method => :get, :update => 'content'},
268 {:href => url_for(gantt.params.merge(:zoom => (gantt.zoom-1)))})
269 else
270 l(:text_zoom_out) +
271 image_tag('zoom_out_g.png', img_attributes.merge(:alt => l(:text_zoom_out)))
272 end
273 end
274 end
275 249 end
General Comments 0
You need to be logged in to leave comments. Login now