2014-09-08 09:26:49 -04:00
|
|
|
- too_big = diff_file.diff_lines.count > Commit::DIFF_SAFE_LINES
|
2012-04-05 18:00:15 -04:00
|
|
|
- if too_big
|
2015-07-23 15:55:49 -04:00
|
|
|
.suppressed-container
|
|
|
|
%a.show-suppressed-diff.js-show-suppressed-diff Changes suppressed. Click to show.
|
2012-04-05 18:00:15 -04:00
|
|
|
|
2016-01-07 13:45:19 -05:00
|
|
|
%table.text-file.code.js-syntax-highlight{ class: too_big ? 'hide' : '' }
|
2015-12-15 18:09:09 -05:00
|
|
|
|
2014-08-02 11:12:01 -04:00
|
|
|
- last_line = 0
|
2016-03-03 12:38:44 -05:00
|
|
|
- raw_diff_lines = diff_file.diff_lines.to_a
|
2015-12-30 00:52:50 -05:00
|
|
|
- diff_file.highlighted_diff_lines.each_with_index do |line, index|
|
2014-09-08 14:54:52 -04:00
|
|
|
- line_code = generate_line_code(diff_file.file_path, line)
|
2016-01-28 12:10:36 -05:00
|
|
|
- last_line = line.new_pos
|
|
|
|
= render "projects/diffs/line", {line: line, diff_file: diff_file, line_code: line_code}
|
2012-06-03 18:37:27 -04:00
|
|
|
|
2012-11-17 18:41:30 -05:00
|
|
|
- if @reply_allowed
|
2015-04-03 10:46:23 -04:00
|
|
|
- comments = @line_notes.select { |n| n.line_code == line_code && n.active? }.sort_by(&:created_at)
|
2012-11-17 18:41:30 -05:00
|
|
|
- unless comments.empty?
|
2016-01-21 20:10:58 -05:00
|
|
|
= render "projects/notes/diff_notes_with_reply", notes: comments, line: raw_diff_lines[index].text
|
2013-10-09 16:22:37 -04:00
|
|
|
|
2014-08-02 11:12:01 -04:00
|
|
|
- if last_line > 0
|
2016-02-18 04:26:10 -05:00
|
|
|
= render "projects/diffs/match_line", { line: "",
|
|
|
|
line_old: last_line, line_new: last_line, bottom: true, new_file: diff_file.new_file }
|
2014-08-02 11:12:01 -04:00
|
|
|
|
2014-09-08 15:25:20 -04:00
|
|
|
- if diff_file.diff.blank? && diff_file.mode_changed?
|
2014-06-14 15:54:56 -04:00
|
|
|
.file-mode-changed
|
|
|
|
File mode changed
|