2017-10-27 09:10:54 +03:00
<div class=" {{ TabSizeClass .Editorconfig .FileName }} non-diff-file-content">
2020-11-01 23:04:26 +03:00
<h4 class="file-header ui top attached header df ac sb">
2020-09-08 20:17:56 +03:00
<div class="file-header-left df ac">
2019-10-07 07:59:17 +03:00
{{ if .ReadmeInList }}
2020-09-08 20:17:56 +03:00
{{ svg "octicon-book" 1 6 "mr-3" }}
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 }}
2021-11-18 06:26:50 +03:00
<div class="file-info-entry ui tooltip" data-content=" {{ .LFSLockHint }} ">
2020-09-08 20:17:56 +03:00
{{ svg "octicon-lock" 1 6 "mr-2" }}
2021-11-16 21:18:25 +03:00
<a href=" {{ .LFSLock .Owner .HomeLink }} "> {{ .LFSLockOwner }} </a>
2019-10-30 00:32:21 +03:00
</div>
{{ end }}
2019-10-07 07:59:17 +03:00
</div>
{{ end }}
</div>
{{ if not .ReadmeInList }}
2020-11-01 23:04:26 +03:00
<div class="file-header-right file-actions df ac">
2021-01-13 06:45:19 +03:00
{{ if .HasSourceRenderedToggle }}
2021-04-23 00:43:44 +03:00
<div class="ui compact icon buttons two-toggle-buttons">
2021-11-18 06:26:50 +03:00
<a href=" {{ $ .Link }} ?display=source" class="ui mini basic button tooltip {{ if .IsDisplayingSource }} active {{ end }} " data-content=" {{ .i18n .Tr "repo.file_view_source" }} " data-position="bottom center"> {{ svg "octicon-code" 1 5 }} </a>
<a href=" {{ $ .Link }} " class="ui mini basic button tooltip {{ if .IsDisplayingRendered }} active {{ end }} " data-content=" {{ .i18n .Tr "repo.file_view_rendered" }} " data-position="bottom center"> {{ svg "octicon-file" 1 5 }} </a>
2021-01-13 06:45:19 +03:00
</div>
{{ end }}
2020-12-03 20:05:35 +03:00
<div class="ui buttons mr-2">
2021-11-16 21:18:25 +03:00
<a class="ui mini basic button" href=" {{ $ .RawFileLink }} "> {{ .i18n .Tr "repo.file_raw" }} </a>
2020-11-01 23:04:26 +03:00
{{ if not .IsViewCommit }}
2021-11-16 21:18:25 +03:00
<a class="ui mini basic button" href=" {{ .RepoLink }} /src/commit/ {{ PathEscape .CommitID }} / {{ PathEscapeSegments .TreePath }} "> {{ .i18n .Tr "repo.file_permalink" }} </a>
2016-08-11 15:48:08 +03:00
{{ end }}
2021-01-13 06:45:19 +03:00
{{ if .IsRepresentableAsText }}
2021-11-16 21:18:25 +03:00
<a class="ui mini basic button" href=" {{ .RepoLink }} /blame/ {{ .BranchNameSubURL }} / {{ PathEscapeSegments .TreePath }} "> {{ .i18n .Tr "repo.blame" }} </a>
2020-11-01 23:04:26 +03:00
{{ end }}
2021-11-16 21:18:25 +03:00
<a class="ui mini basic button" href=" {{ .RepoLink }} /commits/ {{ .BranchNameSubURL }} / {{ PathEscapeSegments .TreePath }} "> {{ .i18n .Tr "repo.file_history" }} </a>
2015-12-08 01:30:52 +03:00
</div>
2021-11-18 06:26:50 +03:00
<a download href=" {{ $ .RawFileLink }} "><span class="btn-octicon tooltip" data-content=" {{ .i18n .Tr "repo.download_file" }} " data-position="bottom center"> {{ svg "octicon-download" }} </span></a>
2020-11-01 23:04:26 +03:00
{{ if .Repository .CanEnableEditor }}
{{ if .CanEditFile }}
2021-11-18 06:26:50 +03:00
<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>
2020-11-01 23:04:26 +03:00
{{ else }}
2021-11-18 06:26:50 +03:00
<span class="btn-octicon tooltip disabled" data-content=" {{ .EditFileTooltip }} " data-position="bottom center"> {{ svg "octicon-pencil" }} </span>
2020-11-01 23:04:26 +03:00
{{ end }}
{{ if .CanDeleteFile }}
2021-11-18 06:26:50 +03:00
<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>
2020-11-01 23:04:26 +03:00
{{ else }}
2021-11-18 06:26:50 +03:00
<span class="btn-octicon tooltip disabled" data-content=" {{ .DeleteFileTooltip }} " data-position="bottom center"> {{ svg "octicon-trash" }} </span>
2020-11-01 23:04:26 +03:00
{{ end }}
{{ end }}
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">
2021-05-07 11:43:41 +03:00
<div class="file-view {{ if .IsMarkup }} markup {{ .MarkupType }} {{ else if .IsRenderedHTML }} plain-text {{ else if .IsTextSource }} 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>
2021-01-13 06:45:19 +03:00
{{ else if not .IsTextSource }}
2015-12-25 13:45:07 +03:00
<div class="view-raw ui center">
2015-12-08 01:30:52 +03:00
{{ if .IsImageFile }}
2021-11-16 21:18:25 +03:00
<img src=" {{ $ .RawFileLink }} ">
2016-12-20 11:09:11 +03:00
{{ else if .IsVideoFile }}
2021-11-16 21:18:25 +03:00
<video controls src=" {{ $ .RawFileLink }} ">
2016-12-20 11:09:11 +03:00
<strong> {{ .i18n .Tr "repo.video_not_supported_in_browser" }} </strong>
</video>
2018-10-30 05:17:26 +03:00
{{ else if .IsAudioFile }}
2021-11-16 21:18:25 +03:00
<audio controls src=" {{ $ .RawFileLink }} ">
2018-10-30 05:17:26 +03:00
<strong> {{ .i18n .Tr "repo.audio_not_supported_in_browser" }} </strong>
</audio>
2016-04-27 04:48:44 +03:00
{{ else if .IsPDFFile }}
2021-11-16 21:18:25 +03:00
<iframe width="100%" height="600px" src=" {{ AssetUrlPrefix }} /vendor/plugins/pdfjs/web/viewer.html?file= {{ $ .RawFileLink }} "></iframe>
2015-12-08 01:30:52 +03:00
{{ else }}
2021-11-16 21:18:25 +03:00
<a href=" {{ $ .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>
2021-08-24 00:23:39 +03:00
{{ range $ idx , $ code : = .FileContent }}
{{ $ line : = Add $ idx 1 }}
2020-07-01 00:34:03 +03:00
<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 10:14:07 +03:00
<code class="code-inner"> {{ $ code | Safe }} </code>
2020-07-01 00:34:03 +03:00
</td>
</tr>
{{ end }}
</tbody>
</table>
2021-10-02 10:46:43 +03:00
<div class="code-line-menu ui fluid popup transition hidden">
<div class="ui column relaxed equal height">
<div class="column">
{{ if $ .Permission .CanRead $ .UnitTypeIssues }}
<div class="ui link list">
2021-11-16 21:18:25 +03:00
<a class="item ref-in-new-issue" href=" {{ .RepoLink }} /issues/new?body= {{ .Repository .HTMLURL }} {{ printf "/src/commit/" }} {{ PathEscape .CommitID }} / {{ PathEscapeSegments .TreePath }} "> {{ .i18n .Tr "repo.issues.context.reference_issue" }} </a>
2021-05-07 14:59:01 +03:00
</div>
2021-10-02 10:46:43 +03:00
{{ end }}
<div class="ui link list">
2021-11-16 21:18:25 +03:00
<a data-clipboard-text=" {{ .Repository .HTMLURL }} /src/commit/ {{ PathEscape .CommitID }} / {{ PathEscapeSegments .TreePath }} " class="item copy-line-permalink"> {{ .i18n .Tr "repo.file_copy_permalink" }} </a>
2021-03-18 05:02:38 +03:00
</div>
</div>
2021-10-02 10:46:43 +03:00
</div>
</div>
2020-07-01 00:34:03 +03:00
{{ end }}
2015-12-08 01:30:52 +03:00
{{ end }}
</div>
</div>
</div>