From 88b40d6ad82ab84900b77664ea48db12b0e17760 Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Thu, 10 Oct 2024 05:39:58 -0500 Subject: [PATCH 1/2] Change to more reasonable dates in the Student Orientation set definition. Using a date that is not in this century for the reduced scoring date, due date, and answer date leads to confusion due to the some limited default date display formats. Some not so intelligent locales like to only use the last two digits for the year. For example, in the "en" locale the date displays as "12/31/24, 11:59 PM" in the date picker. Looking at that you might think the date is set for the end of this year (at the time of this writing this year is 2024) instead of 100 years from now. Initially, I though that the "en" US locale was the only one with this issue, but about half of the supported languages have the same problem. This was the issue that was occurring when I was looking at the date picker during our meeting this week, and had nothing to do with the reduced scoring date being set. --- assets/pg/Student_Orientation/setStudent_Orientation.def | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/pg/Student_Orientation/setStudent_Orientation.def b/assets/pg/Student_Orientation/setStudent_Orientation.def index 573796a035..f0c6d54b62 100644 --- a/assets/pg/Student_Orientation/setStudent_Orientation.def +++ b/assets/pg/Student_Orientation/setStudent_Orientation.def @@ -1,8 +1,8 @@ assignmentType = default openDate = 01/01/2024 at 12:00am -reducedScoringDate = 12/31/2124 at 11:59pm -dueDate = 12/31/2124 at 11:59pm -answerDate = 12/31/2124 at 11:59pm +reducedScoringDate = 12/31/2024 at 11:59pm +dueDate = 12/31/2024 at 11:59pm +answerDate = 12/31/2024 at 11:59pm enableReducedScoring = N paperHeaderFile = defaultHeader screenHeaderFile = defaultHeader From 10c0db275e3fe59b208d10bd597f98ab23ce4320 Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Tue, 29 Oct 2024 13:16:38 -0500 Subject: [PATCH 2/2] Switch to 2045 for the dates in the student orientation set. As discussed in the development meeting. --- assets/pg/Student_Orientation/setStudent_Orientation.def | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/pg/Student_Orientation/setStudent_Orientation.def b/assets/pg/Student_Orientation/setStudent_Orientation.def index f0c6d54b62..37f6c23eaf 100644 --- a/assets/pg/Student_Orientation/setStudent_Orientation.def +++ b/assets/pg/Student_Orientation/setStudent_Orientation.def @@ -1,8 +1,8 @@ assignmentType = default openDate = 01/01/2024 at 12:00am -reducedScoringDate = 12/31/2024 at 11:59pm -dueDate = 12/31/2024 at 11:59pm -answerDate = 12/31/2024 at 11:59pm +reducedScoringDate = 12/31/2045 at 11:59pm +dueDate = 12/31/2045 at 11:59pm +answerDate = 12/31/2045 at 11:59pm enableReducedScoring = N paperHeaderFile = defaultHeader screenHeaderFile = defaultHeader