2014-09-26 01:33:39 +02:00
|
|
|
{{range .Feeds}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="news">
|
|
|
|
<div class="ui left">
|
2020-12-09 06:11:15 +01:00
|
|
|
{{avatarByAction .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
<div class="ui grid">
|
2019-02-02 13:44:33 +01:00
|
|
|
<div class="ui fourteen wide column">
|
2018-09-07 04:06:09 +02:00
|
|
|
<div class="{{if or (eq .GetOpType 5) (eq .GetOpType 18)}}push news{{end}}">
|
2015-12-07 23:30:52 +01:00
|
|
|
<p>
|
2019-03-27 23:22:39 +01:00
|
|
|
{{if gt .ActUser.ID 0}}
|
2021-11-16 19:18:25 +01:00
|
|
|
<a href="{{AppSubUrl}}/{{.GetActUserName | PathEscape}}" title="{{.GetDisplayNameTitle}}">{{.GetDisplayName}}</a>
|
2019-03-27 23:22:39 +01:00
|
|
|
{{else}}
|
|
|
|
{{.ShortActUserName}}
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{if eq .GetOpType 1}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.create_repo" (.GetRepoLink|Escape) (.ShortRepoPath|Escape) | Str2html}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 2}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.rename_repo" (.GetContent|Escape) (.GetRepoLink|Escape) (.ShortRepoPath|Escape) | Str2html}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 5}}
|
2021-01-04 17:51:00 +01:00
|
|
|
{{if .Content}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.commit_repo" (.GetRepoLink|Escape) (.GetRefLink|Escape) (Escape .GetBranch) (.ShortRepoPath|Escape) | Str2html}}
|
2021-01-04 17:51:00 +01:00
|
|
|
{{else}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.create_branch" (.GetRepoLink|Escape) (.GetRefLink|Escape) (Escape .GetBranch) (.ShortRepoPath|Escape) | Str2html}}
|
2021-01-04 17:51:00 +01:00
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 6}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.create_issue" ((printf "%s/issues/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 7}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.create_pull_request" ((printf "%s/pulls/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 8}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.transfer_repo" .GetContent (.GetRepoLink|Escape) (.ShortRepoPath|Escape) | Str2html}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 9}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.push_tag" (.GetRepoLink|Escape) (.GetRefLink|Escape) (.GetTag|Escape) (.ShortRepoPath|Escape) | Str2html}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 10}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.comment_issue" ((printf "%s/issues/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 11}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.merge_pull_request" ((printf "%s/pulls/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2016-02-22 18:40:00 +01:00
|
|
|
{{else if eq .GetOpType 12}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.close_issue" ((printf "%s/issues/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2016-02-22 18:40:00 +01:00
|
|
|
{{else if eq .GetOpType 13}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.reopen_issue" ((printf "%s/issues/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2016-03-05 18:58:51 +01:00
|
|
|
{{else if eq .GetOpType 14}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.close_pull_request" ((printf "%s/pulls/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2016-03-05 18:58:51 +01:00
|
|
|
{{else if eq .GetOpType 15}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.reopen_pull_request" ((printf "%s/pulls/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2017-09-21 09:43:26 +02:00
|
|
|
{{else if eq .GetOpType 16}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.delete_tag" (.GetRepoLink|Escape) (.GetTag|Escape) (.ShortRepoPath|Escape) | Str2html}}
|
2017-09-21 09:43:26 +02:00
|
|
|
{{else if eq .GetOpType 17}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.delete_branch" (.GetRepoLink|Escape) (.GetBranch|Escape) (.ShortRepoPath|Escape) | Str2html}}
|
2018-09-07 04:06:09 +02:00
|
|
|
{{else if eq .GetOpType 18}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.mirror_sync_push" (.GetRepoLink|Escape) (.GetRefLink|Escape) (.GetBranch|Escape) (.ShortRepoPath|Escape) | Str2html}}
|
2018-09-07 04:06:09 +02:00
|
|
|
{{else if eq .GetOpType 19}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.mirror_sync_create" (.GetRepoLink|Escape) (.GetRefLink|Escape) (.GetBranch|Escape) (.ShortRepoPath|Escape) | Str2html}}
|
2018-09-07 04:06:09 +02:00
|
|
|
{{else if eq .GetOpType 20}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.mirror_sync_delete" (.GetRepoLink|Escape) (.GetBranch|Escape) (.ShortRepoPath|Escape) | Str2html}}
|
2019-11-15 00:52:18 +01:00
|
|
|
{{else if eq .GetOpType 21}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.approve_pull_request" ((printf "%s/pulls/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2019-11-15 00:52:18 +01:00
|
|
|
{{else if eq .GetOpType 22}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.reject_pull_request" ((printf "%s/pulls/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2019-12-22 09:29:26 +01:00
|
|
|
{{else if eq .GetOpType 23}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.comment_pull" ((printf "%s/pulls/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}}
|
2020-07-29 21:20:54 +02:00
|
|
|
{{else if eq .GetOpType 24}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$linkText := .Content | RenderEmoji}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.publish_release" (.GetRepoLink|Escape) ((printf "%s/releases/tag/%s" .GetRepoLink .GetTag)|Escape) (.ShortRepoPath|Escape) $linkText | Str2html}}
|
2021-02-11 18:32:25 +01:00
|
|
|
{{else if eq .GetOpType 25}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
|
|
|
{{$reviewer := index .GetIssueInfos 1}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "action.review_dismissed" ((printf "%s/pulls/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) $reviewer | Str2html}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
</p>
|
2018-09-07 04:06:09 +02:00
|
|
|
{{if or (eq .GetOpType 5) (eq .GetOpType 18)}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="content">
|
|
|
|
<ul>
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$push := ActionContent2Commits .}}
|
|
|
|
{{$repoLink := .GetRepoLink}}
|
2021-08-09 20:08:51 +02:00
|
|
|
{{range $push.Commits}}
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$commitLink := printf "%s/commit/%s" $repoLink .Sha1}}
|
2021-08-09 20:08:51 +02:00
|
|
|
<li>
|
|
|
|
{{avatarHTML ($push.AvatarLink .AuthorEmail) 16 "mr-2" .AuthorName}}
|
|
|
|
<a class="commit-id mr-2" href="{{$commitLink}}">{{ShortSha .Sha1}}</a>
|
|
|
|
<span class="text truncate light grey">
|
2022-01-20 00:26:57 +01:00
|
|
|
{{RenderCommitMessage $.Context .Message $repoLink $.ComposeMetas}}
|
2021-08-09 20:08:51 +02:00
|
|
|
</span>
|
|
|
|
</li>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{if and (gt $push.Len 1) $push.CompareURL}}<li><a href="{{AppSubUrl}}/{{$push.CompareURL}}">{{$.locale.Tr "action.compare_commits" $push.Len}} »</a></li>{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{else if eq .GetOpType 6}}
|
2022-10-15 20:24:41 +02:00
|
|
|
<span class="text truncate issue title">{{index .GetIssueInfos 1 | RenderEmoji | RenderCodeBlock}}</span>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 7}}
|
2022-10-15 20:24:41 +02:00
|
|
|
<span class="text truncate issue title">{{index .GetIssueInfos 1 | RenderEmoji | RenderCodeBlock}}</span>
|
2019-12-22 09:29:26 +01:00
|
|
|
{{else if or (eq .GetOpType 10) (eq .GetOpType 21) (eq .GetOpType 22) (eq .GetOpType 23)}}
|
2022-10-15 20:24:41 +02:00
|
|
|
<a href="{{.GetCommentLink}}" class="text truncate issue title">{{.GetIssueTitle | RenderEmoji | RenderCodeBlock}}</a>
|
2021-03-06 05:09:49 +01:00
|
|
|
{{$comment := index .GetIssueInfos 1}}
|
|
|
|
{{if gt (len $comment) 0}}<p class="text light grey">{{$comment | RenderEmoji}}</p>{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .GetOpType 11}}
|
2020-04-28 20:05:39 +02:00
|
|
|
<p class="text light grey">{{index .GetIssueInfos 1}}</p>
|
2020-04-16 23:26:24 +02:00
|
|
|
{{else if or (eq .GetOpType 12) (eq .GetOpType 13) (eq .GetOpType 14) (eq .GetOpType 15)}}
|
2022-10-15 20:24:41 +02:00
|
|
|
<span class="text truncate issue title">{{.GetIssueTitle | RenderEmoji | RenderCodeBlock}}</span>
|
2021-02-11 18:32:25 +01:00
|
|
|
{{else if eq .GetOpType 25}}
|
2022-06-27 22:58:46 +02:00
|
|
|
<p class="text light grey">{{$.locale.Tr "action.review_dismissed_reason"}}</p>
|
2021-02-11 18:32:25 +01:00
|
|
|
<p class="text light grey">{{index .GetIssueInfos 2 | RenderEmoji}}</p>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
2022-06-27 22:58:46 +02:00
|
|
|
<p class="text italic light grey">{{TimeSince .GetCreate $.locale}}</p>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-02 13:44:33 +01:00
|
|
|
<div class="ui two wide right aligned column">
|
2020-02-11 18:02:41 +01:00
|
|
|
<span class="text grey">{{svg (printf "octicon-%s" (ActionIcon .GetOpType)) 32}}</span>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|