11ietfdb (4.21)
22
33 This is a bugfix release for the charter release (4.20) with some
4- extra changes which were pending.
4+ extra changes which were pending: Updated via-rfc-editor handling,
5+ better /meeting/requests page, added WG document approval page.
56
67 From olau@iola.dk:
78
9+ * Add approval/pre-approval page for Secretariat and WG Chairs, with
10+ subpages for adding and canceling pre-approvals and a set of
11+ migrations for replacing the old IdApprovedDetail with a slightly less
12+ confusing Preapproval model.
13+
14+ * Add listing of recently approved drafts to approval page by request
15+ from Barry Leiba.
16+
817 * Replace get_profile() hack with a test on the user instead, this
918 also makes the ballot icon more robust against users without profiles
1019 (which shouldn't happen, but apparently we sometimes get one which
@@ -14,13 +23,13 @@ ietfdb (4.21)
1423 consistent, this is needed because we still have different views for
1524 /doc/rfcXXXX/ and /doc/draft-foo-bar/
1625
17- * Fix regexp fix - [.-_] does not mean ' dot or dash or underscore' , it
26+ * Fix regexp fix - [.-_] does not mean " dot or dash or underscore" , it
1827 means all characters between dot and underscore
1928
2029 * Include _ in allowed document name regexp, we currently have 7 drafts
2130 with _ in the database despite it not being valid - they can be found
2231 with:
23- select name from doc_document where name like '%\_%' and type_id = ' draft' ;
32+ select name from doc_document where name like '%\_%' and type_id = " draft" ;
2433
2534 * Fix flow of approval of charters/announcement of the WG action based
2635 on feedback from Cindy Morgan, now there's a link on the approval page
@@ -47,13 +56,13 @@ ietfdb (4.21)
4756 consistent, this is needed because we still have different views for
4857 /doc/rfcXXXX/ and /doc/draft-foo-bar/
4958
50- * Fix regexp fix - [.-_] does not mean ' dot or dash or underscore' , it
59+ * Fix regexp fix - [.-_] does not mean " dot or dash or underscore" , it
5160 means all characters between dot and underscore
5261
5362 * Include _ in allowed document name regexp, we currently have 7 drafts
5463 with _ in the database despite it not being valid - they can be found
5564 with:
56- select name from doc_document where name like '%\_%' and type_id = ' draft' ;
65+ select name from doc_document where name like '%\_%' and type_id = " draft" ;
5766
5867 * Fix flow of approval of charters/announcement of the WG action based
5968 on feedback from Cindy Morgan, now there's a link on the approval page
@@ -79,9 +88,42 @@ ietfdb (4.21)
7988 is on the edit info form. Put the old-ADs back into the list of choices
8089 when editing a document's info. This (re) fixes bug #749
8190
91+ * Fixed a bug in determining if a document is on the agenda, leftover
92+ from transition to new schema.
93+
8294 From adam@nostrum.com:
8395
84- -- Henrik Levkowetz <henrik@levkowetz.com> 21 Jun 2012 01:01:37 +0000
96+ * Fix to the requests data page:
97+ - uses native schema for much greater efficiency
98+ - Uses meeting ID properly, so it can find future meetings
99+ even if their ID does not match the meeting number
100+ - Dramatic improvements to layout
101+
102+ From henrik@levkowetz.com:
103+
104+ * Try to not use explicit .html extensions in the urls. Redirect from
105+ those to .html-less urls.
106+
107+ * Added a new field 'short' to Session, to help produce file names for
108+ agendas, minutes and slides for groups with different named session, such
109+ as for instance 'edu'. Generating distinct filenames directly from the
110+ name field gives too long names.
111+
112+ * Quick fix for extensionless get_absolute_url(). XXX Fixme: needs
113+ bigger refactoring.
114+
115+ * Quick fix for crash when going to /wg/imapmove/charter/. I'm not happy
116+ about the 'charter-ietf-' constant which now appears several places in the
117+ code; we need settings which defines the correct name pattern for different
118+ document types (or a table or table column, maybe). But this hopefully
119+ will make it possible to continue processing proposed WGs ...
120+
121+ * Added missing '{{' before 'submission.filename' in draft announcement
122+ email templates.
123+
124+ * Other minor fixes
125+
126+ -- Henrik Levkowetz <henrik@levkowetz.com> 11 Jun 2012 18:40:14 +0000
85127
86128ietfdb (4.20)
87129
@@ -132,11 +174,11 @@ ietfdb (4.20)
132174
133175 * Move charter state help to /doc/help/state/charter/.
134176
135- * Say ' generate' rather than ' edit' when there's no text in the boxes
177+ * Say " generate" rather than " edit" when there's no text in the boxes
136178
137179 * Don't show diff box if there's only 1 entry (and itself).
138180
139- * Say ' Charter' rather than ' Recharter' on the charter /doc/ page if the
181+ * Say " Charter" rather than " Recharter" on the charter /doc/ page if the
140182 group is proposed or a BoF.
141183
142184 * Treat BoF as proposed WG.
@@ -161,15 +203,15 @@ ietfdb (4.20)
161203
162204 * Fix some phrasing bugs.
163205
164- * Fix terminology confusion and say ' send ballot' rather than ' issue
165- ballot' to clear up that it is not actually created.
206+ * Fix terminology confusion and say " send ballot" rather than " issue
207+ ballot" to clear up that it is not actually created.
166208
167209 * Fix wording of send ballot comment, the actual text was still specific
168210 to drafts.
169211
170212 * Don't show edit button for snapshots.
171213
172- * Fix bug in hiding ' external review needed' checkbox.
214+ * Fix bug in hiding " external review needed" checkbox.
173215
174216 * Create charters in state notrev instead of intrev, as a side effect
175217 this fixes a problem with comments not being saved when starting
0 commit comments