debian-mirror-gitlab/app/views/projects/diffs/_text_file.html.haml

17 lines
844 B
Text
Raw Normal View History

2021-01-03 14:25:43 +05:30
- too_big = diff_file.diff_lines.count > Commit.diff_safe_lines(project: @project)
2015-04-26 12:48:37 +05:30
- if too_big
2015-09-11 14:41:01 +05:30
.suppressed-container
2019-07-31 22:56:46 +05:30
%a.show-suppressed-diff.cursor-pointer.js-show-suppressed-diff= _("Changes suppressed. Click to show.")
2015-04-26 12:48:37 +05:30
2019-09-04 21:01:54 +05:30
%table.text-file.diff-wrap-lines.code.code-commit.js-syntax-highlight.commit-diff{ data: diff_view_data, class: too_big ? 'hide' : '' }
2016-09-13 17:45:13 +05:30
= render partial: "projects/diffs/line",
collection: diff_file.highlighted_diff_lines,
as: :line,
2017-08-17 22:00:37 +05:30
locals: { diff_file: diff_file, discussions: @grouped_diff_discussions }
2015-04-26 12:48:37 +05:30
2017-09-10 17:25:29 +05:30
- if !diff_file.new_file? && !diff_file.deleted_file? && diff_file.highlighted_diff_lines.any?
2017-08-17 22:00:37 +05:30
- last_line = diff_file.highlighted_diff_lines.last
- if last_line.new_pos < total_lines
%tr.line_holder
= diff_match_line last_line.old_pos, last_line.new_pos, bottom: true