Files
Atay-Makhzan/templates/repo/view_file.tmpl
T

123 lines
5.0 KiB
Handlebars
Raw Normal View History

2017-10-26 23:10:54 -07:00
<div class="{{TabSizeClass .Editorconfig .FileName}} non-diff-file-content">
2020-11-01 21:04:26 +01:00
<h4 class="file-header ui top attached header df ac sb">
<div class="file-header-left df ac">
2019-10-07 06:59:17 +02:00
{{if .ReadmeInList}}
{{svg "octicon-book" 16 "mr-3"}}
2019-10-07 06:59:17 +02:00
<strong>{{.FileName}}</strong>
{{else}}
<div class="file-info text grey normal mono">
{{if .FileIsSymlink}}
<div class="file-info-entry">
{{.i18n.Tr "repo.symbolic_link"}}
</div>
{{end}}
{{if .NumLinesSet}}
2019-10-07 06:59:17 +02:00
<div class="file-info-entry">
{{.NumLines}} {{.i18n.Tr (TrN .i18n.Lang .NumLines "repo.line" "repo.lines") }}
2019-10-07 06:59:17 +02:00
</div>
2016-08-28 04:56:41 -07:00
{{end}}
2019-10-07 06:59:17 +02:00
{{if .FileSize}}
<div class="file-info-entry">
{{FileSize .FileSize}}{{if .IsLFSFile}} ({{.i18n.Tr "repo.stored_lfs"}}){{end}}
2017-12-31 01:47:52 +01:00
</div>
2019-10-07 06:59:17 +02:00
{{end}}
2019-10-30 05:32:21 +08:00
{{if .LFSLock}}
<div class="file-info-entry ui poping up" data-content="{{.LFSLockHint}}">
{{svg "octicon-lock" 16 "mr-2"}}
2019-10-30 05:32:21 +08:00
<a href="{{AppSubUrl}}/{{.LFSLock.Owner.Name}}">{{.LFSLockOwner}}</a>
</div>
{{end}}
2019-10-07 06:59:17 +02:00
</div>
{{end}}
</div>
{{if not .ReadmeInList}}
2020-11-01 21:04:26 +01:00
<div class="file-header-right file-actions df ac">
<div class="ui buttons">
<a class="ui tiny button" href="{{EscapePound $.RawFileLink}}">{{.i18n.Tr "repo.file_raw"}}</a>
{{if not .IsViewCommit}}
<a class="ui tiny button" href="{{.RepoLink}}/src/commit/{{.CommitID}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_permalink"}}</a>
2016-08-11 05:48:08 -07:00
{{end}}
2020-11-01 21:04:26 +01:00
{{if .IsTextFile}}
<a class="ui tiny button" href="{{.RepoLink}}/blame/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.blame"}}</a>
{{end}}
<a class="ui tiny button" href="{{.RepoLink}}/commits/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_history"}}</a>
2015-12-07 23:30:52 +01:00
</div>
2020-11-01 21:04:26 +01:00
{{if .Repository.CanEnableEditor}}
{{if .CanEditFile}}
<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"}}</span></a>
{{else}}
<span class="btn-octicon poping up disabled" data-content="{{.EditFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-pencil"}}</span>
{{end}}
{{if .CanDeleteFile}}
<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"}}</span></a>
{{else}}
<span class="btn-octicon poping up disabled" data-content="{{.DeleteFileTooltip}}" data-position="bottom center" data-variation="tiny inverted">{{svg "octicon-trashcan"}}</span>
{{end}}
{{end}}
2017-12-31 01:47:52 +01:00
</div>
2019-10-07 06:59:17 +02:00
{{end}}
2015-12-07 23:30:52 +01:00
</h4>
2017-12-31 01:47:52 +01:00
<div class="ui attached table unstackable segment">
<div class="file-view {{if .IsMarkup}}{{.MarkupType}} markdown{{else if .IsRenderedHTML}}plain-text{{else if .IsTextFile}}code-view{{end}}">
{{if .IsMarkup}}
2017-12-01 03:38:33 +08:00
{{if .FileContent}}{{.FileContent | Safe}}{{end}}
{{else if .IsRenderedHTML}}
<pre>{{if .FileContent}}{{.FileContent | Str2html}}{{end}}</pre>
2016-08-30 02:08:38 -07:00
{{else if not .IsTextFile}}
<div class="view-raw ui center">
2015-12-07 23:30:52 +01:00
{{if .IsImageFile}}
2016-08-30 02:08:38 -07:00
<img src="{{EscapePound $.RawFileLink}}">
{{else if .IsVideoFile}}
<video controls src="{{EscapePound $.RawFileLink}}">
<strong>{{.i18n.Tr "repo.video_not_supported_in_browser"}}</strong>
</video>
{{else if .IsAudioFile}}
<audio controls src="{{EscapePound $.RawFileLink}}">
<strong>{{.i18n.Tr "repo.audio_not_supported_in_browser"}}</strong>
</audio>
{{else if .IsPDFFile}}
<iframe width="100%" height="600px" src="{{StaticUrlPrefix}}/vendor/plugins/pdfjs/web/viewer.html?file={{EscapePound $.RawFileLink}}"></iframe>
2015-12-07 23:30:52 +01:00
{{else}}
2016-08-30 02:08:38 -07:00
<a href="{{EscapePound $.RawFileLink}}" rel="nofollow" class="btn btn-gray btn-radius">{{.i18n.Tr "repo.file_view_raw"}}</a>
2015-12-07 23:30:52 +01:00
{{end}}
</div>
{{else if .FileSize}}
{{if .IsFileTooLarge}}
2015-12-07 23:30:52 +01:00
<table>
<tbody>
<tr>
<td><strong>{{.i18n.Tr "repo.file_too_large"}}</strong></td>
2015-12-07 23:30:52 +01:00
</tr>
</tbody>
</table>
{{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-11-04 08:14:07 +01:00
<code class="code-inner">{{$code | Safe}}</code>
</td>
</tr>
{{end}}
</tbody>
</table>
{{end}}
2015-12-07 23:30:52 +01:00
{{end}}
</div>
</div>
</div>
2016-08-11 05:48:08 -07: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>