@@ -5,12 +5,12 | |||||
5 | # modify it under the terms of the GNU General Public License |
|
5 | # modify it under the terms of the GNU General Public License | |
6 | # as published by the Free Software Foundation; either version 2 |
|
6 | # as published by the Free Software Foundation; either version 2 | |
7 | # of the License, or (at your option) any later version. |
|
7 | # of the License, or (at your option) any later version. | |
8 |
# |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 |
# |
|
13 | # | |
14 | # You should have received a copy of the GNU General Public License |
|
14 | # You should have received a copy of the GNU General Public License | |
15 | # along with this program; if not, write to the Free Software |
|
15 | # along with this program; if not, write to the Free Software | |
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
@@ -18,10 +18,10 | |||||
18 | module VersionsHelper |
|
18 | module VersionsHelper | |
19 |
|
19 | |||
20 | STATUS_BY_CRITERIAS = %w(category tracker status priority author assigned_to) |
|
20 | STATUS_BY_CRITERIAS = %w(category tracker status priority author assigned_to) | |
21 |
|
21 | |||
22 | def render_issue_status_by(version, criteria) |
|
22 | def render_issue_status_by(version, criteria) | |
23 | criteria = 'category' unless STATUS_BY_CRITERIAS.include?(criteria) |
|
23 | criteria = 'category' unless STATUS_BY_CRITERIAS.include?(criteria) | |
24 |
|
24 | |||
25 | h = Hash.new {|k,v| k[v] = [0, 0]} |
|
25 | h = Hash.new {|k,v| k[v] = [0, 0]} | |
26 | begin |
|
26 | begin | |
27 | # Total issue count |
|
27 | # Total issue count | |
@@ -36,10 +36,10 module VersionsHelper | |||||
36 | end |
|
36 | end | |
37 | counts = h.keys.compact.sort.collect {|k| {:group => k, :total => h[k][0], :open => h[k][1], :closed => (h[k][0] - h[k][1])}} |
|
37 | counts = h.keys.compact.sort.collect {|k| {:group => k, :total => h[k][0], :open => h[k][1], :closed => (h[k][0] - h[k][1])}} | |
38 | max = counts.collect {|c| c[:total]}.max |
|
38 | max = counts.collect {|c| c[:total]}.max | |
39 |
|
39 | |||
40 | render :partial => 'issue_counts', :locals => {:version => version, :criteria => criteria, :counts => counts, :max => max} |
|
40 | render :partial => 'issue_counts', :locals => {:version => version, :criteria => criteria, :counts => counts, :max => max} | |
41 | end |
|
41 | end | |
42 |
|
42 | |||
43 | def status_by_options_for_select(value) |
|
43 | def status_by_options_for_select(value) | |
44 | options_for_select(STATUS_BY_CRITERIAS.collect {|criteria| [l("field_#{criteria}".to_sym), criteria]}, value) |
|
44 | options_for_select(STATUS_BY_CRITERIAS.collect {|criteria| [l("field_#{criteria}".to_sym), criteria]}, value) | |
45 | end |
|
45 | end |
General Comments 0
You need to be logged in to leave comments.
Login now