pull_request_comment.mako
114 lines
| 3.9 KiB
| application/x-mako
|
MakoHtmlLexer
r1 | ## -*- coding: utf-8 -*- | |||
<%inherit file="base.mako"/> | ||||
r548 | <%namespace name="base" file="base.mako"/> | |||
r1 | ||||
r1453 | ## EMAIL SUBJECT | |||
r1728 | <%def name="subject()" filter="n,trim,whitespace_filter"> | |||
r532 | <% | |||
data = { | ||||
'user': h.person(user), | ||||
'pr_title': pull_request.title, | ||||
'pr_id': pull_request.pull_request_id, | ||||
'status': status_change, | ||||
'comment_file': comment_file, | ||||
'comment_line': comment_line, | ||||
r1453 | 'comment_type': comment_type, | |||
r532 | } | |||
%> | ||||
r3120 | ${(_('[mention]') if mention else '')} \ | |||
r532 | ||||
% if comment_file: | ||||
r3120 | ${_('{user} left a {comment_type} on file `{comment_file}` in pull request #{pr_id} "{pr_title}"').format(**data) |n} | |||
r532 | % else: | |||
% if status_change: | ||||
r3120 | ${_('[status: {status}] {user} left a {comment_type} on pull request #{pr_id} "{pr_title}"').format(**data) |n} | |||
r532 | % else: | |||
r3120 | ${_('{user} left a {comment_type} on pull request #{pr_id} "{pr_title}"').format(**data) |n} | |||
r532 | % endif | |||
% endif | ||||
r1 | </%def> | |||
r1453 | ## PLAINTEXT VERSION OF BODY | |||
r1 | <%def name="body_plaintext()" filter="n,trim"> | |||
r532 | <% | |||
data = { | ||||
'user': h.person(user), | ||||
'pr_title': pull_request.title, | ||||
'pr_id': pull_request.pull_request_id, | ||||
'status': status_change, | ||||
'comment_file': comment_file, | ||||
'comment_line': comment_line, | ||||
r1453 | 'comment_type': comment_type, | |||
r532 | } | |||
%> | ||||
r1 | ${self.subject()} | |||
* ${_('Comment link')}: ${pr_comment_url} | ||||
* ${_('Source repository')}: ${pr_source_repo_url} | ||||
%if comment_file: | ||||
r3120 | * ${_('File: {comment_file} on line {comment_line}').format(comment_file=comment_file, comment_line=comment_line)} | |||
r1 | %endif | |||
--- | ||||
r532 | %if status_change and not closing_pr: | |||
r3120 | ${_('{user} submitted pull request #{pr_id} status: *{status}*').format(**data)} | |||
r532 | %elif status_change and closing_pr: | |||
r3120 | ${_('{user} submitted pull request #{pr_id} status: *{status} and closed*').format(**data)} | |||
r532 | %endif | |||
r3120 | ${comment_body |n} | |||
r1 | ||||
r508 | ${self.plaintext_footer()} | |||
r1 | </%def> | |||
r532 | ||||
<% | ||||
data = { | ||||
'user': h.person(user), | ||||
'pr_title': pull_request.title, | ||||
'pr_id': pull_request.pull_request_id, | ||||
'status': status_change, | ||||
'comment_file': comment_file, | ||||
'comment_line': comment_line, | ||||
r1453 | 'comment_type': comment_type, | |||
r532 | } | |||
%> | ||||
r508 | <table style="text-align:left;vertical-align:middle;"> | |||
r532 | <tr><td colspan="2" style="width:100%;padding-bottom:15px;border-bottom:1px solid #dbd9da;"> | |||
% if comment_file: | ||||
r3120 | <h4><a href="${pr_comment_url}" style="color:#427cc9;text-decoration:none;cursor:pointer">${_('{user} left a {comment_type} on file `{comment_file}` in pull request #{pr_id} "{pr_title}"').format(**data) |n}</a></h4> | |||
r532 | % else: | |||
r3120 | <h4><a href="${pr_comment_url}" style="color:#427cc9;text-decoration:none;cursor:pointer">${_('{user} left a {comment_type} on pull request #{pr_id} "{pr_title}"').format(**data) |n}</a></h4> | |||
r532 | % endif | |||
r1453 | ||||
r532 | </td></tr> | |||
r508 | <tr><td style="padding-right:20px;padding-top:15px;">${_('Source')}</td><td style="padding-top:15px;"><a style="color:#427cc9;text-decoration:none;cursor:pointer" href="${pr_source_repo_url}">${pr_source_repo.repo_name}</a></td></tr> | |||
r1453 | ||||
r548 | % if status_change: | |||
r1453 | <tr> | |||
<td style="padding-right:20px;">${_('Status')}</td> | ||||
<td> | ||||
% if closing_pr: | ||||
${_('Closed pull request with status')}: ${base.status_text(status_change, tag_type=status_change_type)} | ||||
% else: | ||||
${_('Submitted review status')}: ${base.status_text(status_change, tag_type=status_change_type)} | ||||
% endif | ||||
</td> | ||||
</tr> | ||||
r548 | % endif | |||
r1453 | <tr> | |||
<td style="padding-right:20px;"> | ||||
% if comment_type == 'todo': | ||||
r3120 | ${(_('TODO comment on line: {comment_line}') if comment_file else _('TODO comment')).format(**data)} | |||
r1453 | % else: | |||
r3120 | ${(_('Note comment on line: {comment_line}') if comment_file else _('Note comment')).format(**data)} | |||
r1453 | % endif | |||
</td> | ||||
<td style="line-height:1.2em;white-space:pre-wrap">${h.render(comment_body, renderer=renderer_type, mentions=True)}</td> | ||||
</tr> | ||||
r508 | </table> | |||