OSDN Git Service

Removed User#display_name (replaced by User#name).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 29 Jun 2007 17:27:27 +0000 (17:27 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 29 Jun 2007 17:27:27 +0000 (17:27 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@578 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb
app/models/member.rb
app/models/user.rb
app/views/account/show.rhtml
app/views/attachments/_links.rhtml
app/views/documents/show.rhtml
app/views/mailer/_issue.rhtml
app/views/news/show.rhtml
app/views/projects/_members.rhtml
app/views/projects/list_members.rhtml

index 0c2b6ed..3b6b19e 100644 (file)
@@ -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)
index 7b512de..2aa26d4 100644 (file)
@@ -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
index 569233d..a017b42 100644 (file)
@@ -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?
index 8061489..4f1bf45 100644 (file)
@@ -1,4 +1,4 @@
-<h2><%= @user.display_name %></h2>
+<h2><%=h @user.name %></h2>
 
 <p>
 <%= mail_to @user.mail unless @user.pref.hide_mail %>
index 93d6b2a..afae91a 100644 (file)
@@ -3,7 +3,7 @@
   <p><%= link_to attachment.filename, {:controller => 'attachments', :action => 'download', :id => attachment }, :class => 'icon icon-attachment' %>
   (<%= number_to_human_size attachment.filesize %>)
   <% unless options[:no_author] %>
-    <em><%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %></em>
+    <em><%= attachment.author.name %>, <%= format_date(attachment.created_on) %></em>
   <% 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 %>
index 4bf09f3..2dc76ea 100644 (file)
@@ -19,7 +19,7 @@
         </div>
         <%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %>
         (<%= number_to_human_size attachment.filesize %>)<br />
-        <em><%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %></em><br />
+        <em><%= attachment.author.name %>, <%= format_date(attachment.created_on) %></em><br />
         <%= lwr(:label_download, attachment.downloads) %>
     </li>
 <% end %>
index bf17132..7caf855 100644 (file)
@@ -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 %>
 
index 30e746a..df3c027 100644 (file)
@@ -6,7 +6,7 @@
 <h2><%=h @news.title %></h2>
 
 <p><em><% unless @news.summary.empty? %><%=h @news.summary %><br /><% end %>
-<%= @news.author.display_name %>, <%= format_time(@news.created_on) %></em></p>
+<%= @news.author.name %>, <%= format_time(@news.created_on) %></em></p>
 <br />
 <%= textilizable(@news.description) %>
 <br />
index 01430d1..1924e43 100644 (file)
@@ -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? %>
        <tr class="<%= cycle 'odd', 'even' %>">
-       <td><%= member.user.display_name %></td>
+       <td><%= member.name %></td>
     <td align="center">
     <% if authorize_for('members', 'edit') %>
       <% remote_form_for(:member, member, :url => {:controller => 'members', :action => 'edit', :id => member}, :method => :post) do |f| %>
index c4d3ec4..fcfb4f7 100644 (file)
@@ -7,7 +7,7 @@
 <h3><%= role.name %></h3>
 <ul>
 <% members[role].each do |m| %>
-<li><%= link_to m.user.display_name, :controller => 'account', :action => 'show', :id => m.user %> (<%= format_date m.created_on %>)</li>
+<li><%= link_to m.name, :controller => 'account', :action => 'show', :id => m.user %> (<%= format_date m.created_on %>)</li>
 <% end %>
 </ul>
 <% end %>