2012-06-24 00:14:45 +02:00
|
|
|
- too_big = diff.diff.lines.count > 1000
|
2012-04-06 00:00:15 +02:00
|
|
|
- if too_big
|
2012-06-20 20:29:55 +02:00
|
|
|
%a.supp_diff_link Diff suppressed. Click to show
|
2012-04-06 00:00:15 +02:00
|
|
|
|
2012-08-11 00:07:50 +02:00
|
|
|
%table{class: "#{'hide' if too_big}"}
|
2013-01-15 10:12:17 +01:00
|
|
|
- each_diff_line(diff, index) do |line, type, line_code, line_new, line_old|
|
2012-10-10 12:14:48 +02:00
|
|
|
%tr.line_holder{ id: line_code }
|
2012-02-13 23:20:23 +01:00
|
|
|
- if type == "match"
|
|
|
|
%td.old_line= "..."
|
|
|
|
%td.new_line= "..."
|
|
|
|
%td.line_content.matched= line
|
2012-06-04 00:37:27 +02:00
|
|
|
- else
|
2012-02-13 23:20:23 +01:00
|
|
|
%td.old_line
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to raw(type == "new" ? " " : line_old), "##{line_code}", id: line_code
|
2012-02-14 22:48:42 +01:00
|
|
|
- if @comments_allowed
|
2012-11-17 20:24:12 +01:00
|
|
|
= render "notes/diff_note_link", line_code: line_code
|
2012-08-11 00:07:50 +02:00
|
|
|
%td.new_line= link_to raw(type == "old" ? " " : line_new) , "##{line_code}", id: line_code
|
2012-12-25 04:14:05 +01:00
|
|
|
%td.line_content{class: "noteable_line #{type} #{line_code}", "line_code" => line_code}= raw diff_line_content(line)
|
2012-06-04 00:37:27 +02:00
|
|
|
|
2012-11-18 00:41:30 +01:00
|
|
|
- if @reply_allowed
|
|
|
|
- comments = @line_notes.select { |n| n.line_code == line_code }.sort_by(&:created_at)
|
|
|
|
- unless comments.empty?
|
|
|
|
= render "notes/diff_notes_with_reply", notes: comments
|