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