2015-04-26 12:48:37 +05:30
|
|
|
- too_big = diff_file.diff_lines.count > Commit::DIFF_SAFE_LINES
|
|
|
|
- if too_big
|
2015-09-11 14:41:01 +05:30
|
|
|
.suppressed-container
|
|
|
|
%a.show-suppressed-diff.js-show-suppressed-diff Changes suppressed. Click to show.
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-01-29 22:53:50 +05:30
|
|
|
%table.text-file.code.js-syntax-highlight{ class: too_big ? 'hide' : '' }
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
- last_line = 0
|
2016-01-29 22:53:50 +05:30
|
|
|
- diff_file.highlighted_diff_lines.each_with_index do |line, index|
|
2015-04-26 12:48:37 +05:30
|
|
|
- line_code = generate_line_code(diff_file.file_path, line)
|
2016-06-02 11:05:42 +05:30
|
|
|
- last_line = line.new_pos
|
|
|
|
= render "projects/diffs/line", {line: line, diff_file: diff_file, line_code: line_code}
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
- unless @diff_notes_disabled
|
|
|
|
- diff_notes = @grouped_diff_notes[line_code]
|
|
|
|
- if diff_notes
|
|
|
|
= render "projects/notes/diff_notes_with_reply", notes: diff_notes
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
- if last_line > 0
|
2016-04-02 18:10:28 +05:30
|
|
|
= render "projects/diffs/match_line", { line: "",
|
|
|
|
line_old: last_line, line_new: last_line, bottom: true, new_file: diff_file.new_file }
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
- if diff_file.diff.blank? && diff_file.mode_changed?
|
|
|
|
.file-mode-changed
|
|
|
|
File mode changed
|