Skip to content

Commit ce18fa8

Browse files
committed
Merged in [10144] from rcross@amsl.com:
Make email address formatting consistent. - Legacy-Id: 10145 Note: SVN reference [10144] has been migrated to Git commit 3c0908e
2 parents 59e9aeb + 3c0908e commit ce18fa8

2 files changed

Lines changed: 69 additions & 3 deletions

File tree

changelog

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,69 @@
1+
ietfdb (6.4.2) ietf; urgency=medium
2+
3+
This is a bugfix release, with details as follows:
4+
5+
* Adjusted numerous document action button colours as requested by the
6+
secretariat. Fixes issue #1803
7+
8+
* Provided a bit more information in rfc-editor sync warnings.
9+
10+
* Added an eyecatching symbol to indicate bug-reporting, starting out very
11+
large, with the intention of reducing the size as people get used to it.
12+
13+
* Fixed an html issue in the agenda template, and added information to be
14+
shown when no WG/RG groups have been scheduled, and the agenda session
15+
customization table is empty.
16+
17+
* Tweaked the anchor ids for agenda timeslots to avoid identical ids for
18+
different slots.
19+
20+
* Added information about which the required submission upload format
21+
alternatives are (.txt or .xml).
22+
23+
* Tweaked the error message for 2 submission form validation errors.
24+
25+
* Changed the default settings for the test crawler from ietf.settings to
26+
ietf.settings_testcrawl.
27+
28+
* In [10079], the inline template was inadvertently changed from unicode
29+
to ascii, which breaks a number of pages. Fixed this.
30+
31+
* Merged in [10115] from rjsparks@nostrum.com:
32+
Remove an extraneous field from the form that lets the nomcom chair paste
33+
in a questionnaire response.
34+
35+
* Merged in [10109] from rjsparks@nostrum.com:
36+
Make it clearer in search results when one IPR disclosure updates another.
37+
Fixes #1798.
38+
39+
* Fixed a typo in the meeting agenda template. Fixes issue #1793.
40+
41+
* Do utf-8 encoding of the fields in the JSON blob for meeting sessions.
42+
Fixes issue #1790
43+
44+
* Merged in [10079] from rcross@amsl.com:
45+
Fixed message formatting in IPR event history.
46+
47+
* Merged in [10078] from rcross@amsl.com:
48+
Resolved issue where partially entered IPR related document info causes
49+
500 error.
50+
51+
* Added a menu item linking to the session request tool. Fixes issue #1789.
52+
53+
* Made some submission form validation errors apply to all uploads, not
54+
only to .txt uploads. Tweaked som validation error wordings.
55+
56+
* Merged in [10062] from olau@iola.dk:
57+
Fixed a problem with timeslot.location = None in agenda_csv.
58+
59+
* Added branch/iola to places checked for 'ready for merge' tags in the
60+
commit messages.
61+
62+
63+
-- Henrik Levkowetz <henrik@levkowetz.com> 07 Oct 2015 12:31:56 -0700
64+
65+
66+
167
ietfdb (6.4.1) ietf; urgency=medium
268

369
This is a minor release with various enhancements and bugfixes:

ietf/submit/mail.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def submission_confirmation_email_list(submission):
1515
doc = Document.objects.get(name=submission.name)
1616
email_list = [i.author.formatted_email() for i in doc.documentauthor_set.all() if not i.author.invalid_address()]
1717
except Document.DoesNotExist:
18-
email_list = [u"%s <%s>" % (author["name"], author["email"])
18+
email_list = [u'"%s" <%s>' % (author["name"], author["email"])
1919
for author in submission.authors_parsed() if author["email"]]
2020
if submission.submitter_parsed()["email"] and submission.submitter not in email_list:
2121
email_list.append(submission.submitter)
@@ -70,7 +70,7 @@ def send_manual_post_request(request, submission, errors):
7070
to_email = settings.IDSUBMIT_TO_EMAIL
7171

7272
cc = [submission.submitter]
73-
cc += [u"%s <%s>" % (author["name"], author["email"])
73+
cc += [u'"%s" <%s>' % (author["name"], author["email"])
7474
for author in submission.authors_parsed() if author["email"]]
7575
if submission.group:
7676
cc += [r.formatted_email() for r in Role.objects.filter(group=submission.group, name="chair").select_related("email", "person")]
@@ -137,7 +137,7 @@ def announce_new_version(request, submission, draft, state_change_msg):
137137
'msg': state_change_msg})
138138

139139
def announce_to_authors(request, submission):
140-
authors = [u"%s <%s>" % (author["name"], author["email"]) for author in submission.authors_parsed() if author["email"]]
140+
authors = [u'"%s" <%s>' % (author["name"], author["email"]) for author in submission.authors_parsed() if author["email"]]
141141
to_email = list(set(submission_confirmation_email_list(submission) + authors))
142142
from_email = settings.IDSUBMIT_ANNOUNCE_FROM_EMAIL
143143
subject = 'New Version Notification for %s-%s.txt' % (submission.name, submission.rev)

0 commit comments

Comments
 (0)