@trackers = @projects.map(&:trackers).inject{|memo,t| memo & t}
end
- @priorities = IssuePriority.all.reverse
+ @priorities = IssuePriority.active.reverse
@statuses = IssueStatus.find(:all, :order => 'position')
@back = back_url
@relations = @issue.relations.select {|r| r.other_issue(@issue) && r.other_issue(@issue).visible? }
@allowed_statuses = @issue.new_statuses_allowed_to(User.current)
@edit_allowed = User.current.allowed_to?(:edit_issues, @project)
- @priorities = IssuePriority.all
+ @priorities = IssuePriority.active
@time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project)
respond_to do |format|
format.html { render :template => 'issues/show.rhtml' }
# TODO: Refactor, not everything in here is needed by #edit
def update_issue_from_params
@allowed_statuses = @issue.new_statuses_allowed_to(User.current)
- @priorities = IssuePriority.all
+ @priorities = IssuePriority.active
@edit_allowed = User.current.allowed_to?(:edit_issues, @project)
@time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project)
@time_entry.attributes = params[:time_entry]
@issue.watcher_user_ids = params[:issue]['watcher_user_ids']
end
end
- @priorities = IssuePriority.all
+ @priorities = IssuePriority.active
@allowed_statuses = @issue.new_statuses_allowed_to(User.current, true)
end
<p>
<label><%= l(:field_priority) %></label>
- <%= select_tag('priority_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.all, :id, :name)) %>
+ <%= select_tag('priority_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.active, :id, :name)) %>
</p>
<p>
<% end %>
<p>
<label><%= l(:field_priority) %></label>
- <%= select_tag('issue[priority_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.all, :id, :name)) %>
+ <%= select_tag('issue[priority_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.active, :id, :name)) %>
</p>
<p>
<label><%= l(:field_assigned_to) %></label>
type: TimeEntryActivity
position: 4
active: false
+enumerations_015:
+ name: Inactive Priority
+ id: 15
+ type: IssuePriority
+ position: 6
+ active: false
assert_tag :tag => 'a', :content => 'Immediate',
:attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&issue%5Bpriority_id%5D=8',
:class => '' }
+ assert_no_tag :tag => 'a', :content => 'Inactive Priority'
# Versions
assert_tag :tag => 'a', :content => '2.0',
:attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&issue%5Bfixed_version_id%5D=3',
User.current = nil
end
+ def test_get_issue_moves_new
+ @request.session[:user_id] = 2
+ get :new, :id => 1
+
+ assert_tag :tag => 'option', :content => 'eCookbook',
+ :attributes => { :value => '1', :selected => 'selected' }
+ %w(new_tracker_id status_id priority_id assigned_to_id).each do |field|
+ assert_tag :tag => 'option', :content => '(No change)', :attributes => { :value => '' },
+ :parent => {:tag => 'select', :attributes => {:id => field}}
+ assert_no_tag :tag => 'option', :attributes => {:selected => 'selected'},
+ :parent => {:tag => 'select', :attributes => {:id => field}}
+ end
+
+ # Be sure we don't include inactive enumerations
+ assert ! IssuePriority.find(15).active?
+ assert_no_tag :option, :attributes => {:value => '15'},
+ :parent => {:tag => 'select', :attributes => {:id => 'priority_id'} }
+ end
+
def test_create_one_issue_to_another_project
@request.session[:user_id] = 2
post :create, :id => 1, :new_project_id => 2, :tracker_id => '', :assigned_to_id => '', :status_id => '', :start_date => '', :due_date => ''
:content => /Notes/ } }
end
+ def test_update_form_should_not_display_inactive_enumerations
+ @request.session[:user_id] = 2
+ get :show, :id => 1
+ assert_response :success
+
+ assert ! IssuePriority.find(15).active?
+ assert_no_tag :option, :attributes => {:value => '15'},
+ :parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} }
+ end
+
def test_show_should_deny_anonymous_access_without_permission
Role.anonymous.remove_permission!(:view_issues)
get :show, :id => 1
assert_tag :tag => 'input', :attributes => { :name => 'issue[custom_field_values][2]',
:value => 'Default string' }
+
+ # Be sure we don't display inactive IssuePriorities
+ assert ! IssuePriority.find(15).active?
+ assert_no_tag :option, :attributes => {:value => '15'},
+ :parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} }
end
def test_get_new_without_tracker_id
assert_template 'edit'
assert_not_nil assigns(:issue)
assert_equal Issue.find(1), assigns(:issue)
+
+ # Be sure we don't display inactive IssuePriorities
+ assert ! IssuePriority.find(15).active?
+ assert_no_tag :option, :attributes => {:value => '15'},
+ :parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} }
end
def test_get_edit_with_params
# System wide custom field
assert CustomField.find(1).is_for_all?
assert_tag :select, :attributes => {:name => 'issue[custom_field_values][1]'}
+
+ # Be sure we don't display inactive IssuePriorities
+ assert ! IssuePriority.find(15).active?
+ assert_no_tag :option, :attributes => {:value => '15'},
+ :parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} }
end
def test_get_bulk_edit_on_different_projects