-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathchangelog
9173 lines (6159 loc) · 352 KB
/
changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ietfdb (6.31.1) ietf; urgency=low
This release adds more proceedings generation functionality, adds
slide ordering for session materials, adds caching for the json
export for the 'IETFers' iOS app, tweaks some fonts, and fixes a
number of bugs:
* Fixed a number of places where events were given the document time, but
the document had not been given a new time yet, after the eventsave
refactoring code changes of [11841]. Fixes issue #2004.
* Merged in [11891] from rjsparks@nostrum.com:
Modified agenda.json to properly handle meetings that do not have an
agenda yet. Fixes #2003.
* Merged in [11890] from rcross@amsl.com:
Modified the monthly progress report script to deal with unicode
characters in document titles.
* Merged in [11889] from rcross@amsl.com:
Strip .py extension of report scripts to match the rest. Add
svn:executable to scripts that were missing it.
* Added page caching for json_agenda(). Changed localization of naive
time from database in json_agenda to use settings.PRODUCTION_TIMEZONE.
* Merged in [11888] from rjsparks@nostrum.com:
Added an order field to sessionpresentation to allow ordering slides.
Reworked the session details page to break slides and drafts into their own
sections.
* Added handling for an exception which could occur for charter documents
which does not have a matching chartered group.
* Merged in [11877] from rjsparks@nostrum.com:
Copy group chairs on confirmation email when a new group document
revision is submitted that changes the author set. Fixes #1998.
* Styled the textarea of the charter form to use a monospaced font.
Corrected the monospace font selection for the dbtemplate textarea.
* Merged in [11859] from rjsparks@nostrum.com:
Put WG summary information on the rechartering page. Fixes #2000.
* Merged in [11856] from rcross@amslcom:
Added a missing meeting fixture.
* Merged in [11850] from rcross@amslcom:
Added support for the IETF Overview for the proceedings, including an
editable database-stored template; completed tests and migrations.
* Merged in [11855] from rjsparks@nostrum.com:
Updated the instructions page for the submit tool to reflect what
currently happens.
* Merged in [11849] from rcross@amsl.com:
Fixed a bug with main secr/proceedings page and added a test.
-- Henrik Levkowetz <henrik@levkowetz.com> 26 Aug 2016 03:50:26 -0700
ietfdb (6.31.0) ietf; urgency=low
**Refactoring of saving document state and events**
This release contains a major refactoring of the way document state changes
are saved. It contains a migration which takes a long time to run, but can
safely run at the same time as the system is in production.
Extract from the commit log:
* Merged in ^/branch/iola/event-saving-refactor-r10291 (via
^/personal/henrik/6.30.1-eventsave), which refactors document saving to
always use doc.save_with_history(events), and requires at least one
accompanying event. This branch also provides refactoring of recurring
regexes in url patterns into a dictionary. As part of the merge, also did
refactoring of newer code which didn't use the save_with_history() method.
-- Henrik Levkowetz <henrik@levkowetz.com> 25 Aug 2016 06:04:47 +0000
ietfdb (6.30.0) ietf; urgency=medium
**Proceedings page work and improved meeting support**
This release brings in new code to generate meeting proceedings pages,
available only to the secretariat at this time; it adds slide links to the
agenda for the Sunday sessions, provides a new json export of meeting data
optimised for the iPhone IETFers app, and improves the error checking of
form data for account creation. It also fixes a number of bugs, as detailed
in the changelog extract below:
* Merged in [11810] from rjsparks@nostrum.com:
Corrected some missed base template references in dbtemplate from
the facelift effort.
* Merged in [11792] from rcross@amsl.com:
Requests for virtual interim meeting should go directly Scheduled -
Waiting for announcement state and an email notification sent to the
secretariat. Fixes issue #1994.
* Merged in [11789] from rcross@amsl.com:
Show timezone with interim meeting request information. Fixes #1995.
* Merged in [11781] from rcross@amsl.com:
Fixed an issue with interim meeting series of more than two meetings.
Changed to not send meeting change notifications for meetings not yet
announced.
* Merged in [11756] from rjsparks@nostrum.com:
Provides a custom json view of meetings optimized for the iphone app.
* Merged in ^/branch/iola/account-ascii-fixes-r11748 from olau@iola.dk:
- Added a check for a reserved name in account registration
- Handle Person.ascii in edit profile better to try to ensure that
people fill it in correctly. Blank it out if it's unchanged from name
and use unidecode to set it automatically (with a warning if it
actually converts something).
- Throw a validation error if a profile name contains an @ sign upon
edit so that people do not forget to enter their name.
* Fixed the plenary etherpad name
* Added slide links to the Saturday/Sunday 'other' sessions.
* Fixed the plenary jabber room name
* Tweaked the help text for the nomcom member entry form.
* Merged in [11780] from rjsparks@nostrum.com:
Removed bluesheet upload from the secr/ bluesheets generation page. Added
navigation to session details from the meeting materials view rows.
* Merged in [11779] from rjsparks@nostrum.com:
Robustness improvements for the bluesheet migrations.
* Merged in [11778] from rjsparks@nostrum.com:
- Enabled and refined document_main view for bluesheets.
- Improved migration for 95 and 96 bluesheets, adding DocAlias and DocEvent
creation.
- Added bluesheet upload to the session details view.
- Moved a function out of secr/proceedings/views into its own util.py file to
allow reusing it in other modules without introducing circular imports.
* Merged in [11770] from rjsparks@nostrum.com:
Merged from rcross: Added Introduction header to proceedings. Added
Acknowlegements to the meeting model. Added a view for acknowlegements.
* Merged in [11767] from rjsparks@nostrum.com:
Improved some test coverage.
* Merged in [11766] from rjsparks@nostrum.com:
Added status reports to proceedings. added a view for the applicable
status report for a given meeting.
* Merged in [11764] from rjsparks@nostrum.com:
- Moved the materials start, cutoff, and revision dates into the Meeting
object
- Added a bit to meeting to note whether proceedings are final.
- Updated the proceedings view to reflect the status of that bit.
- Added a function that finalizes a meetings proceedings.
- Straightened out a migration numbering collision introduced in an earlier
merge.
* Merged in [11758] from rjsparks@nostrum.com:
Continued iterative-improvements to auto-generated proceedings:
- Migration to create documents and sessionpresentations for ietf95 and 96
bluesheets. Add bluesheets to proceedings.
- Refactored columns for proceedings to group agenda, minutes, and
bluesheets into one column.
- Added a column for recordings. Show the recordings for all sessions for
a group.
- Refactored all_meeting_* functions on session. Improved (with a hack) how
recordings are displayed.
- Added guards against very old meetings. For more modern, past, meetings,
added a warning that these are not the official proceedings and provide
a link to the official proceedings.
* Merged in [11711] from rjsparks@nostrum.com:
Starting a page for direct rendering of proceedings.
-- Henrik Levkowetz <henrik@levkowetz.com> 20 Aug 2016 11:46:27 +0000
ietfdb (6.29.0) ietf; urgency=high
**IETF 96 Code Sprint**
This release contains datatracker bugfixes and enhancements from the IETF-96
Code Sprint. This brings in many useful bugfixes and enhancements, as
described below. Many thanks to everyone who contributed!
* Merged in [11702], [11712], and [11713] from rjsparks@nostrum.com:
Repairs the javascript that renders the week-view calendar on the
agenda page. Fixes #1984.
* Merged in [11708] from rcross@amsl.com:
Restricted the session request options to groups of type WG,RG or AG.
Added a new mailtrigger to names fixture.
* Merged in [11699] from rcross@amsl.com:
Changed blue_sheet_generate() to only generate blue sheets for WG and RG
group types that have sessions on the official schedule.
* Merged in [11687] and [11710] from presnick@qti.qualcomm.com:
Generate a message to Secretariat and IESG when AD changes a draft state
to 'Approved'. Fixes issue #796.
* Merged in [11697] from rcross@amsl.com:
Changed check_audio_files() to only consider sessions on the official
schedule. Fixes some 500 errors.
* Merged in [11690] from housley@vigilsec.com:
When the Secretariat marks a session as cancelled, the HTML agenda
shows a red CANCELLED box, the text shows *** CANCELLED ***, and (as
before) the .ics file includes STATUS:CANCELLED. Fixes issue #1639.
* Show only 'session' and 'other' type meetings on the materials page,
especially do not show leadership meetings.
* Merged in [11686] from rcross@amsl.com:
A refactor to give the secretariat a broader selection of groups to choose
from when scheduling non-working group sessions.
* Merged in [11681] from suresh.krishnan@ericsson.com:
Allow ADs to manage out of area working groups and upload proceedings for
them. Fixes issue #1648.
* Merged in [11668] from suresh.krishnan@ericsson.com:
Fixed validation of submitter name and email when they are same as the
holder's info. Fixes issue #1971.
* Tweaked meetecho URLs, and added a new template filter for string
formatting.
* Merged in [11666] from housley@vigilsec.com:
Do not show updates related to a removed IPR disclosure. Fixes #1983.
* Merged in [11664] from rcross@amsl.com:
Send email to the secretariat when an interim meeting has been approved
and is waiting for announcement. Uses a new mailtrigger: interim_approved.
* Merged in [11663] from housley@vigilsec.com:
Clarify that the consensus field is talking about whether the doument will
include the consensus boilerplate when it is published as an RFC.
Fixes issue #1955.
* Merged in [11662] from rcross@amsl.com:
Fixed duplicate help-block issue on Interim Meeting Request Page.
* Merged in [11656] from rjsparks@nostrum.com:
Enhanced factories to simplify test writing.
-- Henrik Levkowetz <henrik@levkowetz.com> 20 Jul 2016 09:33:57 +0000
ietfdb (6.28.0) ietf; urgency=medium
**Jabber, Etherpad, Audio and Meetecho links on the agenda page**
This is a minor feature release with some bugfixes, in preparation for the
code sprint release. This adds links to Jabber room, Etherpad, Audio
stream, and Meetecho video participation to the IETF meeting agenda page.
Excerpt from the commit log:
* Added a buildbot build to check that the minimum library version
required in requirements.txt works.
* Updated requirements.txt to prevent installation of incompatible html5lib
versions. Increaced the requirement on setuptools to 18.5 to avoid later
problems when downgrading to minimum required versions, then upgrading
again.
* Fixed a typo in the Dockerfile, and added the vim editor in the docker
image, for vi people.
* Merged in [11654] from rjsparks@nostrum.com:
Call out downreferences in autogenerated last call text. Fixes #1982.
* Updated the version requirement for pyquery.
* Added a test case for group home.
* There were multiple different regex patterns in different urlpattern
declarations, with some of them permitting characters which should not
occur in group acronym. Changed them to consistently use [-a-z0-9]+ .
* If an external RfcEd/IANA command fails, capture stderr and raise an
Exception.
* Added links to Jabber room, Etherpad, Audio stream, and Meetecho video
participation, up to the time a session ends; switching out Jabber,
Meetecho and Audio streams with links to logs or recordings after the
end of a session.
* Made all the scripts under ietf/bin/ set up the environment the same
way.
-- Henrik Levkowetz <henrik@levkowetz.com> 16 Jul 2016 13:43:47 +0000
ietfdb (6.27.0) ietf; urgency=high
**Floor plan enhancements**
This release builds on 6.26.0 to provide enhanced floor plan and room
location functionality. The room names on the agenda now link to the
datatracker floor plan with a blinking arrow showing the room location on
the floor plan, just as on Tony Hansen's floor plans on tools.ietf.org. The
floor plan page shifts to the correct floor when showing a room location.
The floor plan page now lists functional names, in addition to room names.
Both floor plans and blinking arrows now adapt to various screen sizes, and
should be functional on smartphones, tablets, and laptops.
There are also some bug fixes and enhancements unrelated to the floor plans:
* Fixed various issues with the interim approval request email text when
used for non-WG groups (RGs, for instance). Added supporting template
filter functions. Related to issues #1979 and #1980.
* Modified the Alias test-data factory to work around a problem with the
backend collapsing aliases with accented and unaccented versions of the
same name.
* Added a 'verbose_name' attribute to the GroupTypeName table, with
updated admin and a data migration to provide verbose group names.
* Added support in the interim meeting request form for taking a group id
parameter as query arg.
* Replaced the hardcoded 'Area Director' approval role in the interim
approval notification email text with a group-dependent list of approval
roles. Fixes issue #1980.
* Pre-filled the group choice in the interim meeting request form when
linked from a button in the group's meeting tab.
* Split up the action buttons on the group meeing tab to put buttons after
the 'close group' button on a new line. Added an interim meeting request
button.
* Modified the interim announcement text to be less rude if remote
participation isn't supported. Fixes issue #1979.
* Merged in [11530] from rjsparks@nostrum.com:
Adds a publisher to the digital preservation feed.
-- Henrik Levkowetz <henrik@levkowetz.com> 10 Jul 2016 16:07:07 +0000
ietfdb (6.26.0) ietf; urgency=high
**Meeting floor plans**
This release adds basic support for meeting venue floorplans and room
location, including JSON API access to floorplan images and room
coordinates. Floorplan data for IETF 96 in Berlin is also provided in a
data migration. Not part of this release, but planned for a later release,
is support for arrows pointing out rooms, and secretariat support for room
location input. Merged in from ^/personal/henrik/6.25.2-floorplans.
There are also a few bugfixes included:
* Brought back, by popular demand, a tab with the link to a group's tools
pages (which was removed in release 6.25.0).
* Save submitted session agendas as UTF-8, not as ascii. Should fix a few
server 500 errors on session agenda uploads.
* Added an explicit PhantomJS(port=0) as a workaround for old phantomjs
instances staying around and blocking the port needed to run tests.
-- Henrik Levkowetz <henrik@levkowetz.com> 08 Jul 2016 11:32:06 +0000
ietfdb (6.25.1) ietf; urgency=low
This is a patch release, in preparation for an upcoming feature release.
Excerpt from the commitlog:
* Configured the plural form of 2 models.
* Merged in [11512] from rjsparks@nostrum.com:
Allow RG secretaries to manipulate meeting materials. Fixes #1836.
* In the internet-draft submission status page, point at the datatracker
page for the document, rather than the repository copy of the document.
* Added a method Person.ascii_name() for use when generating 1id-*.txt
files. Added caching for Person.plain_name(). Fixes a problem with
non-ascii names in 1id-*.txt which lead to non-ascii names in xml2rfc
reference files.
* Merged in [11504] from rcross@amsl.com:
Removed old interim proceedings location reference.
* Merged in [11501] from rjsparks@nostrum.com:
Changed the search results for recordings to link to the actual recording.
Fixes #1895.
* Merged in [11500] from rjsparks@nostrum.com:
Allow non-official schedules to be viewed in the same ways the official
schedule for a meeting can be viewed. Fixes #1959.
* Merged in [11498] from rcross@amsl.com:
Fixed interim meeting get_proceedings_url() functions.
-- Henrik Levkowetz <henrik@levkowetz.com> 06 Jul 2016 06:52:43 +0000
ietfdb (6.25.0) ietf; urgency=high
**Enhanced testing**
This release brings in added tests for template parsing and checking the
correspondence between the dynamic and static resources that templates
reference, and the url patterns and static resources that are actually
available. It makes the test coverage figures more consistent across test
runs, checks for proper cache functioning, and adds functionality to the
coverage_changes management command. It also fixes a number of bugs for
issues found as a result of the improved testing. Finally, it changes to
memory-based session storage, instead of database-based.
Excerpt from the commit log:
* Added 3 tests which checks 1) that all templates can be parsed and
loaded, 2) that url template-tags refer to an urlconf callback that exists,
and 3) that static template-tags resolve to urls that work. This was
prompted by some 500 errors earlier which weren't caught by existing texts.
* Cached the list of template paths in test_runner.py so we can call it
multiple times cheaply.
* Merged in [11479] from rcross@amsl.com:
Remove references to non-existent views from templates.
* Fixed some missing and mistyped web assets found with
test_template_statics_exists().
* Fixed a place where a logged-in user without associcated Person would
cause a 500 instead of 403.
* Added settings to use the cache back-end for sessions. Separated out
the preference cookie age from the session age. Made the session age
refresh on each access, and set the session timeout to 4 weeks of no access.
* Refactored the code to skip coverage testing a bit, and added skipping
of template and url coverage.
* Added a production-mode check to verify that the cache is functioning
as expected.
* Added missing right-angle for a div. Made some form elements initially
display: none in order to avoid elements jumping around on initial form
rendering. Fixed alignment of Submit and Back buttons, by proper nesting
and col-md- class.
* Added a banner on top of the agenda view of unofficial agendas (which
now work) indicating that it's not the official agenda.
* Added an optional parameter 'owner' to meeting.views.agenda(). Fixed
issues #1959 and #1615
* Fixed a buggy urlpattern regexp which would eat up the last character
in an url if not given an extension.
* Added the ability to list absolute coverage data, not only show
relative differences, to the coverage_changes management command.
* Added to PLAN: lift in draft htmlization lib from tools.ietf.org
* Added a check for the phantomjs binary to the skip-selenium tests in
ietf/meeting/tests_js.py, in order to be able to add selenium to
requirements.txt. This will make the selenium tests run if phantomjs is
available on the system, without manually having to install the selenium
module. This should make the buildbot run the selenium tests, too.
* Tweaked the release page a bit, fixing vertical alignment of revision
comments when breaking across lines, comment appearance on iPads, and
introducing striped tables.
* Changed the code test coverage checking to never register coverage
counts for tests that are sometimes skipped. Removed now unwanted skip
settings from the releasetest settings.
* Removed dead templates.
* Removed dead code.
* Language tweaks
-- Henrik Levkowetz <henrik@levkowetz.com> 28 Jun 2016 20:50:44 +0000
ietfdb (6.24.0) ietf; urgency=high
**Interim meeting management**
This release adds support for management of Interim Meetings by merging in
^/branch/amsl/interim/6.21.0 from rcross@amsl.com. ADs and chairs can
request virtual or in person meetings. Authorized users have access to
views for approval, scheduling and notification of interim meetings. Users
can view a sortable / filterable list of upcoming meetings and download
iCalendar files. For complete details see here the statement of work:
https://datatracker.ietf.org/doc/draft-sparks-genarea-interim-management/
There are also some unrelated minor tweaks, as part of this release:
* Added a score of setting save/restores to test setup/teardown actions.
* Tweaked the test crawler a bit to skip some slow and meaningless checks.
* Updated docker/settings_local.py
* Avoid multiple doctype declarations and other html errors by parsing
sesion agenda html files and inserting our title and doctype.
* Added caching to some meeting methods which are called multiple times
when generating the IETF agenda.
* Fixed a bug in find-history-replacement-active-at() where multiple
history entries with the same timestamp would be unordered. This led to
the wrong historic group info being shown in some cases (e.g.,
meeting/86/agenda would show dmmnew instead of dmm, leading to wrong agenda
links)
* Tweaked the styling of meeting rows to avoid wrapping the interim
meeting names, and added meeting links for the IETF meetings.
* Moved a check for session data being present up to before we try to use it
in announcement.views.confirm(), fixing a server 500 error.
-- Henrik Levkowetz <henrik@levkowetz.com> 21 Jun 2016 19:15:08 +0000
ietfdb (6.23.0) ietf; urgency=low
**Additional account creation safeguards**
This release provides additional safeguards against malicious account
creation, and support functions to let the secretariat manually bypass the
safeguards when needed.
* Merged in ^/personal/henrik/6.22.1-acctdeps which provides additional
account creation requirements.
* Changed the IESG photo page to show full area name instead of area acronym
in each box heading. Linked the area name to the area page. Removed the
area acronym under each picture. Tweaked the vertical alignment of photo
wells. Fixes an issue raised by housley@vigilsec.com
* Fixed some tests.
* Added a clean() method to the Group creation form which requires a BoF to
have a parent group. Fixes issue #1970.
-- Henrik Levkowetz <henrik@levkowetz.com> 17 Jun 2016 13:20:18 +0000
ietfdb (6.22.2) ietf; urgency=low
This is a patch release which updates various web assets (json libs
and such). From the commit log:
* Merged in [11358] from lars@netapp.com:
Updated vnu to 16.6.14.
* Merged in [11357] from lars@netapp.com:
Updated various web assets.
-- Henrik Levkowetz <henrik@levkowetz.com> 15 Jun 2016 15:09:35 +0000
ietfdb (6.22.1) ietf; urgency=low
This is a small bugfix release which fixes a number of issues which made
some manual actions necessary in order to use the 6.22.0 release in
development mode.
* Added a missing __init__.py file.
* Added default media and photo directories for use in development.
Changed settings to point to the media dir in development.
* Fixed a bug in the default alias-file settings.
* Improved data migration for plain_name aliases.
* Tweaked indentation of inline python in the mkdevbranch bash script.
* Tweaked bin/mkrelease to be more quiet.
-- Henrik Levkowetz <henrik@levkowetz.com> 13 Jun 2016 15:13:48 +0000
ietfdb (6.22.0) ietf; urgency=medium
**Support for profile photo and biograpy**
This release brings in basic support for having a biography and a photo
associated with a person's profile in the datatracker. This makes it
possible to provide photo presentation pages for the IESG
[https://dt.ietf.org/iesg/photos], the IAB [https://dt.ietf.org/group/iab],
WG chairs, [https://dt.ietf.org/wg], etc.
It is of course possible to extend this to displaying photos as part of many
other regular datracker pages, but this first release only aims at making
photos available for use cases such as the IESG, IAB, and WG Chair pages
already present (and manually maintained) at www.ietf.org. Since the
datatracker already has the information on who the sitting ADs, WG Chairs,
etc. are, this release makes it feasible to automatically keep pages such as
https://www.ietf.org/iesg/members.html up-to-date by pulling role, photo,
and bio information from the datatracker.
-- Henrik Levkowetz <henrik@levkowetz.com> 12 Jun 2016 10:44:03 +0000
ietfdb (6.21.1) ietf; urgency=medium
This is a bugfix patch release, in preparation for an upcoming feature
release. Excerpt from the commitlog:
* Fixed a problem with accessing a group's workflow customisation page
from /group/{{acronym}} instead of /wg/{{acronym}}/.
* Changed the acceptable mime type for uploaded xml files to be either
text/xml or application/xml.
* Fixed a bug found by rjsparks@nostrum.com in the submission test text
output.
* Fixed a problem with person alias updates where get_or_create() could
find two results for one alias name because utf8_general_ci collation would
match multiple different utf8 forms to the same name.
* Added an initial migration for messages.
* Added a tiny script which extracts test coverage figures from the
release-coverage.json data.
* Updated maximum file-sizes for draft submissions. Added some
Trac-glue-related settings.
* Changed some instances of error strings from ascii to unicode in order
to avoid problems with unicode error messages, such as the file size
indications generated by django.template.defaultfilters.filesizeformat().
* Prevented people from adding ietf list-addresses to their personal
accounts.
-- Henrik Levkowetz <henrik@levkowetz.com> 10 Jun 2016 09:45:36 +0000
ietfdb (6.21.0) ietf; urgency=medium
**Rewritten document tracking support**
The part of the datatracker that lets community members set up personal
document tracking lists and notifications has been in need of refactoring
for quite some time. This release brings in a thorough refactoring and
simplification of that code, with improved management of both personal
and group lists.
Here is an excerpt from the changelog:
* Merged in ^/branch/iola/community-list-cleanup-r11172@11175 from
olau@iola.dk, which provides rewritten community document tracking and
notification.
* Merged in ^/branch/iola/account-registration-fixes-r11167@11179 from
olau@iola.dk, which contains fixes and refactoring for the account
registration code, in order to better support the coming community app
refactoring.
* Modified a few tests to handle the improved handling of error messages
(not conflating them with help text any more).
* Improved the crontab support.
* Improved the help info for the coverage_changes management command.
-- Henrik Levkowetz <henrik@levkowetz.com> 20 May 2016 10:21:30 +0000
ietfdb (6.20.0) ietf; urgency=high
**Better yang support, reworked schedule management, cronjob release management**
This is a mixed feature and bugfix release. It provides additional
support for Yang models, reworked pages for meeting schedule
management, adds a crontab file as part of the release managed files,
and provides a whole bunch of bugfixes. Details below:
* Merged in [11137] from rjsparks@nostrum.com:
Reworked the pages that manage all the possible schedules for a
meeting. Removed a lot of custom javascript. Fixes issue #1921.
* Merged in [11133] from rjsparks@nostrum.com:
Cleanup: Remove hooks for TowTruck.
* Merged in [11132] from rjsparks@nostrum.com:
Minor template typo correction.
* Merged in [11129] from rjsparks@nostrum.com:
Have person.formatted_email() return the primary address if one is so
marked. Fixes issue #1928.
* Merged in [11128] from rjsparks@nostrum.com:
Leave out the sentence about consensus when requesting publication as
the ISE. Fixes issue #1952.
* Merged in [11122] from rjsparks@nostrum.com:
Add page counts to doc.json. Fixes issue #1936.
* Merged in [11120] from rcross@amsl.com:
Update announcement tool permissions for new IAOC chair.
* Merged in [11118] from rcross@amsl.com:
Move standalone monthly report scripts to bin directory.
* Merged in [11116] from rjsparks@nostrum.com:
Add an entry to GROUP_EVENT_CHOICES for status updates. Fixes issue #1948.
* Excluded management commands from code coverage figures -- testing is
possible but in many cases would be so slow that the test suite would
become much more painful to run.
* Merged in [11112] and [11113] from rjsparks@nostrum.com:
Add a page to show the active status reports all in one place. Fixes
issue #1951.
* Tweaked the field names of Person name fields to make the intended use
clearer.
* Fixed the function has_rfc_editor_note() to return boolean -- datetime
cannot be serialized as JSON, so /iesg/agenda/agenda.json was broken when
there was an rfc-editor-note.
* Added a crontab file to be symlinked from /etc/cron.d/, and related
scripts to be run from cron. Requires refactoring of CronRunner and
NightRunner scripts before activation, to avoid duplicate runs.
* Added a django management command to populate yang model libraries from
RFCs and drafts.
* Add support for legacy IPR search arguments, for compatibility with old
ipr search URLs.
* Added a missing '?join' to each group's xmpp link on the charter pages,
and removed an unwanted double slash. Fixes issue #1950
* Fixed the multiple (incorrect) extension problem for some materials
links. Fixes issue #1947.
-- Henrik Levkowetz <henrik@levkowetz.com> 05 May 2016 12:37:18 +0000
ietfdb (6.19.0) ietf; urgency=high
**IETF 95 Code Sprint**
This release contains datatracker bugfixes and enhancements from the IETF-95
Code Sprint. This brings many small but useful bugfixes and enhancements,
as described below. Many thanks to everyone who contributed!
Some additional contribution which have been received after the code sprint
will be released later in the week. Keep the fixes coming :-)
* Merged in [11085] from bartosz.balazinski@interdigital.com:
Added validation for the dependency graph output type (one of 'dot',
'pdf', 'svg'). Added an area column to the directorate summary page.
Commit fixes bug #1887, fixes bug #1940.
* Merged in [11080] from rjsparks@nostrum.com:
Show the link for editing what agendas a document appears on more
liberally. Fixes #1935.
* Merged in [11079] from kivinen@iki.fi:
Fixed ICS UIDs so they are unique, even if the timeslot is same.
Fixes issue #1522.
* Merged in [11064] [11082] from housley@vigilsec.com:
The secretariat and the Team Chair can now edit team groups. In addition,
if the team in within the IETF, Area Directors can edit it. And, if the
team is within the IRTF, the IRTF Chair can edit it. Cleaned up the
checking permission for a user to manage a group. Also, cleanly handle a
set of group parent links did for a loop. Fixes issue #1915.
* Added links back to the group pages from the group names on the meeting
materials page.
* Merged in [11083] from stephen.farrell@cs.tcd.ie, with some tweaks:
Assigned default consensus for IETF stream documents, partly fixing #1403
- IRTF/IAB may want more, this just does IETF stream.
* Merged in [11070] from housley@vigilsec.com:
Only the Secretariat can see the history for parked IPR statements.
Fixes issue #1922.
* Merged in [11075] from ben@nostrum.com:
Allow meetings/materials to be queried without an explicit meeting number.
Fixes issue #1934.
* Merged in [11072] from rcross@amsl.com:
Add ability to enter recording URLs for non working group sessions.
Fixes issue #1885.
* Merged in [11058] from rjsparks@nostrum.com:
Allow WG/RG Chairs and secretaries to edit the replaces relationship for
any document, not just the documents in their groups. Fixes issue #1939.
-- Henrik Levkowetz <henrik@levkowetz.com> 05 Apr 2016 17:54:10 +0000
ietfdb (6.18.1) ietf; urgency=low
This is a small bugfix release.
* Added (belatedly) progress bars to some long-running migrations.
* Fixed a few issues with the docker/run script.
* Added some debian modules to the docker/Docker file used to generate
the docker image
-- Henrik Levkowetz <henrik@levkowetz.com> 30 Mar 2016 11:54:31 +0000
ietfdb (6.18.0) ietf; urgency=medium
**Status update summaries for groups, and yang symbols in yang draft listings**
This release brings in 2 new features, as follows:
* Merged in [10969] from rjsparks@nostrum.com:
Capture 'Status update' summaries for groups that want to provide
them. These updates show on the groups charter (or about) page, and in the
group history. The most recent update provided before proceedings
corrections closing date is included in the group's page in the meeting
proceedings. This addresses the majority of #1773 (a ticket entered on
behalf of the IESG).
* Merged in henrik/6.16.1-pyang-work@10995:
Added in support for displaying results from selected submission checks
as symbols on draft pages and in draft lists. For now, that means that
drafts with yang modules will show either a green or orange yang symbol,
depending on the result of the submission yang validation check.
-- Henrik Levkowetz <henrik@levkowetz.com> 28 Mar 2016 20:10:07 +0000
ietfdb (6.17.1) ietf; urgency=medium
This is a patch release, cleaning the slate before the group status update
feature.
* Merged in [10974] from rjsparks@nostrum.com:
Turn the shepherd management buttons back on for the ISE. Fixes #1925.
* Merged in [10973] from rjsparks@nostrum.com:
Show the drafts from all of a groups sessions on the materials page.
Fixes #1933.
* Merged in [10954] from rjsparks@nostrum.com:
Remove the stream from the 'howpublished' component of the bibtex
reference for an rfc. Fixes #1927.
* Merged in [10953] from rjsparks@nostrum.com:
Use the same pattern for extending installed apps with middleware classes.
* Updated docker-related files based on 6.17.0
* Put a guard in the yang validator against trying to read a draft which
is absent from the staging area, and against unexpecte pyang output.
* Fixed a problem with paging of api lists, which requires that the
ordering keys define a fully deterministic ordering (i.e., there may be no
entries with the same sort position in order to make the api paging work).
(The admin interface's paging does not seem to have this problem.) Fixes
issue #1930.
* Added object pk to the cache key. Fixes issue #1929.
* Fixed a possible index error in the yang validator checker plugin.
-- Henrik Levkowetz <henrik@levkowetz.com> 28 Mar 2016 15:00:09 +0000
ietfdb (6.17.0) ietf; urgency=medium
**Speedier REST API and Newest-First Search Result Ordering**
This is a small combined feature and bugfix release.
It introduces better sort capability for document search results which are
too large to present all search result items on one page. Since 6.12.0 it
has been possible to do both reverse and regular client-side sorts on the
various search result columns when all the search results did fit on one
page, but for truncated results only ascending sorts has been possible. For
the date column in particular, this was mostly less than useful, as it would
present the oldest results first, rather than the most recent. This has now
been remedied; sorting in both directions is available also for large
document search results.
This release also contains various speed-related fixes. Of particular note
is speed imporvements of heavy REST API queries on the order of a factor 4,
by adding caching, and speed improvements of a factor 20 for some heavy
legacy pages, by limiting the rendered content to what is actually needed.
Details:
* Tweaked the test-crawler to give the same log line format for exception
failures as for regular log lines.
* Merged in [10932] from rjsparks@nostrum.com:
Restrict related documents included in the 1wg-charter* views to those
that update or obsolete WG produced RFCs.
* Fixed some typos.
* Introduced caching for the REST API resources by subclassed tastypie's
ToOneField in order to provide caching for FK entries.
* Removed obsolete Submission.idnits_message field.
* Added an admin model class for SubmissionEvent.
* Tweaked the mkdevbranch utility script to be able to make a branch for
one specific developer on request.
* Corrected the path to the wrapper for postconfirm used by the draft-
and wg-aliases.
* Added a workaround for thread import lock problem,
http://bugs.python.org/issue7980.
* Renamed a bunch of identically named MainTestCase classes.
* Removed unused idnits_message field on Submission model.
* Added reverse sort capability to truncated document search views. Aligned
the sort direction arrow with that used for the client-side tablesorter
for untruncated results.
-- Henrik Levkowetz <henrik@levkowetz.com> 16 Mar 2016 15:11:45 +0000
ietfdb (6.16.0) ietf; urgency=medium
**Yang Validation of Draft Submissions**
This release adds Yang validation of submitted drafts which contain
Yang code, through a new plug-in architecture which makes it easy to
addo other submission-time checkers and validators in the future.
It also contains a few unrelated fixes and tweaks, as follows:
* Fixed pyflakes complaints introduced with pyflakes 1.1.0
* Refactored draft submission checks so that new checkers can be slotted
in through a configuration in settings.py. Refactored the calling of
idnits to use the new API, and added a pyang validation check.
* Added new entries to requirements.txt: pyang, xym, and jsonfield. Sorted
the list.
* Merged in [10880] from rjsparks@nostrum.com:
Only show the 'Upload new revision' button when the view will actually
let you upload a new revision.
* Merged in [10862] from rjsparks@nostrum.com:
Group concluded working groups by area. Fixes #1670.
* Merged in [10839] from housley@vigilsec.com:
Added test for proper eneration of the approval message with and without
an RFC Editor Note. Tweaked RFC Editor note display template.
-- Henrik Levkowetz <henrik@levkowetz.com> 05 Mar 2016 15:01:38 +0000
ietfdb (6.15.0) ietf; urgency=medium
**Session Docs, WG List Archive Tab, RFC Note enhancements**
This release provides a number of nice enhancements:
- Documents can now be associated with meeting sessions from the document
information page by group chairs, secretariat, etc., through an edit button
by the 'On Agenda' entry in the Stream info section.
- The group pages now provide links to both the new Mailarchive and the old
MHonArc list archives (if both exist).