<% diff = Redmine::UnifiedDiff.new( diff, :type => diff_type, :max_lines => Setting.diff_max_lines_displayed.to_i, :style => diff_style) -%> <% diff.each do |table_file| -%>
<% if diff.diff_type == 'sbs' -%> <% table_file.each_line do |spacing, line| -%> <% if spacing -%> <% end -%> <% end -%>
<% if table_file.previous_file_name %> <%= table_file.previous_file_name %> → <% end %> <%= table_file.file_name %>
<%= line.html_line_left.html_safe %>
<%= line.html_line_right.html_safe %>
<% else -%> <% table_file.each_line do |spacing, line| %> <% if spacing -%> <% end -%> <% end -%>
<% if table_file.previous_file_name %> <%= table_file.previous_file_name %> → <% end %> <%= table_file.file_name %>
......
<%= line.html_line.html_safe %>
<% end -%>
<% end -%> <%= l(:text_diff_truncated) if diff.truncated? %>