## -*- coding: utf-8 -*- <%inherit file="base.mako"/> <%namespace name="base" file="base.mako"/> <%def name="subject()" filter="n,trim"> <% data = { 'user': h.person(user), 'repo_name': repo_name, 'commit_id': h.show_id(commit), 'status': status_change, 'comment_file': comment_file, 'comment_line': comment_line, } %> ${_('[mention]') if mention else ''} \ % if comment_file: ${_('%(user)s commented on commit `%(commit_id)s` (file: `%(comment_file)s`)') % data} ${_('in the %(repo_name)s repository') % data |n} % else: % if status_change: ${_('%(user)s commented on commit `%(commit_id)s` (status: %(status)s)') % data |n} ${_('in the %(repo_name)s repository') % data |n} % else: ${_('%(user)s commented on commit `%(commit_id)s`') % data |n} ${_('in the %(repo_name)s repository') % data |n} % endif % endif <%def name="body_plaintext()" filter="n,trim"> <% data = { 'user': h.person(user), 'repo_name': repo_name, 'commit_id': h.show_id(commit), 'status': status_change, 'comment_file': comment_file, 'comment_line': comment_line, } %> ${self.subject()} * ${_('Comment link')}: ${commit_comment_url} * ${_('Commit')}: ${h.show_id(commit)} %if comment_file: * ${_('File: %(comment_file)s on line %(comment_line)s') % {'comment_file': comment_file, 'comment_line': comment_line}} %endif --- %if status_change: ${_('Commit status was changed to')}: *${status_change}* %endif ${comment_body|n} ${self.plaintext_footer()} <% data = { 'user': h.person(user), 'comment_file': comment_file, 'comment_line': comment_line, 'repo': commit_target_repo, 'repo_name': repo_name, 'commit_id': h.show_id(commit), } %> % if status_change: % endif
% if comment_file:

${_('%(user)s commented on commit `%(commit_id)s` (file:`%(comment_file)s`)') % data} ${_('in the %(repo)s repository') % data |n}

% else:

${_('%(user)s commented on commit `%(commit_id)s`') % data |n} ${_('in the %(repo)s repository') % data |n}

% endif
${_('Commit')}${h.show_id(commit)}
${_('Description')}${h.urlify_commit_message(commit.message, repo_name)}
${_('Status')}${_('The commit status was changed to')}: ${base.status_text(status_change, tag_type=status_change_type)}
${(_('Comment on line: %(comment_line)s') if comment_file else _('Comment')) % data}${h.render(comment_body, renderer=renderer_type, mentions=True)}