gitlab-org--gitlab-foss/app/views/projects/diffs/_text_file.html.haml

21 lines
868 B
Text
Raw Normal View History

- too_big = diff_file.diff_lines.count > Commit::DIFF_SAFE_LINES
2012-04-05 18:00:15 -04:00
- if too_big
.suppressed-container
%a.show-suppressed-diff.js-show-suppressed-diff Changes suppressed. Click to show.
2012-04-05 18:00:15 -04:00
%table.text-file.code.js-syntax-highlight{ data: diff_view_data, class: too_big ? 'hide' : '' }
2014-08-02 11:12:01 -04:00
- last_line = 0
- diff_file.highlighted_diff_lines.each do |line|
2016-01-28 12:10:36 -05:00
- last_line = line.new_pos
= render "projects/diffs/line", line: line, diff_file: diff_file
- unless @diff_notes_disabled
- line_code = diff_file.line_code(line)
- diff_notes = @grouped_diff_notes[line_code] if line_code
2016-05-10 18:41:46 -04:00
- if diff_notes
= render "projects/notes/diff_notes_with_reply", notes: diff_notes
2014-08-02 11:12:01 -04:00
- if last_line > 0
= render "projects/diffs/match_line", { line: "",
line_old: last_line, line_new: last_line, bottom: true, new_file: diff_file.new_file }