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 = ''
<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 %>