forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog
More file actions
4823 lines (3156 loc) · 179 KB
/
Copy pathchangelog
File metadata and controls
4823 lines (3156 loc) · 179 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 (5.2.0) ietf; urgency=low
This is a code cleanup release. It adds a test and a managemement command
to run pyflakes (pyflakes is a bit like 'lint' for Python) over the
datatracker code, and provides cleaned-up code so that the new pyflakes test
is clean. The number of lines changed is large, but the changes to what the
code actually does is limited to fixing bugs discovered by pyflakes during
the cleanup. There were around 10 such cases.
Most of the changes are related to import statements, as the code otherwise
was pretty clean already. In almost all places, bulk imports using '*' has been
replaced by explicit imports, for these reasons:
* It makes it clear from where an imported name has come, so that a
human reader can look for an identifier in the import statements, and
see from where it comes, and where he should go to inspect the related
code.
* It makes it clear to the interpreter exactly which symbol is intended,
in cases where the same symbol is defined in multiple modules imported
using '*' import. This is not a common case, but it actually turned up
a couple of times during the cleanup. If the '*' imports in question
hadn't been turned into explicit imports, only the (somewhat arbitrary)
order of the import statements would have determine which instance of a
function or class would actually be visible to the following code. This
situation can make the code do something different from what was intended,
in a quite devious way.
* It avoids unintended import of generically named variables from other
modules. Altough having such variables as module globals is a bad
practice, it happens, and sometimes unintentionally importing them
through a '*' import will make it appear to the interpreter that a
statement intended to use an (by mistake undefined) identically named
local variable is in fact a valid statement which uses the imported
symbol instead. Without the '*' import, the situation would be
correctly flagged by the interpreter.
* Finally, importing all symbols explicitly makes it possible for pyflakes
to do a better job in identifying unused and undefined symbols -- in the
presence of '*' imports, this capability becomes much more limited.
Several cases of bad code (use of undefined variables) was discovered
during the cleanup only after the '*' imports were replaced by explicit
imports.
In many places, the import statements have been reordered to consistently
list the generic python library imports first, followed by django imports,
then local module imports (these typically live on the same level as ietf/
and django/), finally followed by datatracker-specific imports. Some people
find that this kind of consistency in importing, both in keeping a consistent
order, and in importing in a sequence from the more general down to the more
specific, aids in the readability of the code.
-- Henrik Levkowetz <henrik@levkowetz.com> 19 Mar 2014 21:41:16 +0100
ietfdb (5.1.1) ietf; urgency=medium
This is a minor bugfix release, in preparation for merging the pyflakes test
branch to trunk.
* Fixed the meeting materials page so as to avoid duplicate materials
sections for groups with multiple sessions.
* Merged [7456] from rjsparks@nostrum.com:
Patched meeting/ajax to close permissions vulnerability. Tweaked tests to
check the right functionality given the permissions policy currently in
trunk.
* Merged [7447] from rjsparks@nostrum.com:
Cache the dependency graph pdf for an hour.
* Merged [7445] from rjsparks@nostrum.com:
Adds dependency graphs for drafts belonging to a group. Removes links to
Bill's dependency tools. Fixes bug #536.
-- Henrik Levkowetz <henrik@levkowetz.com> 18 Mar 2014 22:49:58 +0100
ietfdb (5.1.0) ietf; urgency=high
This release contains the datatracker bugfixes and enhancements from the
IETF-89 Code Sprint. Many thanks to everyone that contributed! There are
still some contributions from the sprint in the pipeline; they will be included
in later releases.
* Merged in [7400] from rcross@amsl.com:
Fixed bugs with decorators.check_permissions() to allow upload to top
level groups, and fixed the plenary upload check.
* Merged in [7398] from rcross@amsl.com:
Added X-CSRFToken AJAX request header for certain /secr/ pages needing it.
* Merged in [7397] from rcross@amsl.com:
Fixed a bug where build_nonsession() not creating ScheduledSession
objects.
* Merged in [7383] from jmh@joelhalpern.com:
Changes counting logic in ballots to use actual number of ADs.
Causes ballot email to use utility to generate requirements text
Fixes ticket #924
* Merged in part of [7375] from jmh@joelhalpern.com:
Fixed missing mailto: addresses in the meeting requests page. Fixes issue
#1126.
* Merged in part of [7375] from jmh@joelhalpern.com:
Now sending draft update notices to IRSG for IRTF stream drafts. Fixes
issue #1227.
* Merged in [7396] and [7378] from rcross@amsl.com:
Simplified clean_up_draft_files(). Removed references to old draft-archive
subdirectories, and fixed for all RFC file types " Fixes ticket #1164
* Merged in [7386] from tterriberry@mozilla.com:
Describe needed positions in document ballot mail.
This uses doc.utils.needed_ballot_positions() to calculate what is needed.
Fixes #924.
* Merged in [7380] from bartosz.balazinski@interdigital.com:
Changed the URL for some acoount settings from /cookies to
/account/settings. Fixes ticket #806
* Merged in [7368] from rjsparks@nostrum.com:
Improves the detail in the messages sent when creating tickets about
failed sent email. Changes a locally defined exception name to look less
like one already defined in smtplib. This is related to ticket #1208.
* Merged in [7365] from rjsparks@nostrum.com:
Improve handling of status-change relation form submission when conditions
(such as not running javascript) lead to the POST missing required fields.
* Merged in [7371] from rjsparks@nostrum.com:
Migration to repair missing StateDocEvents from wg chairs using the
datatracker to request publication of ietf stream documents. Incremental
improvement to the request publication view to create those StateDocEvents
going forward. This is related to bug #1312
-- Henrik Levkowetz <henrik@levkowetz.com> 05 Mar 2014 18:20:31 +0100
ietfdb (5.0.2) ietf; urgency=medium
This is a minor bugfix release.
* Merged [7292] from rjsparks@nostrum.com:
Allow 1-3 digit RFCs in status change documents. Fixes bug #1321.
* Fixed a server failure for person alias creation during draft submissions.
* Fixed overflow error for meetings without timeslots, which gave server
errors for meeting/64/agenda.html.
* Additional tweaks to bin/mergedevbranch.
* Merged in [7204] from rjsparks@nostrum.com:
Adds the IAB-parented sessions to the set of things returned as
\'areas\'.
Fixes bug #1288
* Reapplied merge of [7209], which although listed in svn:mergeinfo on .
actually doesn't seem to have made it into the repository.
* Only show a link to the tools page for a group if the tools page is
likely to exist, i.e., the group is a WG and it is or has been active.
* Added a logging filter to filter out the 'Invalid HTTP_HOST' emails.
* Changed the SECRET_KEY setting to take account of the settings in
settings_local.
* Merged in [7138] from rjsparks@nostrum.com:
Reworked SMTP Exception handling, adding sending a ticket to the
secretariat when there are errors handing messages off for delivery.
Added SMTP exception handling to send-scheduled-mail.
This is related to ticket #1208
* Added a file to hold a list of changesets which are ready for merge, as
a manually maintained alternative to 'Ready for merge' annotations in
commit messages.
* Typo fixes.
* Set version info and settings back to development mode
-- Henrik Levkowetz <henrik@levkowetz.com> 25 Feb 2014 16:53:54 +0100
ietfdb (5.0.1) ietf; urgency=medium
This is a bugfix release which collects a series of fixes and usability
tweaks from the last months.
* Merged [7236] from rcross@amsl.com:
Fixed Liaison Add CSRF token error and missing Post and Send button.
Fixes ticket #1308.
* Added a way to control the output of the url and template coverage tests,
so they only will be run for verbosity greater than 1, which is controlled
by the --verbosity switch.
* Merged [7214] from rcross@amsl.com:
Changeed old references to pub.ietf.org, to datatracker.ietf.org/secr/.
* Merged [7213] from rcross@amsl.com:
Added a missing template for the secretariat apps: unauthorized.html.
* Merged [7209] from rcross@amsl.com:
Fixed a typo in secretariat drafts add().
* Fixed a probem with wrong URLs in atom feeds, caused by caching. Fixes
issue #1307.
* Added a blank line before new session group in the text agenda, for
readability.
* Added a secret key to settings.py for development use. NOT for
production use; that needs to go in settings_local.py
* Added a warning to the draft submission page about upcoming submission
cut-offs. Added a value in settings.py for the number of days before the
first cut-off to display the waring.
* Updated the caching settings to use memcached in production.
* Remove spurious 'yes' in meeting requests page.
* Merged [7215] from rjsparks@nostrum.com: Use idnits on www.ietf.org
Fixes ticket #1200
* Merged [7215] from rjsparks@nostrum.com:
Use idnits on www.ietf.org. Fixes ticket #1200
* Merged [7212] from rjsparks@nostrum.com:
Removed the "Reason for (re)chartering" line from the charter main
document page. Fixes bug #1294
* Merged [7210] from rjsparks@nostrum.com:
Allow the IRTF Chair and the ISE to request a conflict review directly
through the tracker. Notify the Secretariat when someone other than the
secretariat initiates a conflict review. Notify IANA when anyone
initiates a conflict review. Fixes tickets #1287 and #1289
* Merged [7204] from rjsparks@nostrum.com:
Adds the IAB-parented sessions to the set of things returned as "areas"
Fixes bug #1288
* Merged [7077] from rjsparks@nostrum.com:
Returns "there are no ballots to view yet" rather than 404ing when the
ballot link is followed for a document that exists. It is typical for
last call to be issued (which includes a link to the ballot page) well in
advance of creating any ballot for a document. Fixes bug 1233
* Merged [7076] from rjsparks@nostrum.com:
Sets the State(type=draft) to Replaced when a document is replaced using
views_draft.replaces. Sets the state back to Active or Expired when a
document is no longer replaced by another document. Adds tests for the
above functionality. Provides a patch to repair the state of documents
pointed to by RelatedDocument(relationship__slug='replaces') objects
created by views_draft.replaces before this fix. Fixes bug 1234
* Merged [6361] from rjsparks@nostrum.com:
Allow the secretariat and ads to change the title of a status change
document. Fixes bug 1141.
Applied changes to adapt the code from Django 1.2 to 1.6: Provide a
quoted string to {% url %} and use request.user.person instead of
request.user.get_profile().
* Fixed problem with nomcom RST templates not being rendered under Django
1.6.
* Merged [6359] from rjsparks@nostrum.com:
Send email to the secretariat when a status change document is put
directly into the last-call-requested state. Fixes bug 1139.
* Added stream change and state change emails in adopt_draft() --
otherwise we wouldn't have the state change emails assumed in the previous
commit. See issue #1246.
* Removed the extra (misleading) email about WG adoption which is sent
out in addition to the state change emails when a call for addoption (WG)
or adoption (RG) is done using the 'Adopt Draft in Group' form. The state
change messages should be sufficient, and are not misleading. Fixes issue
#1246 (and 1290).
* Handled the case in is_downref() where the src file doesn't have a
std_level or intended_std_level set.
* Modified ALLOWED_HOSTS to permit some (surprising) alternative
HTTP_HOST names. Are these a result of queries proxied through other
ietf.org domains? The numerical address is the mail server address. We
should find out why that appears, and see if it can be made to appear as
mail.ietf.org instead.
* Added Matt Larson to the release notification email address list.
-- Henrik Levkowetz <henrik@levkowetz.com> 16 Feb 2014 19:36:41 +0100
ietfdb (5.0.0) ietf; urgency=medium
With this release, a journey which started in 2008 with a *major* redesign
of the IETF database schema has reached its goal. We've now converted the
datatracker completely to the schema designed then, swapping out all the
models that were changed, converted the database, swapped out all the GUI
code that was built against the old models, and polished off a host of minor
issues arising from the conversion. All this while completing and
integrating 10 major functionality enhancement projects and releasing more
than 50 minor releases, with not a single day of downtime. A history of
release notes is available here: https://datatracker.ietf.org/release/
In addition to bringing in the last scheduled polish of the conversion,
this release also brings in an upgrade of the Django framework from version
1.2 to 1.6, which gives us a number of new tools and possibilities for
future work.
A particular mention goes to Ole Laursen <olau@iola.dk>, an outstanding
programmer at the small Danish firm IOLA, who has been doing a lot of the
heavy lifting in coding the shim-layer which made it possible to change the
database schema without a total re-write in the spring of 2012, followed by
the major code re-write which has taken place since then to get rid of all
the parts which were written to the old database schema.
Thanks also goes to all the IETF code sprint participants who have
contributed, and to Robert Sparks in particular who has contributed *a lot*
to make it all come together.
There are still some parts of the schema that need an overhaul, and plans
exist for addressing those, but overall we should be in good shape for the
near future, with some room to grow :-)
Detailed change information is available at:
- http://wiki.tools.ietf.org/tools/ietfdb/browser/trunk
- http://wiki.tools.ietf.org/tools/ietfdb/browser/branch/iola/djangoport
- http://wiki.tools.ietf.org/tools/ietfdb/browser/branch/iola/shimfree
-- Henrik Levkowetz <henrik@levkowetz.com> 30 Jan 2014 22:11:28 +0100
ietfdb (4.95) ietf; urgency=medium
This release upgrades Django from version 1.2 to version 1.6, including a
large number of refactorings and adjustments (about 140 individual changes)
to adapt to changes in both interfaces and the style of how things are done
between Django 1.2 and 1.6. The full list of changes is available here:
http://tools.ietf.org/tools/ietfdb/log/branch/iola/djangoport
-- Henrik Levkowetz <henrik@levkowetz.com> 13 Jan 2014 19:14:05 +0100
ietfdb (4.90) ietf; urgency=medium
This release removes almost all parts of the shim-layer code which was
used to provide a semblance of the old database schema to user-interface
code after we moved to a new database schema in the early part of 2012.
There should be no changes in basic functionality changes in this release,
even if there are many small optimisations and changes in code details
which come in as a result of the shim-layer removal.
-- Henrik Levkowetz <henrik@levkowetz.com> 20 Dec 2013 18:07:48 +0100
ietfdb (4.84) ietf; urgency=low
This is a minor bugfix release, in preparation for merging in the latest
shim-removal work.
* Merged [6859] from rcross@amsl.com:
Fixed calls to reverse() to match new url names since code merge
* Merged [6858] from rcross@amsl.com:
Use correct URL in new IPR notification email
* Merged [6857] from rjsparks@nostrum.com:
A script to run from cron to send daily messages to IETF Announce showing
the email header field change. his should be run from Jan 6 to Jan 20,
after which point we need to deploy analagous changes to the code that
constructs last call announcements. This is related to bug #811.
* Merged [6701] from rjsparks@nostrum.com:
Adds pages to show what a given document refers to and what refers to it.
Fixes bug #1194 ommit ready for merge
* Merged [6672] from rjsparks@nostrum.com:
Removed requirement to enter a phone number in various places on an IPR
disclosure entry form. Fixes bug #1176
* Fixed a typo. Fixes issue #1216.
-- Henrik Levkowetz <henrik@levkowetz.com> 16 Dec 2013 23:34:37 +0100
ietfdb (4.83) ietf; urgency=high
This release provides the code from the IETF-88 code sprint, and also
a number of fixes to things reported during the IETF.
The number of enhancements coming out of the sprint this time is impressive;
this may actually have been the most successful sprint till now.
Of particular note is the new ability for chairs and others who has the
permission to edit a document's state, to edit replaced-by information for
documents; and the introduction of information about which documents a given
document references, for all documents. Future enhancements will display
this information as diagrams and textually, and use it to re-introduce the
dependency diagrams originally provide by Bill Fenner in his stand-alone
dependency graph application.
From rcross@amsl.com:
* Changed draft replaces action: move document to archive directory
From tterriberry@mozilla.com:
* Allow wgchairs to edit document replacement relationships.
This actually allows anyone with can_edit_stream_info permission
to edit the list. This does draft name completion, but does not
currently filter those names for likely replacements. Styling is
also basically non-existent. Fixes #1002
* Added 'Track this document' link on drafts. Fixes #1085.
* Mark concluded BoFs as BoFs, not Concluded WGs. Fixes #1169.
From bartosz.balazinski@interdigital.com:
* Added the new version of the shepherd writeup as a comment when it's edited.
The new version works like this:
- Any shepherd writeups done before the document is submitted for
publication are not disclosed in the history.
- When the document is submitted for publication the available writeup (if
available) is added to history.
- Any further writeups after the document has been submitted for publication
are disclosed in the history.
From suresh.krishnan@ericsson.com:
* Refactored the mails sent when state is changed along with annotation tags.
Don't send emails for only comment changes, just add a history entry. For
state changes and annotation changes, only send one email, containing
information about both state changes and annotation tag changes.
Fixes issue #1127.
From jmh@joelhalpern.com:
* Included confirmation addresses in ID-Submission success notice.
Fixes issue #1097.
* Added document titles to status change request email. Fixes issue #1069.
* Added \'Last Call Issued:\' to front of last call atom feed entry subjects.
* Fixed conflict review text for irtf docs to reference RFC 5743.
* Added the last call expiration date to the document header, and remove
duplicate code for producing the iest state summary.
From markus.stenberg@iki.fi:
* Added .csv export from private community lists. Fixes #1074
* Took care of #841 by moving <span> correctly outside <a> altogether.
From adam@nostrum.com:
* Fixed #1153: Fixes IPR disclosures being counted multiple times and
counting of \'not yet approved\' IPR disclosures.
From rjsparks@nostrum.com:
Refined Bill Fenner's regex based search through documents for references.
This populates RelatedDocument with relations for references for each type
draft Document; replaces these reference relationships with updated
copies upon draft submission. Note to deployer: There is a script to run in
patches/fill_in_references.py that does the work of bringing the database
up to date. It takes around 10 minutes to complete on a fast development
laptop. Fixes bug #1173
Other changes:
* Tweaked the style used on the nomcom feedback pages a bit, to give people
a bit more room to write in the feedback field.
* It turns out that the get_user_email is called for every nominee listed on
a feedback page, which is insane. But until the template can be rewritten
to do this in a more sane way, we cache the lookup result.
* Changed things so the left-side navbar doesn't jump to full page width in
the instant before the main content is loaded. NB: Cleanup action needed:
replace all px dimensions with em, consistently.
* Included the IAOC update session in the training section of the agenda.
* By preference, show the same email for a logged-in user as his login, if
it exists; otherwise show the newest active email address.
* Many minor fixes to agenda templates and the known-good agenda test files.
-- Henrik Levkowetz <henrik@levkowetz.com> 06 Nov 2013 20:33:43 +0100
ietfdb (4.82) ietf; urgency=high
* Removed the ams_filters template tag file from the meeting app -- it
was a copy of the ams_filters under secr/, and masked it.
* Added another state to the possible IETFWG states in the group proxy
models file, to avoid exceptions.
* Changed the 'pipe' utility to work with commands taking input
on standard in, also when providing an emtpy string as input.
This is now different from providing 'None' as the input
argument, or omitting it.
* Tweaked the utility script to find missing submission confirmation
emails.
* Rewrote html and text agenda templates to take schedule as data.
* Added the utility program (vzic) used to generate timezone-specific iCalendar
information, and the original .ics files generated by the utility program
in 2010.
* Added some code to vzic to make it output symlinks for all timezone
links specified in the Olson database, not only some of them.
* Included newly generated .ics files, from
http://www.iana.org/time-zones/repository/releases/tzdata2013h.tar.gz.
This updates the .ics files to use timezone information current as of 27
Oct 2013.
* Added links to the individual nominee fedback pages to the
private nomcom index page, in order to make it easier to find
and look at the feedback for a filtered set of nominees.
* Added a template filter to do required escaping in iCalendar pages.
* Changed the path to iCalendar vtimezone information to point into the
release directory, so that we can make updated vtimezone information
available directly in a release, instead of out-of-band.
* Provided new methods Meeting.vtimezone() which return a vtimezone stanza
for ical files, based on the timezone setting for a meeting, fetched from
a pre- generated file; and Session.ical_status(), which provides a string
appropriate for use in ical STATUS: entries.
* New view code and templates for agenda pages, updating all agenda
templates to take schedule-specific information so that they will work
with arbitrary schedules, not just the official schedule for a meeting.
* Updated test masters to match the changed (and now more predictable) order
of some entries in the agenda pages.
* Merged [6486] from rjsparks@nostrum.com:
Slightly more than minimal changes to have questionnaire reminders go
only to those nominees who have accepted but have not yet sent in a
questionnaire for a given position
* Marked some instances of code in the meetings app which used variables
that don't exist with XXX Fixme. Removed dependency on the logging
module, we use syslog by default. Replaced some log.debug() calls with
debug.log().
* Removed a lot of dead code and unused imports.
* Merged [6580] from rjsparks@nostrum.com:
Reverted materials.html and the view that drives it to before the 4.70
merge.
Tweaked the view to get (I hope) the right things.
* Updated the template and support functions for iPhone agenda page.
-- Henrik Levkowetz <henrik@levkowetz.com> 31 Oct 2013 19:13:02 +0100
ietfdb (4.81) ietf; urgency=medium
* Merged in branch/amsl/1.50@6388 from rcross@amsl.com, with secretariat
tool announcement fixes, permission fixes, and agenda database schema
fixes.
* Required logins to be all-lowercase. This was prompted by repeated
trouble with people registering non-lowercase logins, then trying to log
in with all-lowercase, or vice versa.
* Merged [6465] and [6466] from rjsparks@nostrum.com:
Added the ability to send reminders to complete questionnaires to nominees
in the accepted state. Changed the send_reminders management command to
not take any arguments and run against all active nomcoms. Removed bugs
from the send_reminders management command and added tests for it.
Adjusted several dbtemplate titles and content. Fixes bug 1157
* Merged [6468] and [6469] from ejimenez@yaco.es:
Now a Nomcom incumbent can be set to None for positions. Fixes #1156.
* Let Timeslot.session() Return the first session, rather than none, for
timeslots with multiple associated sessions for the public schedule.
* Made the timeslots sent to the agenda.ics and agenda.txt template
distinct, to avoid duplicate agenda items. Fixes issue #1155.
* Added caching for the somewhat costly TimeSlot.session() method/property.
This speeds up text agenda generation using the legacy template
substantially.
* Tweaked the strings displayed when a plenary agenda cannot be shown.
* Changed the select statement in MeetingProxy.sessions() to produce correct
results for the official agenda, and filter out timeslot entries without
scheduled sessions.
* Remove the AD information from the text agenda until we fix the database
so that it displays consistently correctly for past meetings.
* Reverted to release 4.72 versions of several functions and methods,
starting with agenda_info() and the view functions that use it. Also
changed meeting/tests/agenda.py to accept matching return values.
Reverted old supporting models and proxy models to 4.72 versions, too, in
meeting/proxy.py and proceedings/models.py. Updated the proxy models
which rely on TimeSlot to work properly with the m2m sessions field, and
adjusted some other functions, such as session_agenda() to also understand
the m2m sessions field (and its reverse). Added an understanding of the
"bof-conc" state to the code which returns 'BOF' or 'WG' for agenda
templates.
* Reverted to release 4.72 versions of txt, ics, and csv agendas, with minor
tweaks.
* Improved the test suite with improved diff tests for retrieved urltest
files. A number of other test tweaks and enhancements, including several
known-good master files to diff generated pages against.
* Cleanup action: replaced the noTable block construct with start/end
table_content blocks in order to not have to open and close tables in
different blocks, and not have empty tables lying about.
* Reinstated the release 4.72 get_agenda_info() as legacy_get_agenda_info(),
and tweaked it to work with the new Timeslot model's sessions field.
Reverted the html agenda view code to use legacy_get_agenda_info(), based
on the release 4.72 code. This is a fix to display the html agenda for
now, and will need more cleanup, but this should be done without
introducing scheduledsession instances to the template.
* Added a property method to return what the 'session' field used to return,
but based on the 'sessions' m2m field filtered with the meeting agenda.
This is right for the main meeting agenda, but not for personal schedule
layouts, so this isn't a final fix.
* Reverted html agenda templates to release 4.72 state, except for a jquery
version change and moving inline weekview javascript to a separate file.
* Changed the WG edit form so that once an acronym has been set, the acronym
field is read-only; also changed the form validation to not permit changes
to an existing acronym.
* Changed NOMCOM_FROM_EMAIL to be the Nomcom chair instead of the
secretariat. Fixes issue #1152.
* Merged [6413] from rjsparks@nostrum.com: Removed redundant call to
not_duplicated from the nomcom/private_index template. It was already
applied in the view, and interacted badly with the list comprehension
method of filtering for NomineePositions that had associated questionnaire
responses. Fixes bug 1151.
* Added Ryan to the admin list so he'll get 500 notifications.
-- Henrik Levkowetz <henrik@levkowetz.com> 21 Oct 2013 22:58:26 +0200
ietfdb (4.80) ietf; urgency=high
This is a major release which provides the code drop from phase 3 of the
Agenda Scheduling Tool. The code has been merged in, and a lot of minor
alignments done. Deployment of this will make the phase 3 agenda editing
tools available from the main ietf site, will align the database schema with
that used in the ongoing development work, and will provide the correct
models for secretariat tool adaptations.
Other changes:
* Reworked the TestCase code and fixture loading substantially, resulting
in a substantial speed increase for tests when run on a transaction-
capable database engine.
* Added an index page for nomcoms, at /nomcom/, with links to nomcom
pages and announcements, where they exist.
* Fixed some bugs in the EncryptedTextField class.
* Fixed the language of the nomination confirmation message.
* Changed 'requirement' to 'desired expertise' in user-visible places in
the nomcom app.
* Fixed a wrong secretariat template extension name.
* Provide the missing safe_rep function required in the back-ported
assertIsNone() test case method.
* Added an explanatory paragraph to the Desired Expertise page.
* The exception string for submission upload read errors seems to have
changed after we switched to wsgi, from "Client read error" to "request
data read error". Now looking for just "read error" to catch both.
* Tweaked the introductory text on the Nomcom Desired Expertise page.
* Added a makefixture management command, from
http://djangosnippets.org/snippets/918/, somewhat hacked.
* Updated the test fixtures, built to be more internally consistent in order
to be able to pre-load them for the test suite.
* Fixed the many times duplicated position names in the position selection
drop-down list in the nomcom private index page. Fixes issue #1137.
-- Henrik Levkowetz <henrik@levkowetz.com> 03 Oct 2013 16:22:39 +0200
ietfdb (4.72) ietf; urgency=medium
* Added a migration for a new ConstraintName field: penalty
* Fixed 2 issues with the wg document list: Wrong heading for the related
docs, and candidate wg docs listed as wg docs, rather than related docs.
* Fixed an issue arising when trying to edit a document state when there's
no prior state, and removed the link to edit the document state when
there's no set state.
* Tweaked the template used to generate the various 1wg-charter*.txt
files to properly fetch email addresses.
* Merged in a fix from rjsparks@nostrum.com for incorrect IANA
notification email addresses.
* Added Nomcom role suport to role_required() through has_role(). This will
let us get rid of the more specialized ad_hoc nomcom_memeber_required()
function which can't handle access for multiple roles.
* Replaced the ad_hoc nomcom_member_required() decorator with the generic
role_required() decorator. Changed access permission for nomcom-chair only
pages to also permit nomcom advisor access (this lets the previous nomcom
chair explain and assist as needed). Also tweaked some text strings in the
email feedback pipe script.
* Added a WSGI connector for the datatracker, to let us run under mod_wsgi.
* Modified the code which accumulates ipr disclosures associated with a
document, shown as an IPR count in search results. The previous code had
two deficiencies: it could count some IPR disclosures twice, and it also
included withdrawn and pending disclosures. The current count matches the
IPR search results better.
* Moved the nomcom private key storage out of the source tree, which is a
silly place to put it.
* Added a dev-specific robots.txt, which blocks all robots.
* Merged in the latest secretariat code from rcross@amsl.com, from
branch/amsl/trunkmerge@6149.
* Added the ability to search for documents from a certain stream to the
main document search form.
* Added overview pages for non-ietf-stream documents (ise, iab, irtf), and
links to them form the sidebar.
* Removed the old ad documents page and its view function, and put in a
redirect from the temporary /ad2/ url to the /ad/ url. Also replaced the
two AD document links in the lefthand menubar with one pointing to the new
view (under the old URL).
-- Henrik Levkowetz <henrik@levkowetz.com> 19 Sep 2013 21:31:42 +0200
ietfdb (4.71) ietf; urgency=medium
* Merged in personal/rjs/r6117-pubreq@6119:
- Made Publication Request (for documents from IETF working groups) an
explicit action rather than a side-effect.
- Simplified the working group state edit form.
- Added hints to the WG state edit form to use the document's main page to
request publication.
- If a document is moved into IESG processing directly by the secretariat or
an AD (old processing path), set working group state accordingly.
* Merged in branch/iola/shimfree@6083. This cleans up and moves relevant
code from idrfc/ to doc/. There should now only be a bit of old wrapper
code left in idrfc; that will go away when the remaining models which use
it are cleaned up.
* Fixed the manage.py command so it adds our own import path to the Python
path automatically; people won't have to explicitly add pythonpath any
more::
$ PYTHONPATH=$PWD ietf/manage.py ...
* Applied a patch from rjsparks@nostrum.com to fix a line colouring bug in
IPR lists.
* Fixed a regression: wrong URL to IESG state diagram in state help. Fixes
issue #1119.
* Merged personal/rjs/v4.70@6042:
- Made reporting IPR consistant across document searches, IPR
searches, AD document queues, last calls, and agendas. All these points now
report on the document(s) being directly queried, and the documents those
transitively replace or obsolete.
- Brought search results against WGs and document titles into
consistency with results from searching for individual documents
- Added the IPR count to the link on the documents main page (when
not zero)
- Built on Henrik's reimplementation of all_related\_\*, making the
\*_related_\* functions return DocAlias? lists consistently, and added
corresponding _relations_ functions to get lists of actual RelatedDocument?
objects.
- Added getting the DocAlias? with the same name to Document
- Added getting related IPR disclosures (as described in the first
bullet) to Document
- Simplified ipr/related.py
- Removed the use of DraftLikeDocAlias? and IETFWG from
ipr/search.py. Retooled the various search functions and templates to use
DocAlias? and IprDocAlias? directly.
- Removed dead code from ipr/search.py
- Removed the special handling of WG 2000 from ipr/search.py
This fixes bug #1071
* Fixed a regression in display of IESG state; added back substate
information. Fixes issue #1117.
* Added template rendering verification on dbtemplate form submission in
order to catch errors in edited templates before they are committed. This
should prevent server 500 errors when rendering dbtemplate pages. Fixes
issue #1113.
* Selectively removed the agenda and minutes warnings from the meeting
materials page, for educational sessions where agenda and minutes aren't
expected. Fixes issue #1115.
* Changed the order of the files diffed in the draft diff links on the
history page. Fixes issue #1114.
* Added Auto-Submitted and Precedence header fields to outgoing email
messages.
* Fixed a possible KeyError bug for a missing form field 'by'.
* Added code to expire last calls for statechg documents too (in addition
to iesg drafts) with the expire-last-call script. Fixes issue #1092.
* Added secretaries to those who are authorized to edit stream info for a
document.
* Added a penalty field to the ConstraintNames, for use in agenda
scheduling.
* Refactored group membership code, adding advisors and liaisons to the
membership list. Needed for the nomcom code.
* Fixed the broken WG document list template (regression caused by the
shimfree merge).
* Fixed the red-on-red error message style which came in with the nomcom
code merge.
* Fixed the nomcom email pipe command to read from stdin if no file given,
and give better error messages.
* Added migrations which should have been part of release 4.70.
-- Henrik Levkowetz <henrik@levkowetz.com> 09 Sep 2013 21:40:25 +0200
ietfdb (4.70) ietf; urgency=high
This release provides a datatracker nomcom app, ported from the earlier
standalone nomcom app written by henrik. It includes public nomcom
pages which provides an interface for members of the community to
propose and comment on nominees for the positions the nomcom is filling,
and private nomcom pages for secure management and browsing of positions,
nominees, and comments.
-- Henrik Levkowetz <henrik@levkowetz.com> 06 Aug 2013 12:15:56 +0200
ietfdb (4.61) ietf; urgency=medium
This release provides the code from the IETF-87 code sprint, and also
a number of fixes to things reported during the IETF, and some enhancements
requested.
Noticeable enhancements are that document search now permits you to search
for all kind of documents, not only for drafts and RFCs (you can searc for
charters, slides and whatnot); that Research Group chairs now have the
ability to manage their documents in the tracker; and that the tracker now
has the ability to generate WG and draft email aliases, which permits us to
plan a transition of the email aliases to the main ietf mail server.
There are however many other much requested fixes and enhancements :-)
From markus.stenberg@iki.fi:
* Added support and scripts for generation of wg- and draft-aliases.
Fixes issue #713.
From adam@nostrum.com:
* Added the capability to search for all kinds of documents in the main
datatracker search page. Fixes bug #838.
* Added tooltip capability to document tabs, and tooltips for disabled
IESG Evaluation/Review tab. Fixes bug #448.
* Added a document link to the emails sent on discuss/comment changes.
Fixes bug #916
From rjsparks@nostrum.com:
* Added related documents to the set of documents checked for IPR
declarations when building last call text. Partially addresses #1071.
From suresh.krishnan@ericsson.com:
* When working group chairs added an annotation to a document, the date
on the history entry was wrong. It has now been fixed. Fixes issue #1046.
* Fixed the last call processing code to identify the new placeholder
writeup. Fixes issue #884.
Other fixes:
* Added group secretaries to those authorise to edit group document
meta-information.
* Added RG chairs and secretaries to those authorized to edit group document
meta-information.
* Added a landing page for missing associations between login and Person record.
* Tweaked the charter-and-milestones presentation in order to not blow up on
bad character encodings in charter file.
* Added back the 'Request Publication' action (regression loss) on draft
pages for the non-ietf streams.
* Fixed a bug in rendering the AD/Shepherd column in document list pages,
when no AD is associated with a document. Fixes issue #1079.
* Modified the doc stream-change edit form to reset doc.group to None on
stream changes. Fixes issue #1078.
* Fixed double plural 's' caused by the use of 'pluralize' in the
template *and* plural forms for the group headers returned by
fill_in_search_attributes(). Fixes issue #1077.
* Fixed the incorrect blankline placemnt in the refactored template for
id-index and id-abstracts, when generating abstracts. Fixes issue #1076.
* Added convenience methods to the Document class to recursively retrieve
all forward / reverse relationship of a kind or set of kinds.
* Fixed the handling of help pages for doc states.
* Added a direct link to the cookie options in use by the datatracker to
the lefthand menubar. Fixes issue #1075.
* Fixed a regression: restore diff pane in history page for RFCs.
* Fixed a regression: display of full draft/rfc text now again obeys the
full_draft cookie setting.
* Changed the mimetype detection code to only read first 4k block of
file, not the whole file.
* Made the code which uses the 'magic' module to determine file type and
encoding work with both the old and new interface to python-magic.
* Added a guard to prevent duplicate RFC-Editor notifications for
approved documents, and added logging to the notification routine.
-- Henrik Levkowetz <henrik@levkowetz.com> 01 Aug 2013 18:26:21 +0200
ietfdb (4.60) ietf; urgency=high
This release provides new shimfree code in /doc/ which replaces code mainly
from /idrfc/ and /idindex/. It comprises the first two code drops from the
shimfree project. There are also some additional functionality, as detailed