2012-06-23 18:14:45 -04:00
|
|
|
- too_big = diff.diff.lines.count > 1000
|
2012-04-05 18:00:15 -04:00
|
|
|
- if too_big
|
2014-03-26 08:51:28 -04:00
|
|
|
%a.supp_diff_link Changes suppressed. Click to show
|
2012-04-05 18:00:15 -04:00
|
|
|
|
2012-12-01 07:49:21 -05:00
|
|
|
%table.text-file{class: "#{'hide' if too_big}"}
|
2013-08-04 12:35:47 -04:00
|
|
|
- each_diff_line(diff, index) do |line, type, line_code, line_new, line_old, raw_line|
|
2013-04-21 04:20:56 -04:00
|
|
|
%tr.line_holder{ id: line_code, class: "#{type}" }
|
2012-02-13 17:20:23 -05:00
|
|
|
- if type == "match"
|
|
|
|
%td.old_line= "..."
|
|
|
|
%td.new_line= "..."
|
|
|
|
%td.line_content.matched= line
|
2012-06-03 18:37:27 -04:00
|
|
|
- else
|
2012-02-13 17:20:23 -05:00
|
|
|
%td.old_line
|
2012-08-10 18:07:50 -04:00
|
|
|
= link_to raw(type == "new" ? " " : line_old), "##{line_code}", id: line_code
|
2012-02-14 16:48:42 -05:00
|
|
|
- if @comments_allowed
|
2014-06-06 16:15:54 -04:00
|
|
|
= link_to_new_diff_note(line_code)
|
2012-08-10 18:07:50 -04:00
|
|
|
%td.new_line= link_to raw(type == "old" ? " " : line_new) , "##{line_code}", id: line_code
|
2012-12-24 22:14:05 -05:00
|
|
|
%td.line_content{class: "noteable_line #{type} #{line_code}", "line_code" => line_code}= raw diff_line_content(line)
|
2012-06-03 18:37:27 -04:00
|
|
|
|
2012-11-17 18:41:30 -05:00
|
|
|
- if @reply_allowed
|
|
|
|
- comments = @line_notes.select { |n| n.line_code == line_code }.sort_by(&:created_at)
|
|
|
|
- unless comments.empty?
|
2013-08-04 13:43:49 -04:00
|
|
|
= render "projects/notes/diff_notes_with_reply", notes: comments, line: line
|
2013-10-09 16:22:37 -04:00
|
|
|
|