forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog
More file actions
8350 lines (5601 loc) · 319 KB
/
changelog
File metadata and controls
8350 lines (5601 loc) · 319 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.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
missing an associated person record.
* Merged in [10734] from rjsparks@nostrum.com:
Excluded concluded bofs from the set of groups for which a person can
pre-approve drafts. Restore AD access to preapproval. (Need to consider
adding delegate and group secretary access). Fixes #1896.
* Merged in [10733] from rjsparks@nostrum.com:
Show session details for interims as well as ietf meetings.
* Merged in [10732] from rjsparks@nostrum.com:
Filter unused document types from the search form. Fixes #1890.
* Merged in [10731] from rjsparks@nostrum.com:
Addresses issues uncovered by the test-crawler. Adds missing DocAlias
records for several document types. Creates DocAlias objects when
createing Document objects for those document types. Identifies places in
code to touch when we are ready to expose the bluesheets and recording
document types at /doc/. (The data rows and the content store need work
before doing so).
* Merged in [10728] from rjsparks@nostrum.com:
Refactored meeting urls file without changing functionality in prepation
for extending some views to handle interims. Reduced the level of
redundancy in the way the urls lists were constructed.
* Merged in [10726] from rjsparks@nostrum.com:
Added listing all the area directors back. Related to #1889.
* Merged in [10725] from rcross@amsl.com:
Modified notification text for merges of multiple Person records for the
same person.
* Merged in [10723] from rjsparks@nostrum.com:
Tweaked the rendering of Area Directors in the charter text used in
new-work, internal review, external review, and group action messages to
display. Fixes #1889.
* Merged [10721] and [10724] from rcross@amsl.com:
Removed Test watermark from interim meeting index background. Rewrote
merge-person-records utility script to handle all related objects in a
generic manner, remove old User records and handle email primary
attribute. Fixes #1627.
* Merged in [10719] from rjsparks@nostrum.com:
Added a meetings tab to the group information page. Links to minutes,
agendas, and materials for each session at each meeting. Improves the UI
for the session materials page.
* Merged in [10701] from rjsparks@nostrum.com:
Simplified meeting.session_details. Shows all sessions for a meeting on
one page instead of having a page per session. Removes the by-date,
by-weekday, by-sequence mechanic.
* Changed the calculation of 'modified' time for a meeting, and also changed
the 'updated' field for Session, TimeSlot, and SchedTimeSessAssignments to
auto-update on any changes to the objects.
* Enabled resource sorting by modification time for Sessions, Timeslots, and
Assignments. Fixed a bug which left Timeslot.duration null in the
resources.
-- Henrik Levkowetz <henrik@levkowetz.com> 07 Feb 2016 15:42:41 +0000
ietfdb (6.13.0) ietf; urgency=medium
**Improved NomCom Support**
This release provides a massive refactoring of the NomCom app, fixing
a large number of known issues, and adding a long list of refinements,
improvements and new features. This whole release is the work of
rjsparks@nostrum.com. From the commit log:
* Merged in [10629] from rjsparks@nostrum.com:
This set of changes focuses on improvements to the nomcom portion of
the datatracker.
These changes:
- Simplify the nomcom form for comments. Make it more obvious who
receives mail when a comment is supplied. Fixes #1849.
- Simplify the nomcom form for nominations. Provide a primary workflow
where nominations choose an existing Person, and a secondary
workflow for nominating new people.
- Allow nominees to add a comment when accepting or declining a
nomination. Fixes #1845.
- Organize the list of nominees on the feedback page. Fixes #1786 and
#1809.
- Simplify the mechanisms used to display feedback message counts.
- Regroup the feedback view to make it easier to see where to spend
review effort. Fixes #1866.
- Capture when nomcom members last reviewed feedback for a given
nominee. Add badges when new feedback is avaliable. Improve the
layout of the feedback index page. Fixes #1850.
- Reorganize the tab navigation on the nomcom private pages. Made it
more obvious when the chair is doing something that only the chair
gets to see. Fixes #1788 and #1795.
- Regroup multiselect options to make classifying pending feedback
simpler. Make the control larger and resizable. Fixes #1495.
- Simplify the chair's views for editing nominee records. Replace the
merge nominee form with a request to the secretariat to merge Person
records. Fixes #1847.
- Added merging nominees to the secretariat's persson merging script.
- Show information for concluded nomcoms. Close feedback and
nomination for concluded nomcoms. Fixes #1856.
- Improve the questionnaire templates, reminding the nominee that
receiving the questionnaire does not imply they have accepted a
nomination. Fixes #1807.
- Remove the description field from Postion. Simplify the Position
list and the Position edit form. Make the nomcom pages more self
documenting. Add a page to help nomcom chiars through setting up a
new nomcom. Fixes #1867 and #1768.
- Remove the type from the template pathname for the requirements
templates. Make the requirements views work for both types plain and
rst. Changed the default type for new nomcom requirement templates
to rst.
- Remove 'incumbent' from the models. Fixes #1771.
- Adjust the models for Nominee and Nomination to better associate
Nominee objects with Person objects.
- Remove BaseNomcomForm and the implementation of custom fieldsets.
- Replace the custom message framework with the django provided
messages framework.
- Improve SearchablePersonField to show the primary email address for
any search result where a name appears more than once.
- Add the use of factory-boy for generating test data. Normalize
management of a test directory for test nomcom public keys.
Significantly improve test coverage of the nomcom related code.
-- Henrik Levkowetz <henrik@levkowetz.com> 18 Jan 2016 09:05:42 +0000
ietfdb (6.12.1) ietf; urgency=medium
This is a bugfix release, in preparation for the next feature release.
* Merged in [10686] from lars@netapp.com:
Load the js for the timeline as part of the page header, in order to
(hopefully) avoid page re-render after the json loads. Only apply the
gradient that signifies document expiration to I-Ds. Suppress duplicate
x-axis labels (same month).
* Merged in [10685] from lars@netapp.com:
Commit r10578 broke search result table display due to the added column.
Fixed this. (Also updated vnu.jar. Unrelated, but wasn't careful when
committing.)
* Merged in [10684] from lars@netapp.com:
Added a warning about the accuracy of bibliographic information for Legacy
RFCs.
* Added listing of Area Directors and TBD indications which was
inadvertently dropped from some chartering related emails during
refactoring. Also added testing code to verify the email body content of
some chartering emails a bit more thoroughly.
* Merged in [10674] from lars@netapp.com:
More fixes to charter-related emails and some related web templates.
Mostly focused on supporting the IRTF better, but also removing some
redundancies (i.e., including group_info.txt instead of duplicating
something similar.)
* Merged in [10673] from lars@netapp.com:
Fixed the internal review email template and related code to handle IRTF
RGs better.
* Merged in [10672] from lars@netapp.com:
Fixed a bug that prevented the IRSG from being CC'ed, and correct its
email address.
* Merged in [10671] from lars@netapp.com:
Fixed a 'RemovedInDjango19Warning' warning.
-- Henrik Levkowetz <henrik@levkowetz.com> 15 Jan 2016 08:46:18 +0000
ietfdb (6.12.0) ietf; urgency=medium
**Document timelines, table sorting, iesg agenda page counts, AD position colours**
This is a combined feature and bugfix release.
New features from lars@netapp.com:
- Graphical document timelines at the top of each draft and RFC document
page, giving an overall graphical view of the history timeline of the
document and its ancestors.
- Swift client-side sorting of tables, wherever it makes sense.
- Document dependency graphs are now provided in svg format by default.
The old pdf format is still available if desired.
New features from rjsparks@nostrum.com:
- Page counts on the IESG agenda and documents pages
New features from henrik@levkowetz.com:
- Substantially reworked AD position signal colours, with sidebars, on
the AD view of the IESG agenda and document pages.
There is also a long list of bugfixes, provided by rjsparks@nostrum.com,
lars@netapp.com, housley@vigilsec.com, rcross@amsl.com, and
henrik@levkowetz.com. Here are details, extracted from the commit log:
* Don't redirect to proceedings for future meetings which exist in the
database but don't have a schedule yet. We want to show tne agenda (even
if empty) for those.
* Merged in [10636] from rjsparks@nostrum.com:
Refactored counting telechat pages to do it only in one place. Count more
accurately and make it possible to report more granularly. Added page
counts to agenda.json.
* Merged in [10634] from rjsparks@nostrum.com:
Change the text used in conflict review approval messages. Fixes #1877.
* Merged in [10633] from housley@vigilsec.com:
If the Internet-Draft is not the current revision, set the URLs to
settings.IETF_ID_ARCHIVE_URL. Fixes #1876.
* Merged in [10632] from housley@vigilsec.com:
For documents in the IETF stream, display consensus in the IESG portion
of the page. For documents in other streams, disply consensis in the
Stream portion of the page. Fixes #1560.
* Merged in [10631] from rjsparks@nostrum.com:
Added page counts to iesg/agenda/documents and to the edit telechat date
form. Fixes #1772.
* Merged in [10630] from housley@vigilsec.com:
Better handling of consensus for BCPs and standards track documents.
Partial fix for ticket 1560.
* Merged in [10624] from rcross@amsl.com:
ValueError at /ipr/new-specific. Fixes #1873.
* Merged in [10623] from lars@netapp.com:
Simplify the dependency graph generation, by relying on dot to generate
PDF (and now also SVG) directly. Default to showing SVG from the link on a
group's page.
* Merged in [10621] from lars@netapp.com:
Use js tablesort almost everywhere I thought it would make sense. While I
touched the pages, I also corrected a few minor HTML nits, capitalization
inconsistencies and some other minor things.
* Merged in [10605] from lars@netapp.com:
Show IDs that expired with a fading gradient and don't extend their box
after 185 days. Plus a bunch of cosmetic changes.
* Rewrote crawl_history() to be easier to read (renaming multiple
'retval' variables and other naming tweaks) and made it return distinct
revisions without the added uniqueness filtering round from
/personal/lars/6.11.1.dev0@10604.
* Merged in [10591] from housley@vigilsec.com:
Added a negative test to ensure the RFC Editor is not included on
notifications of manual posts by the Secretariat unless the document is in
the RFC Editor Queue.
* Added a directory for staging of manually submitted drafts, instead of
using hardcoded /tmp/, and added creation and removal of a test directory
for this.
* Merged in [10586] from housley@vigilsec.com:
Added automated tests for the fix for ticket #1751.
* Merged in [10569] from housley@vigilsec.com:
For manual posting of an I-D by the Secretariat, include the RFC Editor
on the email message if the I-D is in the RFC Editor Queue. Fixes #1751.
* Changed a helper function meeting_updated() to a method on Meeting, and
provided it as a synthetic attribute on the /api/v1/meeting/meeting/
endpoints of the JSON API.
* Merged in [10567] from housley@vigilsec.com:
For Charters, display the Responsible AD as well as the Charter Edit AD.
Fixes #1829.
* Moved the timeline colouring css to ietf.less, to pick up the brand
colours directly.
* Merged in /personal/lars/6.11.1.dev0@10590 from lars@netapp.com, which
brings in a timeline view at the top of document pages.
* Merged in [10551] and [10553] from lars@netapp.com:
Added an .editorconfig file, so we can have some consistency in the project.
(I don't care what settings we use, as long as we all use the same.) Use
four spaces as default (Python default, as suggested by Henrik).
* Tweaked the colours a bit in order to make it easier for ADs to
distinguish between the position colours on their personalised versions of
iesg/agenda/documents/.
* Added a coloured bar at the right-hand side of the ADs' view of
iesg/agenda/documents/, in order to make it easier to distinguish between
the 'yes' and 'no-objection' colour codes.
* Moved definitions for the AD ballot position's background colours
(which shows each AD his own positions by colour coding) from ietf.css to
ietf.less, to make it easier to adjust the colours while keeping to the
hues of the colour palette.
* Updated and corrected the description in the README file of of how the
contents of the bootstrap/dist/ directory end up in the right place for
static serving.
* Merged in [10540] from lars@netapp.com:
Update vnu HTML5 validator, and fix an HTML nit it found.
* Merged in [10539] from lars@netapp.com:
Fix CSS/js inclusion of select2 from new static location. (Looks like this
file was forgotten when we began to use bower.)
* Merged in [10538] from lars@netapp.com:
Fixes for displaying IRTF RGs (call them RGs, and don't show IESG state.)
* Merged in [10536] from lars@netapp.com:
Manage html5shiv and respond.js locally via bower, rather than relying on
the CDN.
* Merged in [10532] from lars@netapp.com:
Move to bootstrap 3.3.6, with a simpler way to maintain our customized
version in the future (described in bootstrap/README-DATATRACKER.rst).
-- Henrik Levkowetz <henrik@levkowetz.com> 13 Jan 2016 10:28:56 +0000
ietfdb (6.11.0) ietf; urgency=medium
**Liaison Tool Enhancement**
This release introduces a number of requested changes and enhancements
to the liaison tool, and a few other fixed:
* Merged in^/personal/rcross/v6.7.3.dev0@10465, which included
[10382],[10464],[10465], introducing a number of usability fixes to the
liaison tool, including a new tab for action needed statements and the
ability to add comments to liaison statements' history.
* Merged in [10503] from rjsparks@nostrum.com:
Allow setting the stream state of a document that has not yet had any
stream state set. Fixes #1859. Candidate for patch.
* Updated the docker README.
* Updated the mkrelease script to send svn checkout links which specify
https://, not http.
-- Henrik Levkowetz <henrik@levkowetz.com> 20 Nov 2015 20:25:07 +0000
ietfdb (6.10.0) ietf; urgency=medium
**Prepackaged Development Environment with Docker; Test Speed-Ups**
This release provides what is hoped to be a dramatic improvement in the time
needed to set up an environment for datatracker development, by providing
scripts to use prebuilt docker images and mysql database tarballs.
The setup process should now be as easy as:
1. Install Docker: https://docs.docker.com/engine/installation/
2. Check out datatracker code: svn co https://svn.tools.ietf.org/svn/ietfdb/...
3. In your working copy, pull down the database image: docker/setupdb
4. In your working copy, start the docker container: docker/run
A more comprehensive setup description is available on the datatracker
development wiki: https://wiki.tools.ietf.org/tools/ietfdb/wiki/Docker
This release also introduces two tweaks to the test suite runner, which should
reduce the time it takes to run the test suite by around 50%.
Commit log details:
* Added a utility script docker/updatedb to download and load a new dump
into the local database, using 'manage.py dbshell'.
* Added a utility model to hold information on when a given database dump
has been done.
* Applied test speedup fixes to the testcrawler config, too. Looks like
~15% speed-up of the test-crawler.
* Added handling for an exception which can occur in bin/mergeready if a
branch with merge flags is moved, for example moving it to an attic after
merge.
* Added support for running different containers mapping internal port
8000 to different external ports. Added additional text explaining why we
won't run multiple containers from the same svn branch. Did som default
value code refactoring.
* Added little script to pull down and unpack a copy of the datatracker's
mysql database files.
* Added tweaks to the docker setup to make it work nicely to run different
docker containers for different SVN branches.
* Updated the docker init-script to not re-install MySQL; it can cause
more trouble than it might save; added a guard against trying to set up the
ietf database if MySQL isn't running; and changed the final working
directory to be the same as where the user invoked the 'docker/run'
command. If not started via docker/run, drop into the home directory.
* Updated docker/run with options to select a non-default
docker-repository and docker image tag (which now defaults to the svn
branch basename); added handling for missing docker environment variables,
and for the docker virtual machine not running.
* Disallowed Coverage 4.0.2 in requirements.txt, as it is buggy.
* Removed logging through ietf.utils.log.log when running tests -- should
shave another 15% off the test suite run time, cutting the testsuite
running time in about half compared to earlier.
* Merged in [10097] from olau@iola.dk, in order to speed up the test
suite.
-- Henrik Levkowetz <henrik@levkowetz.com> 14 Nov 2015 00:11:45 -0800
ietfdb (6.9.0) ietf; urgency=medium
**More IETF-94 Code**
The release contains additional code from IETF-94 -- I think this is the
first time we have done two substantial releases based on IETF week
contributions. This introduces enhancements and bug-fixes in a number of
areas, reducing confusion in draft publication-request handling and on
several web pages, clarifying a number of email notifications, making
unicode names work in more places, and giving improved secretariat pages:
* Added a first version of docker image support, with Dockerfile, docker
init scripts, a 'docker run' wrapper, and database image generation.
* Merged in [10431] from rjsparks@nostrum.com:
Reduce confusion around how to send a document from a WG to the IESG
through additional, restrictive, validation on the stream state editing
form. Fixes bug #1418.
* Merged in [10430] from rjsparks@nostrum.com:
Reflect the right group type in personnel change messages. Fixes #1746.
* Merged in [10429] from rjsparks@nostrum.com:
Display the To and (if it exists) Cc correctly on the publication request
form. Fixes #1819.
* Merged in [10426] from rjsparks@nostrum.com:
Fix the links on the state help index page. Fixes #1775.
* Merged in [10425] from bartosz.balazinski@interdigital.com:
Provide information about who has suggested document replaced-by
information in the notification email. Fixes bug #1817.
* Added some default aliases files to the repository, and updated the
aliases settings accordingly. Appropriate production settings have been
added to setting_locals in production.
* Merged in [10418] from henrik@levkowetz.com:
Modified the test data to use some AD and WG chair names that contain
non-ascii characters, and fixed test issues found.
* Merged in [10414] from rjsparks@nostrum.com:
Put possibly replaces sections in the right columns. Fixes #1802.
* Keep draft aliases for 2 years rather than 1 year from posting.
* Merged in [10405] from rjsparks@nostrum.com:
Addresses an issue where the WG document page would show the same document
in more than one section. Fixes #1827.
* Merged in [10384] from rjsparks@nostrum.com:
When a group gives a document a new group state (particularly for the
first time), send a message that says what happened instead of simply
'Adopted'. Fixes #1830.
* Merged in [10383] and [10413] from rcross@amsl.com:
Updated proceedings permissions.
* Merged in [10379] from rjsparks@nostrum.com:
Change the acronym link on the html agenda page to go to the group's
charter page rather than the charter's document page.
* Merged in [10378] from rjsparks@nostrum.com:
Make the internal review message reflect whether this is a new chartering
effort or a recharter. Fixes #1814.
* Added testing of non-ascii unicode names of chairs and area directors.
Fixed a series of issues with rendering of non-ascii names.
-- Henrik Levkowetz <henrik@levkowetz.com> 08 Nov 2015 09:20:24 +0000
ietfdb (6.8.0) ietf; urgency=medium
**IETF 94 Code Sprint**
This release contains the datatracker bugfixes and enhancements from the
IETF-94 Code Sprint. This brings many small but useful bugfixes and
enhancements, as described below. Many thanks to everyone who contributed!
This release also brings a change which is not a code change, but rather a
packaging change which has made the question of what the licence is for the
datatracker code more difficult than need be. Starting with this release,
we don't handle version control of the Django framework by including it in
the repository; we instead version control it throug the requirements.txt
file. This lets us be very simple and clear in the LICENSE file which
covers the datatracker code.
There are additional code sprint changes expected during the week; they will
get their own release later in the week.
Here are details about the changes, extracted from the commit log:
* Added a direct menu link to tutorials under Other. Tweaked a divider
visibility.
* Merged in [10363] from rjsparks@nostrum.com:
email_iana needs to leave address generation to mailtrigger and not try
to rewrap the address. This should be patched into production.
* Merged in [10349] from rcross@amsl.com:
Fixes Ticket #1834. Sorting slides difficult when there are only two
of them.
* Merged in [10348] from rcross@amsl.com:
Add more information to Secretariat session recordings view.
* Merged in [10347] from rjsparks@nostrum.com:
Allow entering more than one email address in addtional cc on the send
ballot comments form. Fixes #1811.
* Merged in [10346] from suresh.krishnan@ericsson.com:
Changes to unapproved milestones (e.g. attaching a draft) will not
trigger a mail to the WG. Fixes #1818.
* Fixed an issue with [10344], where the numberless /meeting/agenda/
would redirect to a non-existing proceedings URL.
* Fixed a weekday numbering problem in a test.
* Merged in [10345] from rjsparks@nostrum.com:
Added an RSS feed for RFCs for use with the digital preservation
project.
* Merged in [10344] from rjsparks@nostrum.com:
Return more sensible results for agendas for old meetings. Fixes #1062.
* Merged in [10343] from housley@vigilsec.com:
Add check to addcomment for WG/RG chair or secretary.
* Merged in [10342] from rcross@amsl.com:
The session request form validation needs to check that durations have
been entered for each requested session. Fixes issue #1794.
* Merged in [10341] from housley@vigilsec.com:
WG/RG chairs and secretaries can add comments to document history; get
non-active I-Ds from www.ietf.org instead of tools.ietf.org. Fixes issues
#1702, #1801, #1831.
* Merged in [10340] from rcross@amsl.com:
Change liaisons ShowAttachmentsWidget to use href(). Fixes issue #1805.
* Merged in [10339] from rcross@amsl.com:
Secretariat locked out of Session Request Tool. Fixes Ticket #1791.
* Merged in [10338] from rcross@amsl.com:
Legacy session scheduling view broken. Fixes Ticket #1806.
* Removed our local copy of Django, and added it to the requirements
instead. Updated the LICENSE to match, as we're not carrying along
external components in the repository any more.
* Replaced a remaining use of removed function smtp_error_logging().
-- Henrik Levkowetz <henrik@levkowetz.com> 03 Nov 2015 03:15:47 +0000
ietfdb (6.7.2) ietf; urgency=medium
This is a maintenance release which does a longtime pending model rename,
and fixes some other small issues:
* Merged in personal/henrik/6.7.2.dev0-schemafix [10297] from
henrik@levkowetz.com: Renamed class ScheduledSession to the more correct
(but unfortunately also cumbersome) SchedTimeSessAssignment, and renamed
reverse relationships involving this class appropriately. Accompanying
changes in javascript and templates. Migrations to match.
* Changed a field in the nomcom models to not care about the value of
NOMCOM_PUBLIC_KEYS_DIR in the settings, as this may change between
developers, and will cause warnings when running migrations otherwise.
* Fixed a bug in meeting.ajax.constraint_json().
-- Henrik Levkowetz <henrik@levkowetz.com> 27 Oct 2015 15:48:14 +0000
ietfdb (6.7.1) ietf; urgency=medium
This is a small maintenance release with some bug-fixes and one enhancement,
a new machine-readable list of IPR declarations per draft, recursively.
Here are details from the commit log:
* Changed nomcom.models.Nomcom() to use a FileSystemStorage which doesn't
record the file system location in the migration, in order to avoid having
model changes detected when switching from one development path to
another.
* Merged in [10265] from rcross@amsl.com:
Fixed IPR notice addresses formatting.
* Added a new machine-readable list of IPR declarations per draft, which
also searches through related documents. Extended make_test_data() with a
replaced document for the test draft.