2017-10-27 00:10:54 -06:00
|
|
|
<div class="{{TabSizeClass .Editorconfig .FileName}} non-diff-file-content">
|
2022-09-11 16:16:56 -06:00
|
|
|
{{- if .FileError}}
|
|
|
|
<div class="ui warning message">
|
|
|
|
<div class="text left">
|
|
|
|
<div>{{.FileError}}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2022-11-19 04:08:06 -07:00
|
|
|
<h4 class="file-header ui top attached header df ac sb fw">
|
|
|
|
<div class="file-header-left df ac py-3 pr-4">
|
2019-10-06 22:59:17 -06:00
|
|
|
{{if .ReadmeInList}}
|
2020-09-08 11:17:56 -06:00
|
|
|
{{svg "octicon-book" 16 "mr-3"}}
|
2019-10-06 22:59:17 -06:00
|
|
|
<strong>{{.FileName}}</strong>
|
|
|
|
{{else}}
|
2022-11-19 04:08:06 -07:00
|
|
|
{{template "repo/file_info" .}}
|
2019-10-06 22:59:17 -06:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2022-11-19 04:08:06 -07:00
|
|
|
<div class="file-header-right file-actions df ac fw">
|
2021-01-12 20:45:19 -07:00
|
|
|
{{if .HasSourceRenderedToggle}}
|
2021-04-22 15:43:44 -06:00
|
|
|
<div class="ui compact icon buttons two-toggle-buttons">
|
2022-06-27 14:58:46 -06:00
|
|
|
<a href="{{$.Link}}?display=source" class="ui mini basic button tooltip {{if .IsDisplayingSource}}active{{end}}" data-content="{{.locale.Tr "repo.file_view_source"}}" data-position="bottom center">{{svg "octicon-code" 15}}</a>
|
|
|
|
<a href="{{$.Link}}" class="ui mini basic button tooltip {{if .IsDisplayingRendered}}active{{end}}" data-content="{{.locale.Tr "repo.file_view_rendered"}}" data-position="bottom center">{{svg "octicon-file" 15}}</a>
|
2021-01-12 20:45:19 -07:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2022-01-06 18:18:52 -07:00
|
|
|
{{if not .ReadmeInList}}
|
|
|
|
<div class="ui buttons mr-2">
|
2022-06-27 14:58:46 -06:00
|
|
|
<a class="ui mini basic button" href="{{$.RawFileLink}}">{{.locale.Tr "repo.file_raw"}}</a>
|
2022-01-06 18:18:52 -07:00
|
|
|
{{if not .IsViewCommit}}
|
2022-06-27 14:58:46 -06:00
|
|
|
<a class="ui mini basic button" href="{{.RepoLink}}/src/commit/{{PathEscape .CommitID}}/{{PathEscapeSegments .TreePath}}">{{.locale.Tr "repo.file_permalink"}}</a>
|
2022-01-06 18:18:52 -07:00
|
|
|
{{end}}
|
|
|
|
{{if .IsRepresentableAsText}}
|
2022-06-27 14:58:46 -06:00
|
|
|
<a class="ui mini basic button" href="{{.RepoLink}}/blame/{{.BranchNameSubURL}}/{{PathEscapeSegments .TreePath}}">{{.locale.Tr "repo.blame"}}</a>
|
2022-01-06 18:18:52 -07:00
|
|
|
{{end}}
|
2022-06-27 14:58:46 -06:00
|
|
|
<a class="ui mini basic button" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}/{{PathEscapeSegments .TreePath}}">{{.locale.Tr "repo.file_history"}}</a>
|
2022-01-06 18:18:52 -07:00
|
|
|
{{if .EscapeStatus.Escaped}}
|
2022-06-27 14:58:46 -06:00
|
|
|
<a class="ui mini basic button unescape-button" style="display: none;">{{.locale.Tr "repo.unescape_control_characters"}}</a>
|
|
|
|
<a class="ui mini basic button escape-button">{{.locale.Tr "repo.escape_control_characters"}}</a>
|
2022-01-06 18:18:52 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2022-06-27 14:58:46 -06:00
|
|
|
<a download href="{{$.RawFileLink}}"><span class="btn-octicon tooltip" data-content="{{.locale.Tr "repo.download_file"}}" data-position="bottom center">{{svg "octicon-download"}}</span></a>
|
2022-11-21 02:59:42 -07:00
|
|
|
<a id="copy-content" class="btn-octicon tooltip{{if not .CanCopyContent}} disabled{{end}}"{{if or .IsImageFile (and .HasSourceRenderedToggle (not .IsDisplayingSource))}} data-link="{{$.RawFileLink}}"{{end}} data-content="{{if .CanCopyContent}}{{.locale.Tr "copy_content"}}{{else}}{{.locale.Tr "copy_type_unsupported"}}{{end}}">{{svg "octicon-copy" 14}}</a>
|
2022-01-06 18:18:52 -07:00
|
|
|
{{if .Repository.CanEnableEditor}}
|
|
|
|
{{if .CanEditFile}}
|
|
|
|
<a href="{{.RepoLink}}/_edit/{{PathEscapeSegments .BranchName}}/{{PathEscapeSegments .TreePath}}"><span class="btn-octicon tooltip" data-content="{{.EditFileTooltip}}" data-position="bottom center">{{svg "octicon-pencil"}}</span></a>
|
|
|
|
{{else}}
|
|
|
|
<span class="btn-octicon tooltip disabled" data-content="{{.EditFileTooltip}}" data-position="bottom center">{{svg "octicon-pencil"}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{if .CanDeleteFile}}
|
|
|
|
<a href="{{.RepoLink}}/_delete/{{PathEscapeSegments .BranchName}}/{{PathEscapeSegments .TreePath}}"><span class="btn-octicon btn-octicon-danger tooltip" data-content="{{.DeleteFileTooltip}}" data-position="bottom center">{{svg "octicon-trash"}}</span></a>
|
|
|
|
{{else}}
|
|
|
|
<span class="btn-octicon tooltip disabled" data-content="{{.DeleteFileTooltip}}" data-position="bottom center">{{svg "octicon-trash"}}</span>
|
|
|
|
{{end}}
|
2020-11-01 13:04:26 -07:00
|
|
|
{{end}}
|
2022-01-06 18:18:52 -07:00
|
|
|
{{else if .EscapeStatus.Escaped}}
|
2022-06-27 14:58:46 -06:00
|
|
|
<a class="ui mini basic button unescape-button mr-2" style="display: none;">{{.locale.Tr "repo.unescape_control_characters"}}</a>
|
|
|
|
<a class="ui mini basic button escape-button mr-2">{{.locale.Tr "repo.escape_control_characters"}}</a>
|
2020-11-01 13:04:26 -07:00
|
|
|
{{end}}
|
2017-12-30 17:47:52 -07:00
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
</h4>
|
2017-12-30 17:47:52 -07:00
|
|
|
<div class="ui attached table unstackable segment">
|
2022-12-03 08:47:00 -07:00
|
|
|
{{if not (or .IsMarkup .IsRenderedHTML)}}
|
|
|
|
{{template "repo/unicode_escape_prompt" dict "EscapeStatus" .EscapeStatus "root" $}}
|
|
|
|
{{end}}
|
2022-12-17 13:22:25 -07:00
|
|
|
<div class="file-view{{if .IsMarkup}} markup {{.MarkupType}}{{else if .IsPlainText}} plain-text{{else if .IsTextSource}} code-view{{end}}">
|
2017-10-16 17:17:22 -06:00
|
|
|
{{if .IsMarkup}}
|
2017-11-30 12:38:33 -07:00
|
|
|
{{if .FileContent}}{{.FileContent | Safe}}{{end}}
|
2022-12-17 13:22:25 -07:00
|
|
|
{{else if .IsPlainText}}
|
|
|
|
<pre>{{if .FileContent}}{{.FileContent | Safe}}{{end}}</pre>
|
2021-01-12 20:45:19 -07:00
|
|
|
{{else if not .IsTextSource}}
|
2015-12-25 03:45:07 -07:00
|
|
|
<div class="view-raw ui center">
|
2015-12-07 15:30:52 -07:00
|
|
|
{{if .IsImageFile}}
|
2021-11-16 11:18:25 -07:00
|
|
|
<img src="{{$.RawFileLink}}">
|
2016-12-20 01:09:11 -07:00
|
|
|
{{else if .IsVideoFile}}
|
2021-11-16 11:18:25 -07:00
|
|
|
<video controls src="{{$.RawFileLink}}">
|
2022-06-27 14:58:46 -06:00
|
|
|
<strong>{{.locale.Tr "repo.video_not_supported_in_browser"}}</strong>
|
2016-12-20 01:09:11 -07:00
|
|
|
</video>
|
2018-10-29 20:17:26 -06:00
|
|
|
{{else if .IsAudioFile}}
|
2021-11-16 11:18:25 -07:00
|
|
|
<audio controls src="{{$.RawFileLink}}">
|
2022-06-27 14:58:46 -06:00
|
|
|
<strong>{{.locale.Tr "repo.audio_not_supported_in_browser"}}</strong>
|
2018-10-29 20:17:26 -06:00
|
|
|
</audio>
|
2016-04-26 19:48:44 -06:00
|
|
|
{{else if .IsPDFFile}}
|
2021-11-16 11:18:25 -07:00
|
|
|
<iframe width="100%" height="600px" src="{{AssetUrlPrefix}}/vendor/plugins/pdfjs/web/viewer.html?file={{$.RawFileLink}}"></iframe>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{else}}
|
2022-06-27 14:58:46 -06:00
|
|
|
<a href="{{$.RawFileLink}}" rel="nofollow" class="btn btn-gray btn-radius">{{.locale.Tr "repo.file_view_raw"}}</a>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else if .FileSize}}
|
2020-06-30 15:34:03 -06:00
|
|
|
{{if .IsFileTooLarge}}
|
2015-12-07 15:30:52 -07:00
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2022-06-27 14:58:46 -06:00
|
|
|
<td><strong>{{.locale.Tr "repo.file_too_large"}}</strong></td>
|
2015-12-07 15:30:52 -07:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-06-30 15:34:03 -06:00
|
|
|
{{else}}
|
|
|
|
<table>
|
|
|
|
<tbody>
|
2021-08-23 15:23:39 -06:00
|
|
|
{{range $idx, $code := .FileContent}}
|
|
|
|
{{$line := Add $idx 1}}
|
2020-06-30 15:34:03 -06:00
|
|
|
<tr>
|
2021-11-29 15:01:56 -07:00
|
|
|
<td id="L{{$line}}" class="lines-num"><span id="L{{$line}}" data-line-number="{{$line}}"></span></td>
|
2022-01-06 18:18:52 -07:00
|
|
|
{{if $.EscapeStatus.Escaped}}
|
2022-08-13 12:32:34 -06:00
|
|
|
<td class="lines-escape">{{if (index $.LineEscapeStatus $idx).Escaped}}<a href="" class="toggle-escape-button" title="{{if (index $.LineEscapeStatus $idx).HasInvisible}}{{$.locale.Tr "repo.invisible_runes_line"}} {{end}}{{if (index $.LineEscapeStatus $idx).HasAmbiguous}}{{$.locale.Tr "repo.ambiguous_runes_line"}}{{end}}"></a>{{end}}</td>
|
2022-01-06 18:18:52 -07:00
|
|
|
{{end}}
|
2021-11-29 15:01:56 -07:00
|
|
|
<td rel="L{{$line}}" class="lines-code chroma"><code class="code-inner">{{$code | Safe}}</code></td>
|
2020-06-30 15:34:03 -06:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-08-10 08:47:28 -06:00
|
|
|
<div class="code-line-menu ui vertical pointing menu tippy-target">
|
2022-08-09 06:37:34 -06:00
|
|
|
{{if $.Permission.CanRead $.UnitTypeIssues}}
|
2022-08-25 15:55:52 -06:00
|
|
|
<a class="item ref-in-new-issue" href="{{.RepoLink}}/issues/new?body={{.Repository.HTMLURL}}{{printf "/src/commit/"}}{{PathEscape .CommitID}}/{{PathEscapeSegments .TreePath}}" rel="nofollow noindex">{{.locale.Tr "repo.issues.context.reference_issue"}}</a>
|
2022-08-09 06:37:34 -06:00
|
|
|
{{end}}
|
|
|
|
<a class="item view_git_blame" href="{{.Repository.HTMLURL}}/blame/commit/{{PathEscape .CommitID}}/{{PathEscapeSegments .TreePath}}">{{.locale.Tr "repo.view_git_blame"}}</a>
|
|
|
|
<a class="item copy-line-permalink" data-url="{{.Repository.HTMLURL}}/src/commit/{{PathEscape .CommitID}}/{{PathEscapeSegments .TreePath}}">{{.locale.Tr "repo.file_copy_permalink"}}</a>
|
2021-10-02 01:46:43 -06:00
|
|
|
</div>
|
2020-06-30 15:34:03 -06:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|