2017-10-27 09:10:54 +03:00
<div class="{{TabSizeClass .Editorconfig .FileName}} non-diff-file-content">
2019-10-07 07:59:17 +03:00
<h4 class="file-header ui top attached header">
<div class="file-header-left">
{{if .ReadmeInList}}
2020-02-22 02:04:20 +03:00
{{if .FileIsSymlink}}
<i class="icons"><i class="book icon"></i><i class="bottom left corner tiny inverted share icon"></i></i>
{{else}}
<i class="book icon"></i>
{{end}}
2019-10-07 07:59:17 +03:00
<strong>{{.FileName}}</strong>
{{else}}
<div class="file-info text grey normal mono">
2020-02-22 02:04:20 +03:00
{{if .FileIsSymlink}}
<div class="file-info-entry">
{{.i18n.Tr "repo.symbolic_link"}}
</div>
{{end}}
2019-10-29 19:05:26 +03:00
{{if .NumLinesSet}}
2019-10-07 07:59:17 +03:00
<div class="file-info-entry">
2019-10-08 02:38:41 +03:00
{{.NumLines}} {{.i18n.Tr (TrN .i18n.Lang .NumLines "repo.line" "repo.lines") }}
2019-10-07 07:59:17 +03:00
</div>
2016-08-28 14:56:41 +03:00
{{end}}
2019-10-07 07:59:17 +03:00
{{if .FileSize}}
<div class="file-info-entry">
{{FileSize .FileSize}}{{if .IsLFSFile}} ({{.i18n.Tr "repo.stored_lfs"}}){{end}}
2017-12-31 03:47:52 +03:00
</div>
2019-10-07 07:59:17 +03:00
{{end}}
2019-10-30 00:32:21 +03:00
{{if .LFSLock}}
<div class="file-info-entry">
<i class="fa fa-lock poping up disabled" data-content="{{.LFSLockHint}}" data-position="bottom center" data-variation="tiny inverted"></i>
<a href="{{AppSubUrl}}/{{.LFSLock.Owner.Name}}">{{.LFSLockOwner}}</a>
</div>
{{end}}
2019-10-07 07:59:17 +03:00
</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}}
2020-02-11 20:02:41 +03:00
<a href="{{.RepoLink}}/_edit/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}"><span class="btn-octicon poping up" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-pencil" 16}}</span></a>
2019-10-07 07:59:17 +03:00
{{else}}
2020-02-11 20:02:41 +03:00
<span class="btn-octicon poping up disabled" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-pencil" 16}}</span>
2019-10-07 07:59:17 +03:00
{{end}}
{{if .CanDeleteFile}}
2020-02-11 20:02:41 +03:00
<a href="{{.RepoLink}}/_delete/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}"><span class="btn-octicon btn-octicon-danger poping up" data-content="{{.DeleteFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-trashcan" 16}}</span></a>
2019-10-07 07:59:17 +03:00
{{else}}
2020-02-11 20:02:41 +03:00
<span class="btn-octicon poping up disabled" data-content="{{.DeleteFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-trashcan" 16}}</span>
2019-10-07 07:59:17 +03:00
{{end}}
2016-08-11 15:48:08 +03:00
{{end}}
2015-12-08 01:30:52 +03:00
</div>
2017-12-31 03:47:52 +03:00
</div>
2019-10-07 07:59:17 +03:00
{{end}}
2015-12-08 01:30:52 +03:00
</h4>
2017-12-31 03:47:52 +03:00
<div class="ui attached table unstackable segment">
2020-05-01 20:58:45 +03:00
<div class="file-view {{if .IsMarkup}}{{.MarkupType}} markdown{{else if .IsRenderedHTML}}plain-text{{else if .IsTextFile}}code-view{{end}}">
2017-10-17 02:17:22 +03:00
{{if .IsMarkup}}
2017-11-30 22:38:33 +03:00
{{if .FileContent}}{{.FileContent | Safe}}{{end}}
2017-10-17 02:17:22 +03:00
{{else if .IsRenderedHTML}}
<pre>{{if .FileContent}}{{.FileContent | Str2html}}{{end}}</pre>
2016-08-30 12:08:38 +03:00
{{else if not .IsTextFile}}
2015-12-25 13:45:07 +03:00
<div class="view-raw ui center">
2015-12-08 01:30:52 +03:00
{{if .IsImageFile}}
2016-08-30 12:08:38 +03:00
<img src="{{EscapePound $.RawFileLink}}">
2016-12-20 11:09:11 +03:00
{{else if .IsVideoFile}}
<video controls src="{{EscapePound $.RawFileLink}}">
<strong>{{.i18n.Tr "repo.video_not_supported_in_browser"}}</strong>
</video>
2018-10-30 05:17:26 +03:00
{{else if .IsAudioFile}}
<audio controls src="{{EscapePound $.RawFileLink}}">
<strong>{{.i18n.Tr "repo.audio_not_supported_in_browser"}}</strong>
</audio>
2016-04-27 04:48:44 +03:00
{{else if .IsPDFFile}}
2019-10-22 15:11:01 +03:00
<iframe width="100%" height="600px" src="{{StaticUrlPrefix}}/vendor/plugins/pdfjs/web/viewer.html?file={{EscapePound $.RawFileLink}}"></iframe>
2015-12-08 01:30:52 +03:00
{{else}}
2016-08-30 12:08:38 +03:00
<a href="{{EscapePound $.RawFileLink}}" rel="nofollow" class="btn btn-gray btn-radius">{{.i18n.Tr "repo.file_view_raw"}}</a>
2015-12-08 01:30:52 +03:00
{{end}}
</div>
{{else if .FileSize}}
2020-07-01 00:34:03 +03:00
{{if .IsFileTooLarge}}
2015-12-08 01:30:52 +03:00
<table>
<tbody>
<tr>
2016-07-12 01:21:26 +03:00
<td><strong>{{.i18n.Tr "repo.file_too_large"}}</strong></td>
2015-12-08 01:30:52 +03:00
</tr>
</tbody>
</table>
2020-07-01 00:34:03 +03:00
{{else}}
<table>
<tbody>
{{range $ line , $ code := .FileContent}}
<tr>
<td id="L{{ $ line }}" class="lines-num">
<span id="L{{ $ line }}" data-line-number="{{ $ line }}"></span>
</td>
<td rel="L{{ $ line }}" class="lines-code chroma">
2020-07-09 00:02:38 +03:00
<code>{{ $ code | Safe}}</code>
2020-07-01 00:34:03 +03:00
</td>
</tr>
{{end}}
</tbody>
</table>
{{end}}
2015-12-08 01:30:52 +03:00
{{end}}
</div>
</div>
</div>
2016-08-11 15:48:08 +03: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>