From: Sam H. v. a. <we...@ma...> - 2005-10-08 21:57:12
|
Log Message: ----------- added "include_in_email" behavior to Enrolled and Audit statuses. Modified Files: -------------- webwork2/conf: global.conf.dist Revision Data ------------- Index: global.conf.dist =================================================================== RCS file: /webwork/cvs/system/webwork2/conf/global.conf.dist,v retrieving revision 1.146 retrieving revision 1.147 diff -Lconf/global.conf.dist -Lconf/global.conf.dist -u -r1.146 -r1.147 --- conf/global.conf.dist +++ conf/global.conf.dist @@ -489,7 +489,7 @@ submit_feedback => "student", change_password => "student", change_email_address => "student", - + proctor_quiz => "proctor", view_multiple_sets => "ta", @@ -553,6 +553,10 @@ # Status system ################################################################################ +# This is the default status given to new students and students with invalid +# or missing statuses. +$default_status = "Enrolled"; + # The first abbreviation in the abbreviations list is the canonical # abbreviation, and will be used when setting the status value in a user record # or an exported classlist file. @@ -563,16 +567,19 @@ # allow_course_access => is this user allowed to log in? # include_in_assignment => is this user included when assigning as set to "all" users? # include_in_stats => is this user included in statistical reports? +# include_in_email => is this user included in emails sent to the class? # include_in_scoring => is this user included in score reports? %statuses = ( Enrolled => { abbrevs => [qw/ C c current enrolled /], - behaviors => [qw/ allow_course_access include_in_assignment include_in_stats include_in_scoring /], + behaviors => [qw/ allow_course_access include_in_assignment include_in_stats + include_in_email include_in_scoring /], }, Audit => { abbrevs => [qw/ A a audit /], - behaviors => [qw/ allow_course_access include_in_assignment include_in_stats /], + behaviors => [qw/ allow_course_access include_in_assignment include_in_stats + include_in_email /], }, Drop => { abbrevs => [qw/ D d drop withdraw /], @@ -580,10 +587,6 @@ }, ); -# This is the default status given to new students and students with invalid -# or missing statuses. -$default_status = "Enrolled"; - ################################################################################ # Session options ################################################################################ |