-
Notifications
You must be signed in to change notification settings - Fork 49
Clarify how timing rules work in facilities. #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,24 +28,28 @@ rules: | |
| permissions: [] | ||
|
|
||
| - | ||
| if_in_facility: test_center | ||
| if_session_duration_shorter_than_minutes: 0.5 | ||
| permissions: [view, submit_answer, end_session, see_session_time, lock_down_as_exam_session] | ||
| if_has_role: [instructor] | ||
| permissions: [view, submit_answer, change_answer, end_session, see_correctness, see_session_time] | ||
|
|
||
| - | ||
| if_in_facility: test_center | ||
| message: "You exam will end soon." | ||
| if_session_duration_shorter_than_minutes: 1 | ||
| permissions: [view, submit_answer, end_session, see_session_time, lock_down_as_exam_session] | ||
| if_in_facility: "cbtf" | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| if_session_duration_shorter_than_minutes: 45 # length until warning appears | ||
| permissions: [view, submit_answer, change_answer, end_session, see_correctness, see_session_time, lock_down_as_exam_session] | ||
|
|
||
| - | ||
| if_in_facility: test_center | ||
| if_in_facility: "cbtf" | ||
| message: "Your exam will end soon." | ||
| if_session_duration_shorter_than_minutes: 120 # keep in mind DRES students! | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| permissions: [view, submit_answer, change_answer, end_session, see_correctness, see_session_time, lock_down_as_exam_session] | ||
|
|
||
| - | ||
| if_in_facility: "cbtf" | ||
| if_in_progress: True | ||
| message: "You exam has ended. You may no longer make changes. Please click 'Submit assignment' to finish." | ||
| permissions: [view, end_session, see_correctness, see_session_time, lock_down_as_exam_session] | ||
| message: "Your exam has ended. You may no longer make changes to your answers. Please click 'Submit assignment' to finish." | ||
| permissions: [view, change_answer, end_session, see_correctness, see_correctness, see_session_time, lock_down_as_exam_session] | ||
|
|
||
| - | ||
| if_in_facility: test_center | ||
| if_in_facility: "cbtf" | ||
| permissions: [view, see_correctness, see_session_time] | ||
|
|
||
| - | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| function [ y ] = f( x ) | ||
| y = exp( -x .^ 2 ); | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This may have leaked from the Octave question PR. |
||
| end %function | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change_answerandsee_correctnessis not a good combo if using multiple-choice. I think it's preferable to addchange_answerusing per-page permissions.