From 65be9d3c86f5ed5ff77428a3b7842cebe79848d0 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Fri, 29 Jun 2007 17:27:27 +0000 Subject: [PATCH] Removed User#display_name (replaced by User#name). git-svn-id: http://redmine.rubyforge.org/svn/trunk@578 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/application_helper.rb | 2 +- app/models/member.rb | 2 +- app/models/user.rb | 6 +----- app/views/account/show.rhtml | 2 +- app/views/attachments/_links.rhtml | 2 +- app/views/documents/show.rhtml | 2 +- app/views/mailer/_issue.rhtml | 2 +- app/views/news/show.rhtml | 2 +- app/views/projects/_members.rhtml | 2 +- app/views/projects/list_members.rhtml | 2 +- 10 files changed, 10 insertions(+), 14 deletions(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 0c2b6edc..3b6b19e3 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -55,7 +55,7 @@ module ApplicationHelper # Display a link to user's account page def link_to_user(user) - link_to user.display_name, :controller => 'account', :action => 'show', :id => user + link_to user.name, :controller => 'account', :action => 'show', :id => user end def link_to_issue(issue) diff --git a/app/models/member.rb b/app/models/member.rb index 7b512de3..2aa26d42 100644 --- a/app/models/member.rb +++ b/app/models/member.rb @@ -24,7 +24,7 @@ class Member < ActiveRecord::Base validates_uniqueness_of :user_id, :scope => :project_id def name - self.user.display_name + self.user.name end def before_destroy diff --git a/app/models/user.rb b/app/models/user.rb index 569233d5..a017b428 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -101,12 +101,8 @@ class User < ActiveRecord::Base end # Return user's full name for display - def display_name - firstname + " " + lastname - end - def name - display_name + "#{firstname} #{lastname}" end def active? diff --git a/app/views/account/show.rhtml b/app/views/account/show.rhtml index 80614895..4f1bf45e 100644 --- a/app/views/account/show.rhtml +++ b/app/views/account/show.rhtml @@ -1,4 +1,4 @@ -

<%= @user.display_name %>

+

<%=h @user.name %>

<%= mail_to @user.mail unless @user.pref.hide_mail %> diff --git a/app/views/attachments/_links.rhtml b/app/views/attachments/_links.rhtml index 93d6b2a7..afae91a7 100644 --- a/app/views/attachments/_links.rhtml +++ b/app/views/attachments/_links.rhtml @@ -3,7 +3,7 @@

<%= link_to attachment.filename, {:controller => 'attachments', :action => 'download', :id => attachment }, :class => 'icon icon-attachment' %> (<%= number_to_human_size attachment.filesize %>) <% unless options[:no_author] %> - <%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %> + <%= attachment.author.name %>, <%= format_date(attachment.created_on) %> <% end %> <% if options[:delete_url] %> <%= link_to image_tag('delete.png'), options[:delete_url].update({:attachment_id => attachment}), :confirm => l(:text_are_you_sure), :method => :post %> diff --git a/app/views/documents/show.rhtml b/app/views/documents/show.rhtml index 4bf09f3d..2dc76ead 100644 --- a/app/views/documents/show.rhtml +++ b/app/views/documents/show.rhtml @@ -19,7 +19,7 @@ <%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %> (<%= number_to_human_size attachment.filesize %>)
- <%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %>
+ <%= attachment.author.name %>, <%= format_date(attachment.created_on) %>
<%= lwr(:label_download, attachment.downloads) %> <% end %> diff --git a/app/views/mailer/_issue.rhtml b/app/views/mailer/_issue.rhtml index bf17132e..7caf855f 100644 --- a/app/views/mailer/_issue.rhtml +++ b/app/views/mailer/_issue.rhtml @@ -1,5 +1,5 @@ <%=l(:label_issue)%> #<%= issue.id %> - <%= issue.subject %> -<%=l(:field_author)%>: <%= issue.author.display_name %> +<%=l(:field_author)%>: <%= issue.author.name %> <%=l(:field_assigned_to)%>: <%= issue.assigned_to ? issue.assigned_to.name : "-" %> <%=l(:field_status)%>: <%= issue.status.name %> diff --git a/app/views/news/show.rhtml b/app/views/news/show.rhtml index 30e746ae..df3c0279 100644 --- a/app/views/news/show.rhtml +++ b/app/views/news/show.rhtml @@ -6,7 +6,7 @@

<%=h @news.title %>

<% unless @news.summary.empty? %><%=h @news.summary %>
<% end %> -<%= @news.author.display_name %>, <%= format_time(@news.created_on) %>

+<%= @news.author.name %>, <%= format_time(@news.created_on) %>


<%= textilizable(@news.description) %>
diff --git a/app/views/projects/_members.rhtml b/app/views/projects/_members.rhtml index 01430d19..1924e430 100644 --- a/app/views/projects/_members.rhtml +++ b/app/views/projects/_members.rhtml @@ -12,7 +12,7 @@ <% @project.members.find(:all, :include => [:role, :user]).sort{|x,y| x.role.position <=> y.role.position}.each do |member| %> <% next if member.new_record? %> - <%= member.user.display_name %> + <%= member.name %> <% if authorize_for('members', 'edit') %> <% remote_form_for(:member, member, :url => {:controller => 'members', :action => 'edit', :id => member}, :method => :post) do |f| %> diff --git a/app/views/projects/list_members.rhtml b/app/views/projects/list_members.rhtml index c4d3ec46..fcfb4f7c 100644 --- a/app/views/projects/list_members.rhtml +++ b/app/views/projects/list_members.rhtml @@ -7,7 +7,7 @@

<%= role.name %>

<% end %>