Browse Source

Truncate comments on changeset list.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1900 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/0.8.0-RC1
Jean-Philippe Lang 15 years ago
parent
commit
9131cdf6b9
2 changed files with 7 additions and 1 deletions
  1. 6
    0
      app/helpers/repositories_helper.rb
  2. 1
    1
      app/views/repositories/_revisions.rhtml

+ 6
- 0
app/helpers/repositories_helper.rb View File

@@ -22,6 +22,12 @@ module RepositoriesHelper
txt.to_s[0,8]
end
def truncate_at_line_break(text, length = 255)
if text
text.gsub(%r{^(.{#{length}}[^\n]*)\n.+$}m, '\\1...')
end
end
def render_properties(properties)
unless properties.nil? || properties.empty?
content = ''

+ 1
- 1
app/views/repositories/_revisions.rhtml View File

@@ -18,7 +18,7 @@
<td class="checkbox"><%= radio_button_tag('rev_to', changeset.revision, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %></td>
<td class="committed_on"><%= format_time(changeset.committed_on) %></td>
<td class="author"><%=h changeset.committer.to_s.split('<').first %></td>
<td class="comments"><%= textilizable(changeset.comments) %></td>
<td class="comments"><%= textilizable(truncate_at_line_break(changeset.comments)) %></td>
</tr>
<% line_num += 1 %>
<% end %>

Loading…
Cancel
Save