##// END OF EJS Templates
Merged r3865 and r3866 from trunk....
Jean-Philippe Lang -
r3754:a84920ca7016 0.9-stable
parent child
Show More
@@ -1,78 +1,81
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
2 # Copyright (C) 2006 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
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.
17
17
18 class VersionsController < ApplicationController
18 class VersionsController < ApplicationController
19 menu_item :roadmap
19 menu_item :roadmap
20 before_filter :find_version, :except => :close_completed
20 before_filter :find_version, :except => :close_completed
21 before_filter :find_project, :only => :close_completed
21 before_filter :find_project, :only => :close_completed
22 before_filter :authorize
22 before_filter :authorize
23
23
24 helper :custom_fields
24 helper :custom_fields
25 helper :projects
25 helper :projects
26
26
27 def show
27 def show
28 @issues = @version.fixed_issues.visible.find(:all,
29 :include => [:status, :tracker, :priority],
30 :order => "#{Tracker.table_name}.position, #{Issue.table_name}.id")
28 end
31 end
29
32
30 def edit
33 def edit
31 if request.post? && params[:version]
34 if request.post? && params[:version]
32 attributes = params[:version].dup
35 attributes = params[:version].dup
33 attributes.delete('sharing') unless @version.allowed_sharings.include?(attributes['sharing'])
36 attributes.delete('sharing') unless @version.allowed_sharings.include?(attributes['sharing'])
34 if @version.update_attributes(attributes)
37 if @version.update_attributes(attributes)
35 flash[:notice] = l(:notice_successful_update)
38 flash[:notice] = l(:notice_successful_update)
36 redirect_to :controller => 'projects', :action => 'settings', :tab => 'versions', :id => @project
39 redirect_to :controller => 'projects', :action => 'settings', :tab => 'versions', :id => @project
37 end
40 end
38 end
41 end
39 end
42 end
40
43
41 def close_completed
44 def close_completed
42 if request.post?
45 if request.post?
43 @project.close_completed_versions
46 @project.close_completed_versions
44 end
47 end
45 redirect_to :controller => 'projects', :action => 'settings', :tab => 'versions', :id => @project
48 redirect_to :controller => 'projects', :action => 'settings', :tab => 'versions', :id => @project
46 end
49 end
47
50
48 def destroy
51 def destroy
49 if @version.fixed_issues.empty?
52 if @version.fixed_issues.empty?
50 @version.destroy
53 @version.destroy
51 redirect_to :controller => 'projects', :action => 'settings', :tab => 'versions', :id => @project
54 redirect_to :controller => 'projects', :action => 'settings', :tab => 'versions', :id => @project
52 else
55 else
53 flash[:error] = l(:notice_unable_delete_version)
56 flash[:error] = l(:notice_unable_delete_version)
54 redirect_to :controller => 'projects', :action => 'settings', :tab => 'versions', :id => @project
57 redirect_to :controller => 'projects', :action => 'settings', :tab => 'versions', :id => @project
55 end
58 end
56 end
59 end
57
60
58 def status_by
61 def status_by
59 respond_to do |format|
62 respond_to do |format|
60 format.html { render :action => 'show' }
63 format.html { render :action => 'show' }
61 format.js { render(:update) {|page| page.replace_html 'status_by', render_issue_status_by(@version, params[:status_by])} }
64 format.js { render(:update) {|page| page.replace_html 'status_by', render_issue_status_by(@version, params[:status_by])} }
62 end
65 end
63 end
66 end
64
67
65 private
68 private
66 def find_version
69 def find_version
67 @version = Version.find(params[:id])
70 @version = Version.find(params[:id])
68 @project = @version.project
71 @project = @version.project
69 rescue ActiveRecord::RecordNotFound
72 rescue ActiveRecord::RecordNotFound
70 render_404
73 render_404
71 end
74 end
72
75
73 def find_project
76 def find_project
74 @project = Project.find(params[:project_id])
77 @project = Project.find(params[:project_id])
75 rescue ActiveRecord::RecordNotFound
78 rescue ActiveRecord::RecordNotFound
76 render_404
79 render_404
77 end
80 end
78 end
81 end
@@ -1,51 +1,48
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to_if_authorized l(:button_edit), {:controller => 'versions', :action => 'edit', :id => @version}, :class => 'icon icon-edit' %>
2 <%= link_to_if_authorized l(:button_edit), {:controller => 'versions', :action => 'edit', :id => @version}, :class => 'icon icon-edit' %>
3 <%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %>
3 <%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %>
4 </div>
4 </div>
5
5
6 <h2><%= h(@version.name) %></h2>
6 <h2><%= h(@version.name) %></h2>
7
7
8 <div id="version-summary">
8 <div id="version-summary">
9 <% if @version.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %>
9 <% if @version.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %>
10 <fieldset><legend><%= l(:label_time_tracking) %></legend>
10 <fieldset><legend><%= l(:label_time_tracking) %></legend>
11 <table>
11 <table>
12 <tr>
12 <tr>
13 <td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
13 <td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
14 <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
14 <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
15 </tr>
15 </tr>
16 <% if User.current.allowed_to?(:view_time_entries, @project) %>
16 <% if User.current.allowed_to?(:view_time_entries, @project) %>
17 <tr>
17 <tr>
18 <td width="130px" align="right"><%= l(:label_spent_time) %></td>
18 <td width="130px" align="right"><%= l(:label_spent_time) %></td>
19 <td width="240px" class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
19 <td width="240px" class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
20 </tr>
20 </tr>
21 <% end %>
21 <% end %>
22 </table>
22 </table>
23 </fieldset>
23 </fieldset>
24 <% end %>
24 <% end %>
25
25
26 <div id="status_by">
26 <div id="status_by">
27 <%= render_issue_status_by(@version, params[:status_by]) if @version.fixed_issues.count > 0 %>
27 <%= render_issue_status_by(@version, params[:status_by]) if @version.fixed_issues.count > 0 %>
28 </div>
28 </div>
29 </div>
29 </div>
30
30
31 <div id="roadmap">
31 <div id="roadmap">
32 <%= render :partial => 'versions/overview', :locals => {:version => @version} %>
32 <%= render :partial => 'versions/overview', :locals => {:version => @version} %>
33 <%= render(:partial => "wiki/content", :locals => {:content => @version.wiki_page.content}) if @version.wiki_page %>
33 <%= render(:partial => "wiki/content", :locals => {:content => @version.wiki_page.content}) if @version.wiki_page %>
34
34
35 <% issues = @version.fixed_issues.find(:all,
35 <% if @issues.present? %>
36 :include => [:status, :tracker, :priority],
37 :order => "#{Tracker.table_name}.position, #{Issue.table_name}.id") %>
38 <% if issues.size > 0 %>
39 <fieldset class="related-issues"><legend><%= l(:label_related_issues) %></legend>
36 <fieldset class="related-issues"><legend><%= l(:label_related_issues) %></legend>
40 <ul>
37 <ul>
41 <% issues.each do |issue| -%>
38 <% @issues.each do |issue| -%>
42 <li><%= link_to_issue(issue) %></li>
39 <li><%= link_to_issue(issue) %></li>
43 <% end -%>
40 <% end -%>
44 </ul>
41 </ul>
45 </fieldset>
42 </fieldset>
46 <% end %>
43 <% end %>
47 </div>
44 </div>
48
45
49 <%= call_hook :view_versions_show_bottom, :version => @version %>
46 <%= call_hook :view_versions_show_bottom, :version => @version %>
50
47
51 <% html_title @version.name %>
48 <% html_title @version.name %>
General Comments 0
You need to be logged in to leave comments. Login now