2017-01-29 14:38:00 -05:00
|
|
|
- environment = local_assigns.fetch(:environment, nil)
|
2017-05-15 13:18:19 -04:00
|
|
|
- file_hash = hexdigest(diff_file.file_path)
|
2017-05-15 14:19:49 -04:00
|
|
|
.diff-file.file-holder{ id: file_hash, data: diff_file_html_data(project, diff_file.file_path, diff_file.content_sha) }
|
2017-02-05 17:28:48 -05:00
|
|
|
.js-file-title.file-title-flex-parent
|
2017-02-08 18:06:04 -05:00
|
|
|
.file-header-content
|
2017-05-15 14:19:49 -04:00
|
|
|
= render "projects/diffs/file_header", diff_file: diff_file, url: "##{file_hash}"
|
2014-09-08 09:26:49 -04:00
|
|
|
|
2016-06-20 12:57:10 -04:00
|
|
|
- unless diff_file.submodule?
|
2017-05-15 14:19:49 -04:00
|
|
|
- blob = diff_file.blob
|
2017-01-18 17:48:51 -05:00
|
|
|
.file-actions.hidden-xs
|
2017-04-13 12:57:43 -04:00
|
|
|
- if blob.readable_text?
|
2017-01-30 05:58:30 -05:00
|
|
|
= link_to '#', class: 'js-toggle-diff-comments btn active has-tooltip', title: "Toggle comments for this file", disabled: @diff_notes_disabled do
|
2016-03-31 14:37:27 -04:00
|
|
|
= icon('comment')
|
2016-01-21 16:46:49 -05:00
|
|
|
\
|
2016-07-30 00:04:04 -04:00
|
|
|
- if editable_diff?(diff_file)
|
2016-11-07 12:09:22 -05:00
|
|
|
- link_opts = @merge_request.persisted? ? { from_merge_request_iid: @merge_request.iid } : {}
|
2016-08-17 11:05:00 -04:00
|
|
|
= edit_blob_link(@merge_request.source_project, @merge_request.source_branch, diff_file.new_path,
|
|
|
|
blob: blob, link_opts: link_opts)
|
2014-09-08 09:26:49 -04:00
|
|
|
|
2017-05-15 14:19:49 -04:00
|
|
|
= view_file_button(diff_file.content_sha, diff_file.file_path, project)
|
|
|
|
= view_on_environment_button(diff_file.content_sha, diff_file.file_path, environment) if environment
|
2014-09-08 09:26:49 -04:00
|
|
|
|
2017-04-22 01:54:03 -04:00
|
|
|
= render 'projects/fork_suggestion'
|
|
|
|
|
2017-05-15 14:19:49 -04:00
|
|
|
= render 'projects/diffs/content', diff_file: diff_file
|