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

20 lines
1.2 KiB
Text
Raw Normal View History

2016-09-13 17:45:13 +05:30
.diff-file.file-holder{id: "diff-#{index}", data: diff_file_html_data(project, diff_file.file_path, diff_commit.id)}
2016-01-29 22:53:50 +05:30
.file-title{id: "file-path-#{hexdigest(diff_file.file_path)}"}
2016-09-13 17:45:13 +05:30
= render "projects/diffs/file_header", diff_file: diff_file, blob: blob, diff_commit: diff_commit, project: project, url: "#diff-#{index}"
2015-04-26 12:48:37 +05:30
2016-08-24 12:49:21 +05:30
- unless diff_file.submodule?
2016-01-29 22:53:50 +05:30
.file-actions.hidden-xs
- if blob_text_viewable?(blob)
2016-11-03 12:29:30 +05:30
= link_to '#', class: 'js-toggle-diff-comments btn active has-tooltip btn-file-option', title: "Toggle comments for this file", disabled: @diff_notes_disabled do
2016-06-02 11:05:42 +05:30
= icon('comment')
2016-01-29 22:53:50 +05:30
\
2016-11-03 12:29:30 +05:30
= clipboard_button(clipboard_text: diff_file.new_path, class: 'btn-file-option')
2016-09-13 17:45:13 +05:30
- if editable_diff?(diff_file)
2017-01-15 13:20:01 +05:30
- link_opts = @merge_request.persisted? ? { from_merge_request_iid: @merge_request.iid } : {}
2016-09-13 17:45:13 +05:30
= edit_blob_link(@merge_request.source_project, @merge_request.source_branch, diff_file.new_path,
blob: blob, link_opts: link_opts)
2015-04-26 12:48:37 +05:30
2016-09-13 17:45:13 +05:30
= view_file_btn(diff_commit.id, diff_file.new_path, project)
2015-04-26 12:48:37 +05:30
2016-09-13 17:45:13 +05:30
= render 'projects/diffs/content', diff_file: diff_file, diff_commit: diff_commit, blob: blob, project: project