2020-11-08 17:21:54 +00:00
|
|
|
<div id="rev-container">
|
|
|
|
<ul id="rev-list">
|
2022-08-31 15:58:54 +00:00
|
|
|
{{range $commitI, $commit := .Graph.Commits}}
|
2021-04-01 20:01:23 +00:00
|
|
|
<li {{if $commit.Rev}}id="commit-{{$commit.Rev}}"{{end}} data-flow="{{$commit.Flow}}">
|
2022-08-31 15:58:54 +00:00
|
|
|
{{if $commit.OnlyRelation}}
|
2021-04-01 20:01:23 +00:00
|
|
|
<span></span>
|
2022-08-31 15:58:54 +00:00
|
|
|
{{else}}
|
2020-11-08 17:21:54 +00:00
|
|
|
<span class="sha" id="{{$commit.ShortRev}}">
|
|
|
|
{{$class := "ui sha label"}}
|
|
|
|
{{if $commit.Commit.Signature}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isSigned")}}
|
2020-11-08 17:21:54 +00:00
|
|
|
{{if $commit.Verification.Verified}}
|
|
|
|
{{if eq $commit.Verification.TrustStatus "trusted"}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isVerified")}}
|
2020-11-08 17:21:54 +00:00
|
|
|
{{else if eq $commit.Verification.TrustStatus "untrusted"}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isVerifiedUntrusted")}}
|
2020-11-08 17:21:54 +00:00
|
|
|
{{else}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isVerifiedUnmatched")}}
|
2020-11-08 17:21:54 +00:00
|
|
|
{{end}}
|
|
|
|
{{else if $commit.Verification.Warning}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isWarning")}}
|
2020-11-08 17:21:54 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2021-11-16 18:18:25 +00:00
|
|
|
<a href="{{$.RepoLink}}/commit/{{$commit.Rev|PathEscape}}" rel="nofollow" class="{{$class}}">
|
2020-11-08 17:21:54 +00:00
|
|
|
<span class="shortsha">{{ShortSha $commit.Commit.ID.String}}</span>
|
|
|
|
{{- if $commit.Commit.Signature -}}
|
2023-09-03 02:58:52 +00:00
|
|
|
{{template "repo/shabox_badge" dict "root" $ "verification" $commit.Verification}}
|
2020-11-08 17:21:54 +00:00
|
|
|
{{- end -}}
|
|
|
|
</a>
|
|
|
|
</span>
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
<span class="message tw-inline-block gt-ellipsis tw-mr-2">
|
2024-01-15 08:49:24 +00:00
|
|
|
<span>{{RenderCommitMessage $.Context $commit.Subject ($.Repository.ComposeMetas ctx)}}</span>
|
2021-12-11 14:12:18 +00:00
|
|
|
</span>
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
<span class="commit-refs tw-flex tw-items-center tw-mr-1">
|
2020-11-08 17:21:54 +00:00
|
|
|
{{range $commit.Refs}}
|
|
|
|
{{$refGroup := .RefGroup}}
|
|
|
|
{{if eq $refGroup "pull"}}
|
2023-04-22 18:16:22 +00:00
|
|
|
{{if or (not $.HidePRRefs) (SliceUtils.Contains $.SelectedBranches .Name)}}
|
2021-05-06 04:05:54 +00:00
|
|
|
<!-- it's intended to use issues not pulls, if it's a pull you will get redirected -->
|
2024-06-24 18:59:57 +00:00
|
|
|
<a class="ui basic button" href="{{$.RepoLink}}/{{if $.Repository.UnitEnabled $.Context $.UnitTypePullRequests}}pulls{{else}}issues{{end}}/{{.ShortName|PathEscape}}">
|
2023-07-25 10:17:41 +00:00
|
|
|
{{svg "octicon-git-pull-request"}} #{{.ShortName}}
|
2020-11-08 17:21:54 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{else if eq $refGroup "tags"}}
|
2024-06-24 18:59:57 +00:00
|
|
|
<a class="ui basic button" href="{{$.RepoLink}}/src/tag/{{.ShortName|PathEscape}}">
|
2023-07-25 10:17:41 +00:00
|
|
|
{{svg "octicon-tag"}} {{.ShortName}}
|
2020-11-08 17:21:54 +00:00
|
|
|
</a>
|
|
|
|
{{else if eq $refGroup "remotes"}}
|
2024-06-24 18:59:57 +00:00
|
|
|
<a class="ui basic button" href="{{$.RepoLink}}/src/commit/{{$commit.Rev|PathEscape}}">
|
2023-07-25 10:17:41 +00:00
|
|
|
{{svg "octicon-cross-reference"}} {{.ShortName}}
|
2020-11-08 17:21:54 +00:00
|
|
|
</a>
|
|
|
|
{{else if eq $refGroup "heads"}}
|
2024-06-24 18:59:57 +00:00
|
|
|
<a class="ui basic button" href="{{$.RepoLink}}/src/branch/{{.ShortName|PathEscape}}">
|
2023-07-25 10:17:41 +00:00
|
|
|
{{svg "octicon-git-branch"}} {{.ShortName}}
|
2020-11-08 17:21:54 +00:00
|
|
|
</a>
|
|
|
|
{{else}}
|
2023-03-27 19:32:11 +00:00
|
|
|
<!-- Unknown ref type .Name -->
|
2020-11-08 17:21:54 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</span>
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
<span class="author tw-flex tw-items-center tw-mr-2">
|
2020-11-08 17:21:54 +00:00
|
|
|
{{$userName := $commit.Commit.Author.Name}}
|
|
|
|
{{if $commit.User}}
|
2024-03-28 19:15:39 +00:00
|
|
|
{{if and $commit.User.FullName DefaultShowFullName}}
|
2020-11-08 17:21:54 +00:00
|
|
|
{{$userName = $commit.User.FullName}}
|
|
|
|
{{end}}
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
<span class="tw-mr-1">{{ctx.AvatarUtils.Avatar $commit.User}}</span>
|
2021-04-26 18:02:15 +00:00
|
|
|
<a href="{{$commit.User.HomeLink}}">{{$userName}}</a>
|
2020-11-08 17:21:54 +00:00
|
|
|
{{else}}
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
<span class="tw-mr-1">{{ctx.AvatarUtils.AvatarByEmail $commit.Commit.Author.Email $userName}}</span>
|
2020-12-03 18:46:11 +00:00
|
|
|
{{$userName}}
|
2020-11-08 17:21:54 +00:00
|
|
|
{{end}}
|
|
|
|
</span>
|
2024-03-22 19:51:29 +00:00
|
|
|
<span class="time tw-flex tw-items-center">{{DateTime "full" $commit.Date}}</span>
|
2022-08-31 15:58:54 +00:00
|
|
|
{{end}}
|
2020-11-08 17:21:54 +00:00
|
|
|
</li>
|
2022-08-31 15:58:54 +00:00
|
|
|
{{end}}
|
2020-11-08 17:21:54 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|