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}"}
|
2012-01-25 20:10:09 +01:00
|
|
|
- each_diff_line(diff.diff.lines.to_a, index) do |line, type, line_code, line_new, line_old|
|
2011-12-01 00:51:04 +01:00
|
|
|
%tr.line_holder
|
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-08-11 00:07:50 +02:00
|
|
|
= link_to "", "#", class: "line_note_link", "line_code" => line_code, title: "Add note for this line"
|
|
|
|
%td.new_line= link_to raw(type == "old" ? " " : line_new) , "##{line_code}", id: line_code
|
|
|
|
%td.line_content{class: "noteable_line #{type} #{line_code}", "line_code" => line_code}= raw "#{line} "
|
2012-06-04 00:37:27 +02:00
|
|
|
|
2012-02-14 22:48:42 +01:00
|
|
|
- if @comments_allowed
|
|
|
|
- comments = @line_notes.select { |n| n.line_code == line_code }.sort_by(&:created_at).reverse
|
|
|
|
- unless comments.empty?
|
2012-02-24 21:19:47 +01:00
|
|
|
- comments.each_with_index do |note, i|
|
2012-08-11 00:07:50 +02:00
|
|
|
= render "notes/reply_button", line_code: line_code if i.zero?
|
|
|
|
= render "notes/per_line_show", note: note
|
2012-02-14 22:48:42 +01:00
|
|
|
- @line_notes.reject!{ |n| n == note }
|