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