2012-07-10 19:15:33 +02:00
|
|
|
.file_holder
|
|
|
|
.file_title
|
2012-05-15 18:35:18 +02:00
|
|
|
%i.icon-file
|
|
|
|
%span.file_name
|
2012-09-11 13:18:14 +02:00
|
|
|
= name.force_encoding('utf-8')
|
2012-05-15 18:35:18 +02:00
|
|
|
%small #{file.mode}
|
2012-05-17 18:11:45 +02:00
|
|
|
%span.options
|
2012-09-17 19:49:57 +02:00
|
|
|
= link_to "raw", project_blob_path(@project, @id), class: "btn very_small", target: "_blank"
|
2012-09-26 05:33:42 +02:00
|
|
|
= link_to "history", project_commits_path(@project, @id), class: "btn very_small"
|
2012-09-17 19:36:13 +02:00
|
|
|
= link_to "blame", project_blame_path(@project, @id), class: "btn very_small"
|
2011-10-20 21:00:00 +02:00
|
|
|
- if file.text?
|
2012-09-20 12:00:18 +02:00
|
|
|
- if gitlab_markdown?(name)
|
|
|
|
.file_content.wiki
|
|
|
|
= preserve do
|
|
|
|
= markdown(file.data)
|
|
|
|
- elsif markup?(name)
|
2012-07-10 19:15:33 +02:00
|
|
|
.file_content.wiki
|
2012-09-05 22:52:49 +02:00
|
|
|
= raw GitHub::Markup.render(name, file.data)
|
2012-05-15 03:23:14 +02:00
|
|
|
- else
|
2012-07-10 19:15:33 +02:00
|
|
|
.file_content.code
|
2012-05-15 03:23:14 +02:00
|
|
|
- unless file.empty?
|
2012-08-11 00:07:50 +02:00
|
|
|
%div{class: current_user.dark_scheme ? "black" : "white"}
|
2012-05-15 03:23:14 +02:00
|
|
|
= preserve do
|
|
|
|
= raw file.colorize(options: { linenos: 'True'})
|
|
|
|
- else
|
2012-06-11 19:52:32 +02:00
|
|
|
%h4.nothing_here_message Empty file
|
2012-07-10 19:15:33 +02:00
|
|
|
|
2011-10-20 21:00:00 +02:00
|
|
|
- elsif file.image?
|
2012-07-10 19:15:33 +02:00
|
|
|
.file_content.image_file
|
2012-08-11 00:07:50 +02:00
|
|
|
%img{ src: "data:#{file.mime_type};base64,#{Base64.encode64(file.data)}"}
|
2012-07-10 19:15:33 +02:00
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
- else
|
2012-07-10 19:15:33 +02:00
|
|
|
.file_content.blob_file
|
|
|
|
%center
|
2012-09-17 19:49:57 +02:00
|
|
|
= link_to project_blob_path(@project, @id) do
|
2012-07-10 19:15:33 +02:00
|
|
|
%div.padded
|
|
|
|
%br
|
2012-08-11 00:07:50 +02:00
|
|
|
= image_tag "download.png", width: 64
|
2012-07-10 19:15:33 +02:00
|
|
|
%h3
|
|
|
|
Download (#{file.mb_size})
|