##// END OF EJS Templates
diff parser: redefined operations stats for changes...
diff parser: redefined operations stats for changes - don't loose info about multiple operations like rename + chmod - new Binary flag when dealing with binary file operations - fixed diffs after mercurial 2.6 when GIT binary diffs were fixed - added more tests for multiple operations - refactored the way diffprocessor returns data. It's now easier to extract type of operation on binary files - diffprocessor doesn't append that information into the diff itself

File last commit:

r3780:1de8abd9 beta
r3821:ce4b7023 beta
Show More
pull_request.html
19 lines | 511 B | text/html | HtmlLexer
Nicer email notifications about pull-request
r2799 ## -*- coding: utf-8 -*-
<%inherit file="main.html"/>
White space cleanup
r2815
Mads Kiilerich
emails: try to improve wording and layout - 1st iteration
r3780 <p>${_('URL')}: <a href="${pr_url}">${pr_url}</a></p>
<h4>${_('%s opened a pull request for repository %s and wants you to review changes.') % (pr_user_created,pr_repo_url) |n}</h4>
Nicer email notifications about pull-request
r2799
Mads Kiilerich
emails: try to improve wording and layout - 1st iteration
r3780 <p>${_('Title')}: <b>${pr_title}</b></p>
<p>${_('Description')}:</p>
<p style="white-space: pre-wrap;">${body}</p>
<p>${_('Changesets')}:</p>
nicer pr email
r3505 <p style="white-space: pre-wrap;">
notifications changes...
r3430 %for r,r_msg in pr_revisions:
nicer pr email
r3505 <b>${h.short_id(r)}</b>:
${h.shorter(r_msg, 256)}
Mads Kiilerich
emails: try to improve wording and layout - 1st iteration
r3780
Nicer email notifications about pull-request
r2799 %endfor
nicer pr email
r3505 </p>