Correct the cutoff hour to 00 to get the correct reopening time -- was 24 hours too late with the '24' value. FIXME: Refactory the cutoff calculations and display, puttting display text in the template, and using datetime objects consistently for calculations and to pass to template.

- Legacy-Id: 4154
This commit is contained in:
Henrik Levkowetz 2012-03-21 14:23:09 +00:00
parent 0dd2563b22
commit 8e82213b57

View file

@ -233,9 +233,9 @@ IDSUBMIT_ANNOUNCE_FROM_EMAIL = 'internet-drafts@ietf.org'
IDSUBMIT_ANNOUNCE_LIST_EMAIL = 'i-d-announce@ietf.org'
# Days from meeting to cut off dates on submit
FIRST_CUTOFF_DAYS = 20
SECOND_CUTOFF_DAYS = 13
CUTOFF_HOUR = 24 # midnight UTC
FIRST_CUTOFF_DAYS = 19
SECOND_CUTOFF_DAYS = 12
CUTOFF_HOUR = 00 # midnight UTC
SUBMISSION_START_DAYS = -90
SUBMISSION_CUTOFF_DAYS = 33
SUBMISSION_CORRECTION_DAYS = 52