forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog
More file actions
8985 lines (6024 loc) · 344 KB
/
Copy pathchangelog
File metadata and controls
8985 lines (6024 loc) · 344 KB
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.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).
- The ability to add RFC Editor notes which will be called out on the IESG
agenda which was introduced in release 6.14.0 has now been made available
to the IAB, IRTF and Independent streams.
Detailed changelog information:
* Merged in [10861] from rjsparks@nostrum.com:
Data cleanup: place old groups in better states and better areas. Remove
a few groups that appear to have never existed (as groups).
* Merged in [10857] from rjsparks@nostrum.com:
Preserve the assumptions in the secr/proceedings code by isolating it from
drafts now appearing in sessionpresentations.
* Merged in [10856] from rjsparks@nostrum.com:
- Show all sessions associated with a document.
- Remove the day/seq urls from the materials tree.
- Allow sessionpresentation.rev to be None, meaning 'current version'.
- Streamlined workflows to focus on current versions of a draft as a default.
- Allow adding and editing sessionpresentations when looking at a specific document.
- Allow adding drafts when looking at a specific session.
- Add the meeting tab to 'team' groups.
- Refactored several utility classes and expanded on factories.
Fixes #1908 and #1910.
* Since the list-archive tab on group pages can sometimes be a tab and
sometimes a link out, positioning it between the always-tab and always
link-out entries seems reasonable.
* Column text on the archives tab could overlap for some screen sizes.
Tweaked the use of bootstrap cell width styles.
* Merged in [10848] from rjsparks@nostrum.com:
Correct typo in template. Fixes #1914.
* Restricted django-bootstrap3 to versions which work with django 1.7.
* Merged in [10718] from olau@iola.dk:
Set daemon = True on the thread in the SMTP test server running while
running tests. This fixes the annoying problem of the python process
staying alive after certain bugs in the test invocation or after a
plain Ctrl + c.
* Merged in [10840] from rjsparks@nostrum.com:
Fill in the list archive tab, showing both mailarchive and mhonarc links
when they exists. Preserve the immediate link-to-archive behavior for the
group pages for lists that are not in mailarchive/mhonarc. Provides a url
at the datatracker for the mailman listinfo pages to use that will show
both types of archive.
* Tweaked the output of the check_referential_integrity script to specify
the through table name for m2m relationships.
* Merged in [10834] from housley@vigilsec.com:
Allow IAB, IRTF, and Independent streams to use new capability for RFC
Editor Notes. Do not display of document shepherd and shepherd writeup
for non-IETF stream documents. Do not display IESG information for IAB
stream documents.
* Merged in [10828] from lars@netapp.com:
IRTF RGs do not have a review period, the email is generated as a courtesy
to the IAB and IESG.
-- Henrik Levkowetz <henrik@levkowetz.com> 29 Feb 2016 17:00:45 +0000
ietfdb (6.14.1) ietf; urgency=medium
This is a small bugfix release.
* Merged in [10811] from rjsparks@nostrum.com:
Handle expiring the last call of status change documents. Be more robust
about errors when expiring last calls. Fixes #1911.
* Merged in [10810] from rjsparks@nostrum.com:
Removed a bunch of redundant displays of the django messages framework
messages from forms.
* Merged in [10809] from rjsparks@nostrum.com:
Further tweaks to rendering messages from the messaging framework.
* Merged in [10806] from rjsparks@nostrum.com:
Fix a minor typo in the new rfc_editor_note code.
* Merged in [10804] from rjsparks@nostrum.com:
Some tweaks to handle rendering django messaging framework messages a
little better.
* Merged in [10803] from rjsparks@nostrum.com:
Create the approval ballot for charters when the charter enters external
review (or iesg review if external review is skipped). Fixes #1792.
* Moved some production-path checks to the checks module, and fixed up
tests which changed some settings without restoring them.
* Added caching to the smart document lookup view.
-- Henrik Levkowetz <henrik@levkowetz.com> 11 Feb 2016 09:33:25 +0000
ietfdb (6.14.0) ietf; urgency=medium
**Meetings Tabs on Group Pages**
This is a mixed bugfix and feature release. The most notable new features
are:
- The WG and RG pages now have 'Meetings' tabs, which lists regular and
interim meetings with links to agenda, minutes, and materials.
- The IESG Telechat Agenda now shows "(Has RFC Editor Note)" after the I-D
filename if there is an RFC Editor Note associated with the document.
- Improved calculation of 'modified' timestamps for meetings, to make it
possible for meeting apps like 'IETFers' to know when to fetch updated
meeting data without having to poll all sessions and timeslots regularly
in order to catch changes.
Here's the full list of fixes and features:
* Merged in [10780] from rjsparks@nostrum.com:
Stop making active unknown-email- objects. Mark existing such objects
as inactive. Tweak exception handling in submit/utils to make it obvious
that the utilities will not change the person an existing Email record is
pointing to.
* Removed previously mandatory but unwanted '.html' suffixes on meeting views.
* Merged in [10779] from rjsparks@nostrum.com:
Added the ability to associate documents with sessions from the document
main page. Integrated the group meetings tab with the secretariat meeting
request and meeting materials pages. Made better use of bootstrap styling
for the meetings tab and session details view.
* Consolidated multiple group contextmenu buttonlist elements into one.
Changed button links into plain links for agenda/minutes/materials -- makes
the bage less busy, takes up less room, and lessens the conflation between
action buttons and links.
* Merged in [10770], [10771], [10772], and [10773] from housley@vigilsec.com:
The IESG Telechat Agenda now shows "(Has RFC Editor Note)" after the I-D
filename if there is an RFC Editor Note associated with the document.
This was added to the html and txt versions of the agenda. It was not
added to the Secretariat view or the Scribe view of the agenda.
For transition, when an AD edits the RFC Editor Note, they need to move
the text from the current writeup into the new field. Returning documents
on the telechat agenda seems to be the biggest opportunity for something
to fall between the cracks. If an event of type "changed_rfc_editor_note'
exists, and the string "RFC Editor Note" appears in the text of the most
recent 'changed_ballot_writeup_text' event, then a message is shown that
tells the AD to remove the RFC Editor Note from the writeup.
* Merged in [10765] from lars@netapp.com:
Correctly identify group work items in announce_to_lists.txt. Fixes #1901.
* Merged in [10764] from lars@netapp.com:
Fixed a RemovedInDjango19Warning: The django.forms.util module has been
renamed. Use django.forms.utils instead.
* Merged in [10763] from lars@netapp.com:
Updated some web assets. Also change bower.json so bower can automatically
fetch newer minor or patch releases for the assets.
* Merged in [10758] from rjsparks@nostrum.com:
Provide help-text for the new-status field when editing status change
document relations. Fixes #1898.
* Merged in [10757] from rjsparks@nostrum.com:
Fix from Ole Laursen for the javascript managing status-change document
relationships. Fixes #1899.
* Merged in [10756] from rjsparks@nostrum.com:
Tweak factories to not randomly create keys that violate constraints.
* Merged in [10755] from rcross@amsl.com:
Change merge-person-records, don't delete User until we handle related
objects.
* Added a script to disambiguate document timestamps for the last 3 years,
in order to avoid AmbiguousTimestamp exceptions and HTTP 500 errors for
certain documents and document envents which fell in the autumn PDT-PST
duplicate hour.
* Changed draft submission confirmation to not fail if the login used is