You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move chartering groups to /group/chartering/ (with a redirect from the old location), list RGs there too, and amend the previous fix to the chartering process for non-WGs so they have internal and external review states instead of just approved. Also move the code in wginfo/ to group/ as it is no longer just about info for WGs.
state_pk("infrev"): 'The %s "%s" (%s) has been set to Informal IESG review by %s.'% (group.type.name, group.name, group.acronym, login.plain_name()),
203
-
state_pk("intrev"): 'The %s "%s" (%s) has been set to Internal review by %s.\nPlease place it on the next IESG telechat and inform the IAB.'% (group.type.name, group.name, group.acronym, login.plain_name()),
204
-
state_pk("extrev"): 'The %s "%s" (%s) has been set to External review by %s.\nPlease send out the external review announcement to the appropriate lists.\n\nSend the announcement to other SDOs: Yes\nAdditional recipients of the announcement: '% (group.type.name, group.name, group.acronym, login.plain_name()),
205
-
}
201
+
info_msg= {}
202
+
ifgroup.type_id=="wg":
203
+
info_msg[state_pk("infrev")] ='The %s "%s" (%s) has been set to Informal IESG review by %s.'% (group.type.name, group.name, group.acronym, login.plain_name())
204
+
info_msg[state_pk("intrev")] ='The %s "%s" (%s) has been set to Internal review by %s.\nPlease place it on the next IESG telechat and inform the IAB.'% (group.type.name, group.name, group.acronym, login.plain_name())
205
+
info_msg[state_pk("extrev")] ='The %s "%s" (%s) has been set to External review by %s.\nPlease send out the external review announcement to the appropriate lists.\n\nSend the announcement to other SDOs: Yes\nAdditional recipients of the announcement: '% (group.type.name, group.name, group.acronym, login.plain_name())
0 commit comments