2020-11-08 12:21:54 -05:00
|
|
|
<div id="rev-container">
|
|
|
|
<ul id="rev-list">
|
2022-08-31 11:58:54 -04:00
|
|
|
{{range $commitI, $commit := .Graph.Commits}}
|
2021-04-01 16:01:23 -04:00
|
|
|
<li {{if $commit.Rev}}id="commit-{{$commit.Rev}}"{{end}} data-flow="{{$commit.Flow}}">
|
2022-08-31 11:58:54 -04:00
|
|
|
{{if $commit.OnlyRelation}}
|
2021-04-01 16:01:23 -04:00
|
|
|
<span></span>
|
2022-08-31 11:58:54 -04:00
|
|
|
{{else}}
|
2020-11-08 12:21:54 -05:00
|
|
|
<span class="sha" id="{{$commit.ShortRev}}">
|
|
|
|
{{$class := "ui sha label"}}
|
|
|
|
{{if $commit.Commit.Signature}}
|
|
|
|
{{$class = (printf "%s%s" $class " isSigned")}}
|
|
|
|
{{if $commit.Verification.Verified}}
|
|
|
|
{{if eq $commit.Verification.TrustStatus "trusted"}}
|
|
|
|
{{$class = (printf "%s%s" $class " isVerified")}}
|
|
|
|
{{else if eq $commit.Verification.TrustStatus "untrusted"}}
|
|
|
|
{{$class = (printf "%s%s" $class " isVerifiedUntrusted")}}
|
|
|
|
{{else}}
|
|
|
|
{{$class = (printf "%s%s" $class " isVerifiedUnmatched")}}
|
|
|
|
{{end}}
|
|
|
|
{{else if $commit.Verification.Warning}}
|
|
|
|
{{$class = (printf "%s%s" $class " isWarning")}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2021-11-16 13:18:25 -05:00
|
|
|
<a href="{{$.RepoLink}}/commit/{{$commit.Rev|PathEscape}}" rel="nofollow" class="{{$class}}">
|
2020-11-08 12:21:54 -05:00
|
|
|
<span class="shortsha">{{ShortSha $commit.Commit.ID.String}}</span>
|
|
|
|
{{- if $commit.Commit.Signature -}}
|
|
|
|
<span class="shortsha-pad"></span>{{template "repo/shabox_badge" dict "root" $ "verification" $commit.Verification}}
|
|
|
|
{{- end -}}
|
|
|
|
</a>
|
|
|
|
</span>
|
2023-03-27 15:32:11 -04:00
|
|
|
<span class="message gt-dib gt-ellipsis gt-mr-3">
|
2022-01-19 18:26:57 -05:00
|
|
|
<span>{{RenderCommitMessage $.Context $commit.Subject $.RepoLink $.Repository.ComposeMetas}}</span>
|
2021-12-11 09:12:18 -05:00
|
|
|
</span>
|
2023-03-27 15:32:11 -04:00
|
|
|
<span class="tags gt-df gt-ac gt-mr-2">
|
2020-11-08 12:21:54 -05:00
|
|
|
{{range $commit.Refs}}
|
|
|
|
{{$refGroup := .RefGroup}}
|
|
|
|
{{if eq $refGroup "pull"}}
|
2023-04-22 14:16:22 -04:00
|
|
|
{{if or (not $.HidePRRefs) (SliceUtils.Contains $.SelectedBranches .Name)}}
|
2021-05-06 00:05:54 -04:00
|
|
|
<!-- it's intended to use issues not pulls, if it's a pull you will get redirected -->
|
2023-02-13 12:59:59 -05:00
|
|
|
<a class="ui labelled icon button basic tiny gt-mr-2" href="{{$.RepoLink}}/{{if $.Repository.UnitEnabled $.Context $.UnitTypePullRequests}}pulls{{else}}issues{{end}}/{{.ShortName|PathEscape}}">
|
|
|
|
{{svg "octicon-git-pull-request" 16 "gt-mr-2"}}#{{.ShortName}}
|
2020-11-08 12:21:54 -05:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{else if eq $refGroup "tags"}}
|
2023-02-13 12:59:59 -05:00
|
|
|
<a class="ui labelled icon button basic tiny gt-mr-2" href="{{$.RepoLink}}/src/tag/{{.ShortName|PathEscape}}">
|
|
|
|
{{svg "octicon-tag" 16 "gt-mr-2"}}{{.ShortName}}
|
2020-11-08 12:21:54 -05:00
|
|
|
</a>
|
|
|
|
{{else if eq $refGroup "remotes"}}
|
2023-02-13 12:59:59 -05:00
|
|
|
<a class="ui labelled icon button basic tiny gt-mr-2" href="{{$.RepoLink}}/src/commit/{{$commit.Rev|PathEscape}}">
|
|
|
|
{{svg "octicon-cross-reference" 16 "gt-mr-2"}}{{.ShortName}}
|
2020-11-08 12:21:54 -05:00
|
|
|
</a>
|
|
|
|
{{else if eq $refGroup "heads"}}
|
2023-02-13 12:59:59 -05:00
|
|
|
<a class="ui labelled icon button basic tiny gt-mr-2" href="{{$.RepoLink}}/src/branch/{{.ShortName|PathEscape}}">
|
|
|
|
{{svg "octicon-git-branch" 16 "gt-mr-2"}}{{.ShortName}}
|
2020-11-08 12:21:54 -05:00
|
|
|
</a>
|
|
|
|
{{else}}
|
2023-03-27 15:32:11 -04:00
|
|
|
<!-- Unknown ref type .Name -->
|
2020-11-08 12:21:54 -05:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</span>
|
2023-03-27 15:32:11 -04:00
|
|
|
<span class="author gt-df gt-ac gt-mr-3">
|
2020-11-08 12:21:54 -05:00
|
|
|
{{$userName := $commit.Commit.Author.Name}}
|
|
|
|
{{if $commit.User}}
|
|
|
|
{{if $commit.User.FullName}}
|
|
|
|
{{$userName = $commit.User.FullName}}
|
|
|
|
{{end}}
|
2023-03-27 15:32:11 -04:00
|
|
|
<span class="gt-mr-2">{{avatar $.Context $commit.User}}</span>
|
2021-04-26 14:02:15 -04:00
|
|
|
<a href="{{$commit.User.HomeLink}}">{{$userName}}</a>
|
2020-11-08 12:21:54 -05:00
|
|
|
{{else}}
|
2023-03-27 15:32:11 -04:00
|
|
|
<span class="gt-mr-2">{{avatarByEmail $.Context $commit.Commit.Author.Email $userName}}</span>
|
2020-12-03 13:46:11 -05:00
|
|
|
{{$userName}}
|
2020-11-08 12:21:54 -05:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2023-04-28 14:58:59 -04:00
|
|
|
<span class="time gt-df gt-ac">{{DateTime "full" $commit.Date}}</span>
|
2022-08-31 11:58:54 -04:00
|
|
|
{{end}}
|
2020-11-08 12:21:54 -05:00
|
|
|
</li>
|
2022-08-31 11:58:54 -04:00
|
|
|
{{end}}
|
2020-11-08 12:21:54 -05:00
|
|
|
</ul>
|
|
|
|
</div>
|