2017-04-07 18:13:04 -04:00
|
|
|
- blame = local_assigns.fetch(:blame, false)
|
2017-03-14 13:58:52 -04:00
|
|
|
.js-file-title.file-title-flex-parent
|
|
|
|
.file-header-content
|
|
|
|
= blob_icon blob.mode, blob.name
|
|
|
|
|
|
|
|
%strong.file-title-name
|
|
|
|
= blob.name
|
|
|
|
|
|
|
|
= copy_file_path_button(blob.path)
|
|
|
|
|
|
|
|
%small
|
|
|
|
= number_to_human_size(blob_size(blob))
|
|
|
|
|
|
|
|
.file-actions.hidden-xs
|
|
|
|
.btn-group{ role: "group" }<
|
2017-04-10 17:23:19 -04:00
|
|
|
= copy_blob_content_button(blob) if !blame && blob_rendered_as_text?(blob)
|
2017-03-14 13:58:52 -04:00
|
|
|
= open_raw_file_button(namespace_project_raw_path(@project.namespace, @project, @id))
|
|
|
|
= view_on_environment_button(@commit.sha, @path, @environment) if @environment
|
|
|
|
|
|
|
|
.btn-group{ role: "group" }<
|
|
|
|
-# only show normal/blame view links for text files
|
|
|
|
- if blob_text_viewable?(blob)
|
2017-04-07 18:13:04 -04:00
|
|
|
- if blame
|
2017-04-06 09:55:11 -04:00
|
|
|
= link_to 'Normal view', namespace_project_blob_path(@project.namespace, @project, @id),
|
2017-03-14 13:58:52 -04:00
|
|
|
class: 'btn btn-sm'
|
|
|
|
- else
|
|
|
|
= link_to 'Blame', namespace_project_blame_path(@project.namespace, @project, @id),
|
|
|
|
class: 'btn btn-sm js-blob-blame-link' unless blob.empty?
|
|
|
|
|
|
|
|
= link_to 'History', namespace_project_commits_path(@project.namespace, @project, @id),
|
|
|
|
class: 'btn btn-sm'
|
|
|
|
|
|
|
|
= link_to 'Permalink', namespace_project_blob_path(@project.namespace, @project,
|
|
|
|
tree_join(@commit.sha, @path)), class: 'btn btn-sm js-data-file-blob-permalink-url'
|
|
|
|
|
2017-04-06 12:36:38 -04:00
|
|
|
.btn-group{ role: "group" }<
|
|
|
|
= edit_blob_link if blob_text_viewable?(blob)
|
|
|
|
- if current_user
|
2017-03-14 13:58:52 -04:00
|
|
|
= replace_blob_link
|
|
|
|
= delete_blob_link
|
2017-04-10 14:30:46 -04:00
|
|
|
- if current_user
|
|
|
|
.js-file-fork-suggestion-section.file-fork-suggestion.hidden
|
|
|
|
%span.file-fork-suggestion-note
|
|
|
|
You don't have permission to edit this file. Try forking this project to edit the file.
|
|
|
|
= link_to 'Fork', fork_path, method: :post, class: 'btn btn-grouped btn-inverted btn-new'
|
|
|
|
%button.js-cancel-fork-suggestion.btn.btn-grouped{ type: 'button' }
|
|
|
|
Cancel
|