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