Skip to content

Commit

Permalink
Adds a "visible" option on User and Project custom fields (#1738).
Browse files Browse the repository at this point in the history
If set to false, the custom field won't be display on user profile/project overview.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4382 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
jplang committed Nov 7, 2010
1 parent 3b01ea9 commit 475530e
Show file tree
Hide file tree
Showing 15 changed files with 62 additions and 7 deletions.
1 change: 0 additions & 1 deletion app/controllers/users_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def index

def show
@user = User.find(params[:id])
@custom_values = @user.custom_values

# show projects based on current user visibility
@memberships = @user.memberships.all(:conditions => Project.visible_by(User.current))
Expand Down
4 changes: 4 additions & 0 deletions app/models/custom_value.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ def editable?
custom_field.editable?
end

def visible?
custom_field.visible?
end

def required?
custom_field.is_required?
end
Expand Down
2 changes: 2 additions & 0 deletions app/views/custom_fields/_form.rhtml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,12 @@ when "IssueCustomField" %>

<% when "UserCustomField" %>
<p><%= f.check_box :is_required %></p>
<p><%= f.check_box :visible %></p>
<p><%= f.check_box :editable %></p>

<% when "ProjectCustomField" %>
<p><%= f.check_box :is_required %></p>
<p><%= f.check_box :visible %></p>
<p><%= f.check_box :searchable %></p>

<% when "TimeEntryCustomField" %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/projects/index.xml.builder
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ xml.projects :type => 'array' do
xml.description project.description
xml.parent(:id => project.parent_id, :name => project.parent.name) unless project.parent.nil?
xml.custom_fields do
project.custom_field_values.each do |custom_value|
project.visible_custom_field_values.each do |custom_value|
xml.custom_field custom_value.value, :id => custom_value.custom_field_id, :name => custom_value.custom_field.name
end
end unless project.custom_field_values.empty?
Expand Down
2 changes: 1 addition & 1 deletion app/views/projects/show.rhtml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<li><%=l(:label_subproject_plural)%>:
<%= @subprojects.collect{|p| link_to(h(p), :action => 'show', :id => p)}.join(", ") %></li>
<% end %>
<% @project.custom_values.each do |custom_value| %>
<% @project.visible_custom_field_values.each do |custom_value| %>
<% if !custom_value.value.blank? %>
<li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
<% end %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/projects/show.xml.builder
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ xml.project do
xml.homepage @project.homepage

xml.custom_fields do
@project.custom_field_values.each do |custom_value|
@project.visible_custom_field_values.each do |custom_value|
xml.custom_field custom_value.value, :id => custom_value.custom_field_id, :name => custom_value.custom_field.name
end
end unless @project.custom_field_values.empty?
Expand Down
2 changes: 1 addition & 1 deletion app/views/users/show.rhtml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<% unless @user.pref.hide_mail %>
<li><%=l(:field_mail)%>: <%= mail_to(h(@user.mail), nil, :encode => 'javascript') %></li>
<% end %>
<% for custom_value in @custom_values %>
<% @user.visible_custom_field_values.each do |custom_value| %>
<% if !custom_value.value.blank? %>
<li><%=h custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
<% end %>
Expand Down
1 change: 1 addition & 0 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ en:
field_member_of_group: "Assignee's group"
field_assigned_to_role: "Assignee's role"
field_text: Text field
field_visible: Visible

setting_app_title: Application title
setting_app_subtitle: Application subtitle
Expand Down
2 changes: 2 additions & 0 deletions config/locales/fr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ fr:
field_sharing: Partage
field_active: Actif
field_parent_issue: Tâche parente
field_visible: Visible

setting_app_title: Titre de l'application
setting_app_subtitle: Sous-titre de l'application
Expand Down Expand Up @@ -943,3 +944,4 @@ fr:
field_member_of_group: Groupe de l'assigné
field_assigned_to_role: Rôle de l'assigné
field_start_date: Start date
setting_emails_header: Emails header
9 changes: 9 additions & 0 deletions db/migrate/20101107130441_add_custom_fields_visible.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class AddCustomFieldsVisible < ActiveRecord::Migration
def self.up
add_column :custom_fields, :visible, :boolean, :null => false, :default => true
end

def self.down
remove_column :custom_fields, :visible
end
end
2 changes: 1 addition & 1 deletion test/fixtures/custom_values.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ custom_values_003:
custom_field_id: 4
customized_id: 2
id: 3
value: ""
value: "01 42 50 00 00"
custom_values_004:
customized_type: Issue
custom_field_id: 2
Expand Down
12 changes: 12 additions & 0 deletions test/functional/projects_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,18 @@ def test_show_by_identifier
assert_template 'show'
assert_not_nil assigns(:project)
assert_equal Project.find_by_identifier('ecookbook'), assigns(:project)

assert_tag 'li', :content => /Development status/
end

def test_show_should_not_display_hidden_custom_fields
ProjectCustomField.find_by_name('Development status').update_attribute :visible, false
get :show, :id => 'ecookbook'
assert_response :success
assert_template 'show'
assert_not_nil assigns(:project)

assert_no_tag 'li', :content => /Development status/
end

def test_show_should_not_fail_when_custom_values_are_nil
Expand Down
15 changes: 14 additions & 1 deletion test/functional/users_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class UsersController; def rescue_action(e) raise e end; end
class UsersControllerTest < ActionController::TestCase
include Redmine::I18n

fixtures :users, :projects, :members, :member_roles, :roles, :auth_sources
fixtures :users, :projects, :members, :member_roles, :roles, :auth_sources, :custom_fields, :custom_values

def setup
@controller = UsersController.new
Expand Down Expand Up @@ -65,6 +65,19 @@ def test_show
assert_response :success
assert_template 'show'
assert_not_nil assigns(:user)

assert_tag 'li', :content => /Phone number/
end

def test_show_should_not_display_hidden_custom_fields
@request.session[:user_id] = nil
UserCustomField.find_by_name('Phone number').update_attribute :visible, false
get :show, :id => 2
assert_response :success
assert_template 'show'
assert_not_nil assigns(:user)

assert_no_tag 'li', :content => /Phone number/
end

def test_show_should_not_fail_when_custom_values_are_nil
Expand Down
9 changes: 9 additions & 0 deletions test/integration/api_test/projects_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ def test_show
get '/projects/1.xml'
assert_response :success
assert_equal 'application/xml', @response.content_type
assert_tag 'custom_field', :attributes => {:name => 'Development status'}, :content => 'Stable'
end

def test_show_should_not_display_hidden_custom_fields
ProjectCustomField.find_by_name('Development status').update_attribute :visible, false
get '/projects/1.xml'
assert_response :success
assert_equal 'application/xml', @response.content_type
assert_no_tag 'custom_field', :attributes => {:name => 'Development status'}
end

def test_create
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ def custom_field_values
@custom_field_values ||= available_custom_fields.collect { |x| custom_values.detect { |v| v.custom_field == x } || custom_values.build(:custom_field => x, :value => nil) }
end

def visible_custom_field_values
custom_field_values.select(&:visible?)
end

def custom_field_values_changed?
@custom_field_values_changed == true
end
Expand Down

0 comments on commit 475530e

Please sign in to comment.