Skip to content

Commit e54a24b

Browse files
committed
Added a couple of missing migrations.
- Legacy-Id: 14010
1 parent 138f3d7 commit e54a24b

3 files changed

Lines changed: 57 additions & 11 deletions

File tree

changelog

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,18 @@ ietfdb (6.58.0) ietf; urgency=medium
66
It contains work from the later part of the IETF 99 week, and additional
77
work since then.
88

9+
* Merged in [13996] from rcross@amsl.com:
10+
Moved Announcement 'From:' addresses out of code and into a database
11+
table. Fixes #1681.
12+
13+
* Added the ability to emit detailed line-by line changes in code coverage
14+
to the coverage_changes management command. Use verbosity 2 or higher.
15+
16+
* Added an admin model for the MeetingRegistration class.
17+
918
* Fixed a couple of html issues introduced in the previous release.
1019

11-
* Changed from get_meetings() to get_meeting() for
20+
* Changed from using get_meetings() to get_meeting() in
1221
meeting.views.floor_plan(), in order to raise 404 on missing meetings.
1322
This fixes a server 500 on /meeting/floor-plan/ for nonexistant meetings.
1423

@@ -28,8 +37,8 @@ ietfdb (6.58.0) ietf; urgency=medium
2837
* Pointed at the datatracker's document pages, instead of directly at the
2938
document in question, for drafts and RFCs on a person's profile page.
3039
This reverts to the functionality as originally implemented, but uses the
31-
correct doc.get_absolute_url instead of doc.href() (which incorrectly did
32-
the same as get_absolute_url in some cases until recently).
40+
correct doc.get_absolute_url() instead of doc.href() (which incorrectly did
41+
the same as get_absolute_url() in some cases until recently).
3342
Fixes issue #2340.
3443

3544
* Made Document.href() point at the rfc when doc.is_rfc().
@@ -46,9 +55,9 @@ ietfdb (6.58.0) ietf; urgency=medium
4655
Query unique person objects when searching for duplicates based on
4756
aliases. Fixes #2263.
4857

49-
* Removed the old admin styling; things have moved on to the point where it
50-
doesn't work well any more. The new style requires more screen space,
51-
but it seems we have to accept that now.
58+
* Removed the old Django admin styling; things have moved on to the point
59+
where it doesn't work well any more. The new Django admin style requires
60+
more screen space, but it seems we have to accept that now.
5261

5362
* Changed the menubar link to meeting materials to explicitly point at
5463
/meeting/materials/, not just /meeting/.
@@ -57,17 +66,14 @@ ietfdb (6.58.0) ietf; urgency=medium
5766
session-specific urls, and more consistently pointed to explicitly named
5867
meeting materials. Related to commit [13964].
5968

60-
* Added a new release-coverage format which whould make it easier to show
61-
line-by-line code test coverage changes in the future.
62-
6369
* Fixed a time arithmetic issue in meeting cutoff-date methods.
6470

6571
* Changed the display of individual item update times on the materials
6672
overview page. In practice, having a tooltip on every agenda, minutes, and
6773
slides link became intrusive and annoying. Changed to display a bell if
6874
the update is within one day of now, and to display the time tooltip when
6975
hovering over the bell. Also corrected the colspan numbers for cancelled
70-
sessions, for consistency.
76+
sessions, for consistency in the look of the materials table.
7177

7278
* Added urls and views for individual meeting documents, in order to be able
7379
to serve them directly from the datatracker, instead of taking them from
@@ -81,7 +87,7 @@ ietfdb (6.58.0) ietf; urgency=medium
8187
Tweak to the important dates page title.
8288

8389
* Merged in [13957] from rjsparks@nostrum.com:
84-
Moves Important Dates into the datatracker. Fixes #2338.
90+
Moved Important Dates for Meetings into the datatracker. Fixes #2338.
8591

8692
* Merged in [13955] from kivinen@iki.fi:
8793
Changed links to previous reviews go to the doc page of the last
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.10.7 on 2017-07-31 05:08
3+
from __future__ import unicode_literals
4+
5+
import django.core.validators
6+
from django.db import migrations, models
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
dependencies = [
12+
('doc', '0031_remove_fake_email_adresses'),
13+
]
14+
15+
operations = [
16+
migrations.AlterField(
17+
model_name='document',
18+
name='name',
19+
field=models.CharField(max_length=255, primary_key=True, serialize=False, validators=[django.core.validators.RegexValidator(b'^[-a-z0-9]+$', b'Provide a valid document name consisting of lowercase letters, numbers and hyphens.', b'invalid')]),
20+
),
21+
]
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.10.7 on 2017-07-31 05:08
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('message', '0006_add_announcement_from'),
12+
]
13+
14+
operations = [
15+
migrations.AlterModelOptions(
16+
name='announcementfrom',
17+
options={'verbose_name_plural': 'Announcement From addresses'},
18+
),
19+
]

0 commit comments

Comments
 (0)