Skip to content

Commit b3fe24d

Browse files
committed
Merged in [13503] from rjsparks@nostrum.com:
Add usernames to the email sent to the secretariat when a possible duplicate person has been detected. Fixes ietf-tools#2307. - Legacy-Id: 13521 Note: SVN reference [13503] has been migrated to Git commit d330b8d
1 parent d041edf commit b3fe24d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

bin/count.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ int main( void )
1313
c = fgetc(stdin);
1414
while(c != EOF)
1515
{
16-
if (c == '.') count++;
16+
if (c=='.' || c=='E' || c=='F') count++;
1717
fputc(c, stdout);
1818
fflush(stdout);
1919
if ( count % 76 == 0) {

ietf/templates/person/mail/possible_duplicates.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ There are now {{persons|length}} Person objects sharing that name.
99
Please check to see if they represent the same actual person, and if so, merge the objects as appropriate.
1010

1111
{% for person in persons %}Person {{forloop.counter}} {{ person.name }} (pk={{person.pk}})
12-
time: {{person.time}}
13-
ascii: {{person.ascii}}
14-
email: {% for email in person.email_set.all %}{{ email.address }} {% endfor %}
15-
aliases: {{ person.alias_set.all|join:", " }}
12+
time: {{person.time}}
13+
ascii: {{person.ascii}}
14+
email: {% for email in person.email_set.all %}{{ email.address }} {% endfor %}
15+
aliases: {{ person.alias_set.all|join:", " }}
16+
username: {% if person.user %}{{person.user.username}}{% else %}None{% endif %}
1617

1718
{% endfor %} {% endautoescape %}

0 commit comments

Comments
 (0)