2019-11-02 00:26:21 +00:00
|
|
|
<table id="repo-files-table" class="ui single line table">
|
2015-12-07 22:30:52 +00:00
|
|
|
<thead>
|
2017-11-30 05:08:40 +00:00
|
|
|
<tr class="commit-list">
|
2019-05-06 18:43:40 +00:00
|
|
|
<th colspan="2">
|
2016-08-30 09:08:38 +00:00
|
|
|
{{if .LatestCommitUser}}
|
2020-12-09 00:12:15 +00:00
|
|
|
{{avatar .LatestCommitUser 24}}
|
2017-10-26 07:45:14 +00:00
|
|
|
{{if .LatestCommitUser.FullName}}
|
|
|
|
<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{.LatestCommitUser.FullName}}</strong></a>
|
|
|
|
{{else}}
|
|
|
|
<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{if .LatestCommit.Author}}{{.LatestCommit.Author.Name}}{{else}}{{.LatestCommitUser.Name}}{{end}}</strong></a>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{else}}
|
2017-10-26 07:45:14 +00:00
|
|
|
{{if .LatestCommit.Author}}
|
2020-12-09 00:12:15 +00:00
|
|
|
{{avatarByEmail .LatestCommit.Author.Email .LatestCommit.Author.Name 24}}
|
2017-10-26 07:45:14 +00:00
|
|
|
<strong>{{.LatestCommit.Author.Name}}</strong>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
2020-02-27 19:20:55 +00:00
|
|
|
<a rel="nofollow" class="ui sha label {{if .LatestCommit.Signature}} isSigned {{if .LatestCommitVerification.Verified }} isVerified{{if eq .LatestCommitVerification.TrustStatus "trusted"}}{{else if eq .LatestCommitVerification.TrustStatus "untrusted"}}Untrusted{{else}}Unmatched{{end}}{{else if .LatestCommitVerification.Warning}} isWarning{{end}}{{end}}" href="{{.RepoLink}}/commit/{{.LatestCommit.ID}}">
|
2020-02-28 02:03:17 +00:00
|
|
|
<span class="shortsha">{{ShortSha .LatestCommit.ID.String}}</span>
|
2020-02-29 13:27:19 +00:00
|
|
|
{{if .LatestCommit.Signature}}
|
2020-06-03 00:22:26 +00:00
|
|
|
{{template "repo/shabox_badge" dict "root" $ "verification" .LatestCommitVerification}}
|
2020-02-29 13:27:19 +00:00
|
|
|
{{end}}
|
2017-05-05 07:15:36 +00:00
|
|
|
</a>
|
2020-12-20 03:13:12 +00:00
|
|
|
{{template "repo/commit_statuses" dict "Status" .LatestCommitStatus "Statuses" .LatestCommitStatuses "root" $}}
|
2019-09-10 09:03:30 +00:00
|
|
|
{{ $commitLink:= printf "%s/commit/%s" .RepoLink .LatestCommit.ID }}
|
2020-05-01 17:58:45 +00:00
|
|
|
<span class="grey commit-summary" title="{{.LatestCommit.Summary}}"><span class="message-wrapper">{{RenderCommitMessageLinkSubject .LatestCommit.Message $.RepoLink $commitLink $.Repository.ComposeMetas}}</span>
|
2017-11-30 05:08:40 +00:00
|
|
|
{{if IsMultilineCommitMessage .LatestCommit.Message}}
|
|
|
|
<button class="basic compact mini ui icon button commit-button"><i class="ellipsis horizontal icon"></i></button>
|
|
|
|
<pre class="commit-body" style="display: none;">{{RenderCommitBody .LatestCommit.Message $.RepoLink $.Repository.ComposeMetas}}</pre>
|
|
|
|
{{end}}
|
2019-08-20 12:40:06 +00:00
|
|
|
</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</th>
|
2019-05-06 18:43:40 +00:00
|
|
|
<th class="text grey right age">{{if .LatestCommit.Author}}{{TimeSince .LatestCommit.Author.When $.Lang}}{{end}}</th>
|
2015-12-07 22:30:52 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{if .HasParentPath}}
|
|
|
|
<tr class="has-parent">
|
2020-09-11 20:19:00 +00:00
|
|
|
<td colspan="3">{{svg "octicon-reply"}}<a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td>
|
2015-12-07 22:30:52 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
{{range $item := .Files}}
|
2020-12-17 14:00:47 +00:00
|
|
|
{{$entry := $item.Entry}}
|
|
|
|
{{$commit := $item.Commit}}
|
|
|
|
{{$subModuleFile := $item.SubModuleFile}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<tr>
|
2020-08-26 15:52:44 +00:00
|
|
|
<td class="name four wide">
|
|
|
|
<span class="truncate">
|
|
|
|
{{if $entry.IsSubModule}}
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-file-submodule"}}
|
2020-12-17 14:00:47 +00:00
|
|
|
{{$refURL := $subModuleFile.RefURL AppUrl $.Repository.FullName $.SSHDomain}}
|
2020-08-26 15:52:44 +00:00
|
|
|
{{if $refURL}}
|
2020-12-17 14:00:47 +00:00
|
|
|
<a href="{{$refURL}}">{{$entry.Name}}</a><span class="at">@</span><a href="{{$refURL}}/commit/{{$subModuleFile.RefID}}">{{ShortSha $subModuleFile.RefID}}</a>
|
2020-08-26 15:52:44 +00:00
|
|
|
{{else}}
|
2020-12-17 14:00:47 +00:00
|
|
|
{{$entry.Name}}<span class="at">@</span>{{ShortSha $subModuleFile.RefID}}
|
2020-08-26 15:52:44 +00:00
|
|
|
{{end}}
|
2020-08-23 19:05:17 +00:00
|
|
|
{{else}}
|
2020-08-26 15:52:44 +00:00
|
|
|
{{if $entry.IsDir}}
|
|
|
|
{{$subJumpablePathName := $entry.GetSubJumpablePathName}}
|
|
|
|
{{$subJumpablePath := SubJumpablePath $subJumpablePathName}}
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "octicon-file-directory"}}
|
2020-08-27 20:45:37 +00:00
|
|
|
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $subJumpablePathName}}" title="{{$subJumpablePathName}}">
|
2020-08-26 15:52:44 +00:00
|
|
|
{{if eq (len $subJumpablePath) 2}}
|
|
|
|
<span class="jumpable-path">{{index $subJumpablePath 0}}</span>{{index $subJumpablePath 1}}
|
|
|
|
{{else}}
|
|
|
|
{{index $subJumpablePath 0}}
|
|
|
|
{{end}}
|
|
|
|
</a>
|
|
|
|
{{else}}
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg (printf "octicon-%s" (EntryIcon $entry))}}
|
2020-08-27 20:45:37 +00:00
|
|
|
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $entry.Name}}" title="{{$entry.Name}}">{{$entry.Name}}</a>
|
2020-08-26 15:52:44 +00:00
|
|
|
{{end}}
|
2020-08-23 19:05:17 +00:00
|
|
|
{{end}}
|
2020-08-26 15:52:44 +00:00
|
|
|
</span>
|
|
|
|
</td>
|
2019-11-02 00:26:21 +00:00
|
|
|
<td class="message nine wide">
|
2020-08-26 15:52:44 +00:00
|
|
|
<span class="truncate">
|
2020-08-27 20:45:37 +00:00
|
|
|
<a href="{{$.RepoLink}}/commit/{{$commit.ID}}" title="{{$commit.Summary}}">{{$commit.Summary | RenderEmoji}}</a>
|
2020-08-26 15:52:44 +00:00
|
|
|
</span>
|
2015-12-07 22:30:52 +00:00
|
|
|
</td>
|
2019-12-17 21:34:11 +00:00
|
|
|
<td class="text right age three wide">{{TimeSince $commit.Committer.When $.Lang}}</td>
|
2015-12-07 22:30:52 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
2014-07-26 04:24:27 +00:00
|
|
|
</table>
|
|
|
|
{{if .ReadmeExist}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "repo/view_file" .}}
|
2015-07-28 08:42:06 +00:00
|
|
|
{{end}}
|