2017-10-27 00:10:54 -06:00
|
|
|
<div class="{{TabSizeClass .Editorconfig .FileName}} non-diff-file-content">
|
2019-10-06 22:59:17 -06:00
|
|
|
<h4 class="file-header ui top attached header">
|
|
|
|
<div class="file-header-left">
|
|
|
|
{{if .ReadmeInList}}
|
|
|
|
<i class="book icon"></i>
|
|
|
|
<strong>{{.FileName}}</strong>
|
|
|
|
{{else}}
|
|
|
|
<div class="file-info text grey normal mono">
|
|
|
|
{{if .NumLines}}
|
|
|
|
<div class="file-info-entry">
|
|
|
|
{{.NumLines}} {{.i18n.Tr "repo.lines"}}
|
|
|
|
</div>
|
2016-08-28 05:56:41 -06:00
|
|
|
{{end}}
|
2019-10-06 22:59:17 -06:00
|
|
|
{{if .FileSize}}
|
|
|
|
<div class="file-info-entry">
|
|
|
|
{{FileSize .FileSize}}{{if .IsLFSFile}} ({{.i18n.Tr "repo.stored_lfs"}}){{end}}
|
2017-12-30 17:47:52 -07:00
|
|
|
</div>
|
2019-10-06 22:59:17 -06:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{if not .ReadmeInList}}
|
|
|
|
<div class="file-header-right">
|
|
|
|
<div class="ui right file-actions">
|
|
|
|
<div class="ui buttons">
|
|
|
|
<a class="ui button" href="{{EscapePound $.RawFileLink}}">{{.i18n.Tr "repo.file_raw"}}</a>
|
|
|
|
{{if not .IsViewCommit}}
|
|
|
|
<a class="ui button" href="{{.RepoLink}}/src/commit/{{.CommitID}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_permalink"}}</a>
|
|
|
|
{{end}}
|
|
|
|
{{if .IsTextFile}}
|
|
|
|
<a class="ui button" href="{{.RepoLink}}/blame/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.blame"}}</a>
|
|
|
|
{{end}}
|
|
|
|
<a class="ui button" href="{{.RepoLink}}/commits/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_history"}}</a>
|
|
|
|
</div>
|
|
|
|
{{if .Repository.CanEnableEditor}}
|
|
|
|
{{if .CanEditFile}}
|
|
|
|
<a href="{{.RepoLink}}/_edit/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}"><i class="octicon octicon-pencil btn-octicon poping up" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted"></i></a>
|
|
|
|
{{else}}
|
|
|
|
<i class="octicon octicon-pencil btn-octicon poping up disabled" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted"></i>
|
|
|
|
{{end}}
|
|
|
|
{{if .CanDeleteFile}}
|
|
|
|
<a href="{{.RepoLink}}/_delete/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}"><i class="octicon octicon-trashcan btn-octicon btn-octicon-danger poping up" data-content="{{.DeleteFileTooltip}}" data-position="bottom center" data-variation="tiny inverted"></i></a>
|
|
|
|
{{else}}
|
|
|
|
<i class="octicon octicon-trashcan btn-octicon poping up disabled" data-content="{{.DeleteFileTooltip}}" data-position="bottom center" data-variation="tiny inverted"></i>
|
|
|
|
{{end}}
|
2016-08-11 06:48:08 -06:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2017-12-30 17:47:52 -07:00
|
|
|
</div>
|
2019-10-06 22:59:17 -06:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</h4>
|
2017-12-30 17:47:52 -07:00
|
|
|
<div class="ui attached table unstackable segment">
|
2019-10-03 10:54:33 -06:00
|
|
|
<div class="file-view {{if .IsMarkup}}{{.MarkupType}} markdown{{else if .IsRenderedHTML}}plain-text{{else if .IsTextFile}}code-view{{end}} has-emoji">
|
2017-10-16 17:17:22 -06:00
|
|
|
{{if .IsMarkup}}
|
2017-11-30 12:38:33 -07:00
|
|
|
{{if .FileContent}}{{.FileContent | Safe}}{{end}}
|
2017-10-16 17:17:22 -06:00
|
|
|
{{else if .IsRenderedHTML}}
|
|
|
|
<pre>{{if .FileContent}}{{.FileContent | Str2html}}{{end}}</pre>
|
2016-08-30 03:08:38 -06:00
|
|
|
{{else if not .IsTextFile}}
|
2015-12-25 03:45:07 -07:00
|
|
|
<div class="view-raw ui center">
|
2015-12-07 15:30:52 -07:00
|
|
|
{{if .IsImageFile}}
|
2016-08-30 03:08:38 -06:00
|
|
|
<img src="{{EscapePound $.RawFileLink}}">
|
2016-12-20 01:09:11 -07:00
|
|
|
{{else if .IsVideoFile}}
|
|
|
|
<video controls src="{{EscapePound $.RawFileLink}}">
|
|
|
|
<strong>{{.i18n.Tr "repo.video_not_supported_in_browser"}}</strong>
|
|
|
|
</video>
|
2018-10-29 20:17:26 -06:00
|
|
|
{{else if .IsAudioFile}}
|
|
|
|
<audio controls src="{{EscapePound $.RawFileLink}}">
|
|
|
|
<strong>{{.i18n.Tr "repo.audio_not_supported_in_browser"}}</strong>
|
|
|
|
</audio>
|
2016-04-26 19:48:44 -06:00
|
|
|
{{else if .IsPDFFile}}
|
2017-08-23 08:58:05 -06:00
|
|
|
<iframe width="100%" height="600px" src="{{AppSubUrl}}/vendor/plugins/pdfjs/web/viewer.html?file={{EscapePound $.RawFileLink}}"></iframe>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{else}}
|
2016-08-30 03:08:38 -06:00
|
|
|
<a href="{{EscapePound $.RawFileLink}}" rel="nofollow" class="btn btn-gray btn-radius">{{.i18n.Tr "repo.file_view_raw"}}</a>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else if .FileSize}}
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2016-07-11 16:21:26 -06:00
|
|
|
{{if .IsFileTooLarge}}
|
|
|
|
<td><strong>{{.i18n.Tr "repo.file_too_large"}}</strong></td>
|
|
|
|
{{else}}
|
2016-08-09 13:35:20 -06:00
|
|
|
<td class="lines-num">{{.LineNums}}</td>
|
2015-12-16 20:13:12 -07:00
|
|
|
<td class="lines-code"><pre><code class="{{.HighlightClass}}"><ol class="linenums">{{.FileContent}}</ol></code></pre></td>
|
2016-07-11 16:21:26 -06:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-11 06:48:08 -06:00
|
|
|
|
|
|
|
<script>
|
|
|
|
function submitDeleteForm() {
|
|
|
|
var message = prompt("{{.i18n.Tr "repo.delete_confirm_message"}}\n\n{{.i18n.Tr "repo.delete_commit_summary"}}", "Delete '{{.TreeName}}'");
|
|
|
|
if (message != null) {
|
|
|
|
$("#delete-message").val(message);
|
|
|
|
$("#delete-file-form").submit()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|