pull_request_review.mako
85 lines
| 3.5 KiB
| application/x-mako
|
MakoHtmlLexer
r1 | ## -*- coding: utf-8 -*- | |||
<%inherit file="base.mako"/> | ||||
r548 | <%namespace name="base" file="base.mako"/> | |||
r1 | ||||
r1728 | <%def name="subject()" filter="n,trim,whitespace_filter"> | |||
r548 | <% | |||
data = { | ||||
'user': h.person(user), | ||||
'pr_id': pull_request.pull_request_id, | ||||
'pr_title': pull_request.title, | ||||
} | ||||
%> | ||||
${_('%(user)s wants you to review pull request #%(pr_id)s: "%(pr_title)s"') % data |n} | ||||
r1 | </%def> | |||
<%def name="body_plaintext()" filter="n,trim"> | ||||
r548 | <% | |||
data = { | ||||
'user': h.person(user), | ||||
'pr_id': pull_request.pull_request_id, | ||||
'pr_title': pull_request.title, | ||||
'source_ref_type': pull_request.source_ref_parts.type, | ||||
'source_ref_name': pull_request.source_ref_parts.name, | ||||
'target_ref_type': pull_request.target_ref_parts.type, | ||||
'target_ref_name': pull_request.target_ref_parts.name, | ||||
'repo_url': pull_request_source_repo_url | ||||
} | ||||
%> | ||||
r1 | ${self.subject()} | |||
r548 | ${h.literal(_('Pull request from %(source_ref_type)s:%(source_ref_name)s of %(repo_url)s into %(target_ref_type)s:%(target_ref_name)s') % data)} | |||
r1 | ||||
* ${_('Link')}: ${pull_request_url} | ||||
* ${_('Title')}: ${pull_request.title} | ||||
* ${_('Description')}: | ||||
r508 | ${pull_request.description} | |||
r1 | ||||
r1945 | * ${_ungettext('Commit (%(num)s)', 'Commits (%(num)s)', len(pull_request_commits) ) % {'num': len(pull_request_commits)}}: | |||
r1 | ||||
% for commit_id, message in pull_request_commits: | ||||
- ${h.short_id(commit_id)} | ||||
r508 | ${h.chop_at_smart(message, '\n', suffix_if_chopped='...')} | |||
r1 | ||||
% endfor | ||||
r508 | ${self.plaintext_footer()} | |||
r1 | </%def> | |||
r548 | <% | |||
data = { | ||||
'user': h.person(user), | ||||
'pr_id': pull_request.pull_request_id, | ||||
'pr_title': pull_request.title, | ||||
'source_ref_type': pull_request.source_ref_parts.type, | ||||
'source_ref_name': pull_request.source_ref_parts.name, | ||||
'target_ref_type': pull_request.target_ref_parts.type, | ||||
'target_ref_name': pull_request.target_ref_parts.name, | ||||
'repo_url': pull_request_source_repo_url, | ||||
'source_repo_url': h.link_to(pull_request_source_repo.repo_name, pull_request_source_repo_url), | ||||
'target_repo_url': h.link_to(pull_request_target_repo.repo_name, pull_request_target_repo_url) | ||||
} | ||||
%> | ||||
r508 | <table style="text-align:left;vertical-align:middle;"> | |||
r548 | <tr><td colspan="2" style="width:100%;padding-bottom:15px;border-bottom:1px solid #dbd9da;"><h4><a href="${pull_request_url}" style="color:#427cc9;text-decoration:none;cursor:pointer">${_('%(user)s wants you to review pull request #%(pr_id)s: "%(pr_title)s".') % data }</a></h4></td></tr> | |||
r508 | <tr><td style="padding-right:20px;padding-top:15px;">${_('Title')}</td><td style="padding-top:15px;">${pull_request.title}</td></tr> | |||
r548 | <tr><td style="padding-right:20px;">${_('Source')}</td><td>${base.tag_button(pull_request.source_ref_parts.name)} ${h.literal(_('%(source_ref_type)s of %(source_repo_url)s') % data)}</td></tr> | |||
<tr><td style="padding-right:20px;">${_('Target')}</td><td>${base.tag_button(pull_request.target_ref_parts.name)} ${h.literal(_('%(target_ref_type)s of %(target_repo_url)s') % data)}</td></tr> | ||||
r508 | <tr><td style="padding-right:20px;">${_('Description')}</td><td style="white-space:pre-wrap">${pull_request.description}</td></tr> | |||
r1945 | <tr><td style="padding-right:20px;">${_ungettext('%(num)s Commit', '%(num)s Commits', len(pull_request_commits)) % {'num': len(pull_request_commits)}}</td> | |||
r508 | <td><ol style="margin:0 0 0 1em;padding:0;text-align:left;"> | |||
r548 | % for commit_id, message in pull_request_commits: | |||
<li style="margin:0 0 1em;"><pre style="margin:0 0 .5em">${h.short_id(commit_id)}</pre> | ||||
${h.chop_at_smart(message, '\n', suffix_if_chopped='...')} | ||||
</li> | ||||
% endfor | ||||
r508 | </ol></td> | |||
</tr> | ||||
</table> | ||||