annotate rhodecode/templates/email_templates/pull_request.html @ 4178:9dd726706178 kallithea-2.2.5-rebrand

Complete copyright notices for web interface; change footer to link to them. The original copyright notice found in the footer was not accurate as it included only one of the many copyright holders in this project. This change creates an "about" page, which currently contains just the copyright and license information. It links to repository for additional potential copyright holders not listed on the about page. Unlisted contributors are mentioned in template comments. Html links for Kallithea is fixed and we link to Conservancy. Display of version information in the footer is improved.
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 21 May 2014 13:35:27 -0400
parents 1de8abd9a4e1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2799
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 ## -*- coding: utf-8 -*-
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2 <%inherit file="main.html"/>
2815
acc05c33cc0c White space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 2799
diff changeset
3
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
4 <p>${_('URL')}: <a href="${pr_url}">${pr_url}</a></p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
5
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
6 <h4>${_('%s opened a pull request for repository %s and wants you to review changes.') % (pr_user_created,pr_repo_url) |n}</h4>
2799
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
8 <p>${_('Title')}: <b>${pr_title}</b></p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
9 <p>${_('Description')}:</p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
10 <p style="white-space: pre-wrap;">${body}</p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
11
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
12 <p>${_('Changesets')}:</p>
3505
42e5812b956e nicer pr email
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
13 <p style="white-space: pre-wrap;">
3430
bbe21df7ad48 notifications changes
Marcin Kuzminski <marcin@python-works.com>
parents: 3258
diff changeset
14 %for r,r_msg in pr_revisions:
3505
42e5812b956e nicer pr email
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
15 <b>${h.short_id(r)}</b>:
42e5812b956e nicer pr email
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
16 ${h.shorter(r_msg, 256)}
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
17
2799
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
18 %endfor
3505
42e5812b956e nicer pr email
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
19 </p>