Show More
@@ -1,201 +1,201 b'' | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | <%inherit file="base.mako"/> |
|
3 | 3 | <%namespace name="base" file="base.mako"/> |
|
4 | 4 | |
|
5 | 5 | ## EMAIL SUBJECT |
|
6 | 6 | <%def name="subject()" filter="n,trim,whitespace_filter"> |
|
7 | 7 | <% |
|
8 | 8 | data = { |
|
9 | 9 | 'user': '@'+h.person(user), |
|
10 | 10 | 'repo_name': repo_name, |
|
11 | 11 | 'status': status_change, |
|
12 | 12 | 'comment_file': comment_file, |
|
13 | 13 | 'comment_line': comment_line, |
|
14 | 14 | 'comment_type': comment_type, |
|
15 | 15 | 'comment_id': comment_id, |
|
16 | 16 | |
|
17 | 17 | 'pr_title': pull_request.title, |
|
18 | 18 | 'pr_id': pull_request.pull_request_id, |
|
19 | 19 | } |
|
20 | 20 | %> |
|
21 | 21 | |
|
22 | 22 | |
|
23 | 23 | % if comment_file: |
|
24 | 24 | ${(_('[mention]') if mention else '')} ${_('{user} left a {comment_type} on file `{comment_file}` in pull request !{pr_id}: "{pr_title}"').format(**data) |n} |
|
25 | 25 | % else: |
|
26 | 26 | % if status_change: |
|
27 | 27 | ${(_('[mention]') if mention else '')} ${_('[status: {status}] {user} left a {comment_type} on pull request !{pr_id}: "{pr_title}"').format(**data) |n} |
|
28 | 28 | % else: |
|
29 | 29 | ${(_('[mention]') if mention else '')} ${_('{user} left a {comment_type} on pull request !{pr_id}: "{pr_title}"').format(**data) |n} |
|
30 | 30 | % endif |
|
31 | 31 | % endif |
|
32 | 32 | |
|
33 | 33 | </%def> |
|
34 | 34 | |
|
35 | 35 | ## PLAINTEXT VERSION OF BODY |
|
36 | 36 | <%def name="body_plaintext()" filter="n,trim"> |
|
37 | 37 | <% |
|
38 | 38 | data = { |
|
39 | 39 | 'user': h.person(user), |
|
40 | 40 | 'repo_name': repo_name, |
|
41 | 41 | 'status': status_change, |
|
42 | 42 | 'comment_file': comment_file, |
|
43 | 43 | 'comment_line': comment_line, |
|
44 | 44 | 'comment_type': comment_type, |
|
45 | 45 | 'comment_id': comment_id, |
|
46 | 46 | |
|
47 | 47 | 'pr_title': pull_request.title, |
|
48 | 48 | 'pr_id': pull_request.pull_request_id, |
|
49 | 49 | 'source_ref_type': pull_request.source_ref_parts.type, |
|
50 | 50 | 'source_ref_name': pull_request.source_ref_parts.name, |
|
51 | 51 | 'target_ref_type': pull_request.target_ref_parts.type, |
|
52 | 52 | 'target_ref_name': pull_request.target_ref_parts.name, |
|
53 | 53 | 'source_repo': pull_request_source_repo.repo_name, |
|
54 | 54 | 'target_repo': pull_request_target_repo.repo_name, |
|
55 | 55 | 'source_repo_url': pull_request_source_repo_url, |
|
56 | 56 | 'target_repo_url': pull_request_target_repo_url, |
|
57 | 57 | } |
|
58 | 58 | %> |
|
59 | 59 | |
|
60 | 60 | * ${_('Comment link')}: ${pr_comment_url} |
|
61 | 61 | |
|
62 | 62 | * ${_('Pull Request')}: !${pull_request.pull_request_id} |
|
63 | 63 | |
|
64 | 64 | * ${h.literal(_('Commit flow: {source_ref_type}:{source_ref_name} of {source_repo_url} into {target_ref_type}:{target_ref_name} of {target_repo_url}').format(**data))} |
|
65 | 65 | |
|
66 | 66 | %if status_change and not closing_pr: |
|
67 | 67 | * ${_('{user} submitted pull request !{pr_id} status: *{status}*').format(**data)} |
|
68 | 68 | |
|
69 | 69 | %elif status_change and closing_pr: |
|
70 | 70 | * ${_('{user} submitted pull request !{pr_id} status: *{status} and closed*').format(**data)} |
|
71 | 71 | |
|
72 | 72 | %endif |
|
73 | 73 | %if comment_file: |
|
74 | 74 | * ${_('File: {comment_file} on line {comment_line}').format(**data)} |
|
75 | 75 | |
|
76 | 76 | %endif |
|
77 | 77 | % if comment_type == 'todo': |
|
78 | 78 | ${('Inline' if comment_file else 'General')} ${_('`TODO` number')} ${comment_id}: |
|
79 | 79 | % else: |
|
80 | 80 | ${('Inline' if comment_file else 'General')} ${_('`Note` number')} ${comment_id}: |
|
81 | 81 | % endif |
|
82 | 82 | |
|
83 | 83 | ${comment_body |n, trim} |
|
84 | 84 | |
|
85 | 85 | --- |
|
86 | 86 | ${self.plaintext_footer()} |
|
87 | 87 | </%def> |
|
88 | 88 | |
|
89 | 89 | |
|
90 | 90 | <% |
|
91 | 91 | data = { |
|
92 | 92 | 'user': h.person(user), |
|
93 | 93 | 'comment_file': comment_file, |
|
94 | 94 | 'comment_line': comment_line, |
|
95 | 95 | 'comment_type': comment_type, |
|
96 | 96 | 'comment_id': comment_id, |
|
97 | 97 | 'renderer_type': renderer_type or 'plain', |
|
98 | 98 | |
|
99 | 99 | 'pr_title': pull_request.title, |
|
100 | 100 | 'pr_id': pull_request.pull_request_id, |
|
101 | 101 | 'status': status_change, |
|
102 | 102 | 'source_ref_type': pull_request.source_ref_parts.type, |
|
103 | 103 | 'source_ref_name': pull_request.source_ref_parts.name, |
|
104 | 104 | 'target_ref_type': pull_request.target_ref_parts.type, |
|
105 | 105 | 'target_ref_name': pull_request.target_ref_parts.name, |
|
106 | 106 | 'source_repo': pull_request_source_repo.repo_name, |
|
107 | 107 | 'target_repo': pull_request_target_repo.repo_name, |
|
108 | 108 | 'source_repo_url': h.link_to(pull_request_source_repo.repo_name, pull_request_source_repo_url), |
|
109 | 109 | 'target_repo_url': h.link_to(pull_request_target_repo.repo_name, pull_request_target_repo_url), |
|
110 | 110 | } |
|
111 | 111 | %> |
|
112 | 112 | |
|
113 | 113 | <table style="text-align:left;vertical-align:middle;width: 100%"> |
|
114 | 114 | <tr> |
|
115 | 115 | <td style="width:100%;border-bottom:1px solid #dbd9da;"> |
|
116 | 116 | |
|
117 | 117 | <h4 style="margin: 0"> |
|
118 | 118 | <div style="margin-bottom: 4px; color:#7E7F7F"> |
|
119 | 119 | @${h.person(user.username)} |
|
120 | 120 | </div> |
|
121 | 121 | ${_('left a')} |
|
122 | 122 | <a href="${pr_comment_url}" style="${base.link_css()}"> |
|
123 | 123 | % if comment_file: |
|
124 | 124 | ${_('{comment_type} on file `{comment_file}` in pull request.').format(**data)} |
|
125 | 125 | % else: |
|
126 | 126 | ${_('{comment_type} on pull request.').format(**data) |n} |
|
127 | 127 | % endif |
|
128 | 128 | </a> |
|
129 | 129 | <div style="margin-top: 10px"></div> |
|
130 | 130 | ${_('Pull request')} <code>!${data['pr_id']}: ${data['pr_title']}</code> |
|
131 | 131 | </h4> |
|
132 | 132 | |
|
133 | 133 | </td> |
|
134 | 134 | </tr> |
|
135 | 135 | |
|
136 | 136 | </table> |
|
137 | 137 | |
|
138 | 138 | <table style="text-align:left;vertical-align:middle;width: 100%"> |
|
139 | 139 | |
|
140 | 140 | ## spacing def |
|
141 | 141 | <tr> |
|
142 | 142 | <td style="width: 130px"></td> |
|
143 | 143 | <td></td> |
|
144 | 144 | </tr> |
|
145 | 145 | |
|
146 | 146 | % if status_change: |
|
147 | 147 | <tr> |
|
148 | 148 | <td style="padding-right:20px;">${_('Review Status')}:</td> |
|
149 | 149 | <td> |
|
150 | 150 | % if closing_pr: |
|
151 | 151 | ${_('Closed pull request with status')}: ${base.status_text(status_change, tag_type=status_change_type)} |
|
152 | 152 | % else: |
|
153 | 153 | ${_('Submitted review status')}: ${base.status_text(status_change, tag_type=status_change_type)} |
|
154 | 154 | % endif |
|
155 | 155 | </td> |
|
156 | 156 | </tr> |
|
157 | 157 | % endif |
|
158 | 158 | <tr> |
|
159 | 159 | <td style="padding-right:20px;">${_('Pull request')}:</td> |
|
160 | 160 | <td> |
|
161 | 161 | <a href="${pull_request_url}" style="${base.link_css()}"> |
|
162 | 162 | !${pull_request.pull_request_id} |
|
163 | 163 | </a> |
|
164 | 164 | </td> |
|
165 | 165 | </tr> |
|
166 | 166 | |
|
167 | 167 | <tr> |
|
168 | 168 | <td style="padding-right:20px;line-height:20px;">${_('Commit Flow')}:</td> |
|
169 | 169 | <td style="line-height:20px;"> |
|
170 |
${ |
|
|
170 | <code>${'{}:{}'.format(data['source_ref_type'], pull_request.source_ref_parts.name)}</code> ${_('of')} ${data['source_repo_url']} | |
|
171 | 171 | → |
|
172 |
${ |
|
|
172 | <code>${'{}:{}'.format(data['target_ref_type'], pull_request.target_ref_parts.name)}</code> ${_('of')} ${data['target_repo_url']} | |
|
173 | 173 | </td> |
|
174 | 174 | </tr> |
|
175 | 175 | |
|
176 | 176 | % if comment_file: |
|
177 | 177 | <tr> |
|
178 | 178 | <td style="padding-right:20px;">${_('File')}:</td> |
|
179 | 179 | <td><a href="${pr_comment_url}" style="${base.link_css()}">${_('`{comment_file}` on line {comment_line}').format(**data)}</a></td> |
|
180 | 180 | </tr> |
|
181 | 181 | % endif |
|
182 | 182 | |
|
183 | 183 | <tr style="border-bottom:1px solid #dbd9da;"> |
|
184 | 184 | <td colspan="2" style="padding-right:20px;"> |
|
185 | 185 | % if comment_type == 'todo': |
|
186 | 186 | ${('Inline' if comment_file else 'General')} ${_('`TODO` number')} ${comment_id}: |
|
187 | 187 | % else: |
|
188 | 188 | ${('Inline' if comment_file else 'General')} ${_('`Note` number')} ${comment_id}: |
|
189 | 189 | % endif |
|
190 | 190 | </td> |
|
191 | 191 | </tr> |
|
192 | 192 | |
|
193 | 193 | <tr> |
|
194 | 194 | <td colspan="2" style="background: #F7F7F7">${h.render(comment_body, renderer=data['renderer_type'], mentions=True)}</td> |
|
195 | 195 | </tr> |
|
196 | 196 | |
|
197 | 197 | <tr> |
|
198 | 198 | <td><a href="${pr_comment_reply_url}">${_('Reply')}</a></td> |
|
199 | 199 | <td></td> |
|
200 | 200 | </tr> |
|
201 | 201 | </table> |
@@ -1,143 +1,143 b'' | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | <%inherit file="base.mako"/> |
|
3 | 3 | <%namespace name="base" file="base.mako"/> |
|
4 | 4 | |
|
5 | 5 | ## EMAIL SUBJECT |
|
6 | 6 | <%def name="subject()" filter="n,trim,whitespace_filter"> |
|
7 | 7 | <% |
|
8 | 8 | data = { |
|
9 | 9 | 'user': '@'+h.person(user), |
|
10 | 10 | 'pr_id': pull_request.pull_request_id, |
|
11 | 11 | 'pr_title': pull_request.title, |
|
12 | 12 | } |
|
13 | 13 | %> |
|
14 | 14 | |
|
15 | 15 | ${_('{user} requested a pull request review. !{pr_id}: "{pr_title}"').format(**data) |n} |
|
16 | 16 | </%def> |
|
17 | 17 | |
|
18 | 18 | ## PLAINTEXT VERSION OF BODY |
|
19 | 19 | <%def name="body_plaintext()" filter="n,trim"> |
|
20 | 20 | <% |
|
21 | 21 | data = { |
|
22 | 22 | 'user': h.person(user), |
|
23 | 23 | 'pr_id': pull_request.pull_request_id, |
|
24 | 24 | 'pr_title': pull_request.title, |
|
25 | 25 | 'source_ref_type': pull_request.source_ref_parts.type, |
|
26 | 26 | 'source_ref_name': pull_request.source_ref_parts.name, |
|
27 | 27 | 'target_ref_type': pull_request.target_ref_parts.type, |
|
28 | 28 | 'target_ref_name': pull_request.target_ref_parts.name, |
|
29 | 29 | 'repo_url': pull_request_source_repo_url, |
|
30 | 30 | 'source_repo': pull_request_source_repo.repo_name, |
|
31 | 31 | 'target_repo': pull_request_target_repo.repo_name, |
|
32 | 32 | 'source_repo_url': pull_request_source_repo_url, |
|
33 | 33 | 'target_repo_url': pull_request_target_repo_url, |
|
34 | 34 | } |
|
35 | 35 | %> |
|
36 | 36 | |
|
37 | 37 | * ${_('Pull Request link')}: ${pull_request_url} |
|
38 | 38 | |
|
39 | 39 | * ${h.literal(_('Commit flow: {source_ref_type}:{source_ref_name} of {source_repo_url} into {target_ref_type}:{target_ref_name} of {target_repo_url}').format(**data))} |
|
40 | 40 | |
|
41 | 41 | * ${_('Title')}: ${pull_request.title} |
|
42 | 42 | |
|
43 | 43 | * ${_('Description')}: |
|
44 | 44 | |
|
45 | 45 | ${pull_request.description | trim} |
|
46 | 46 | |
|
47 | 47 | |
|
48 | 48 | * ${_ungettext('Commit (%(num)s)', 'Commits (%(num)s)', len(pull_request_commits) ) % {'num': len(pull_request_commits)}}: |
|
49 | 49 | |
|
50 | 50 | % for commit_id, message in pull_request_commits: |
|
51 | 51 | - ${h.short_id(commit_id)} |
|
52 | 52 | ${h.chop_at_smart(message, '\n', suffix_if_chopped='...')} |
|
53 | 53 | |
|
54 | 54 | % endfor |
|
55 | 55 | |
|
56 | 56 | --- |
|
57 | 57 | ${self.plaintext_footer()} |
|
58 | 58 | </%def> |
|
59 | 59 | <% |
|
60 | 60 | data = { |
|
61 | 61 | 'user': h.person(user), |
|
62 | 62 | 'pr_id': pull_request.pull_request_id, |
|
63 | 63 | 'pr_title': pull_request.title, |
|
64 | 64 | 'source_ref_type': pull_request.source_ref_parts.type, |
|
65 | 65 | 'source_ref_name': pull_request.source_ref_parts.name, |
|
66 | 66 | 'target_ref_type': pull_request.target_ref_parts.type, |
|
67 | 67 | 'target_ref_name': pull_request.target_ref_parts.name, |
|
68 | 68 | 'repo_url': pull_request_source_repo_url, |
|
69 | 69 | 'source_repo': pull_request_source_repo.repo_name, |
|
70 | 70 | 'target_repo': pull_request_target_repo.repo_name, |
|
71 | 71 | 'source_repo_url': h.link_to(pull_request_source_repo.repo_name, pull_request_source_repo_url), |
|
72 | 72 | 'target_repo_url': h.link_to(pull_request_target_repo.repo_name, pull_request_target_repo_url), |
|
73 | 73 | } |
|
74 | 74 | %> |
|
75 | 75 | |
|
76 | 76 | <table style="text-align:left;vertical-align:middle;width: 100%"> |
|
77 | 77 | <tr> |
|
78 | 78 | <td style="width:100%;border-bottom:1px solid #dbd9da;"> |
|
79 | 79 | |
|
80 | 80 | <h4 style="margin: 0"> |
|
81 | 81 | <div style="margin-bottom: 4px; color:#7E7F7F"> |
|
82 | 82 | @${h.person(user.username)} |
|
83 | 83 | </div> |
|
84 | 84 | ${_('requested a')} |
|
85 | 85 | <a href="${pull_request_url}" style="${base.link_css()}"> |
|
86 | 86 | ${_('pull request review.').format(**data) } |
|
87 | 87 | </a> |
|
88 | 88 | <div style="margin-top: 10px"></div> |
|
89 | 89 | ${_('Pull request')} <code>!${data['pr_id']}: ${data['pr_title']}</code> |
|
90 | 90 | </h4> |
|
91 | 91 | |
|
92 | 92 | </td> |
|
93 | 93 | </tr> |
|
94 | 94 | |
|
95 | 95 | </table> |
|
96 | 96 | |
|
97 | 97 | <table style="text-align:left;vertical-align:middle;width: 100%"> |
|
98 | 98 | ## spacing def |
|
99 | 99 | <tr> |
|
100 | 100 | <td style="width: 130px"></td> |
|
101 | 101 | <td></td> |
|
102 | 102 | </tr> |
|
103 | 103 | |
|
104 | 104 | <tr> |
|
105 | 105 | <td style="padding-right:20px;">${_('Pull request')}:</td> |
|
106 | 106 | <td> |
|
107 | 107 | <a href="${pull_request_url}" style="${base.link_css()}"> |
|
108 | 108 | !${pull_request.pull_request_id} |
|
109 | 109 | </a> |
|
110 | 110 | </td> |
|
111 | 111 | </tr> |
|
112 | 112 | |
|
113 | 113 | <tr> |
|
114 | 114 | <td style="padding-right:20px;line-height:20px;">${_('Commit Flow')}:</td> |
|
115 | 115 | <td style="line-height:20px;"> |
|
116 |
${ |
|
|
116 | <code>${'{}:{}'.format(data['source_ref_type'], pull_request.source_ref_parts.name)}</code> ${_('of')} ${data['source_repo_url']} | |
|
117 | 117 | → |
|
118 |
${ |
|
|
118 | <code>${'{}:{}'.format(data['target_ref_type'], pull_request.target_ref_parts.name)}</code> ${_('of')} ${data['target_repo_url']} | |
|
119 | 119 | </td> |
|
120 | 120 | </tr> |
|
121 | 121 | |
|
122 | 122 | <tr> |
|
123 | 123 | <td style="padding-right:20px;">${_('Description')}:</td> |
|
124 | 124 | <td style="white-space:pre-wrap"><code>${pull_request.description | trim}</code></td> |
|
125 | 125 | </tr> |
|
126 | 126 | <tr> |
|
127 | 127 | <td style="padding-right:20px;">${_ungettext('Commit (%(num)s)', 'Commits (%(num)s)', len(pull_request_commits)) % {'num': len(pull_request_commits)}}:</td> |
|
128 | 128 | <td></td> |
|
129 | 129 | </tr> |
|
130 | 130 | |
|
131 | 131 | <tr> |
|
132 | 132 | <td colspan="2"> |
|
133 | 133 | <ol style="margin:0 0 0 1em;padding:0;text-align:left;"> |
|
134 | 134 | % for commit_id, message in pull_request_commits: |
|
135 | 135 | <li style="margin:0 0 1em;"> |
|
136 | 136 | <pre style="margin:0 0 .5em"><a href="${h.route_path('repo_commit', repo_name=pull_request_source_repo.repo_name, commit_id=commit_id)}" style="${base.link_css()}">${h.short_id(commit_id)}</a></pre> |
|
137 | 137 | ${h.chop_at_smart(message, '\n', suffix_if_chopped='...')} |
|
138 | 138 | </li> |
|
139 | 139 | % endfor |
|
140 | 140 | </ol> |
|
141 | 141 | </td> |
|
142 | 142 | </tr> |
|
143 | 143 | </table> |
General Comments 0
You need to be logged in to leave comments.
Login now