From: Arnie P. v. a. <we...@ma...> - 2009-10-17 16:05:16
|
Log Message: ----------- Implement a Reduced Scoring Period. The Reduced Scoring Period is a period before the due date during which all additional work done by the student counts at a reduced rate. Also clean up the LDAP section 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.217 retrieving revision 1.218 diff -Lconf/global.conf.dist -Lconf/global.conf.dist -u -r1.217 -r1.218 --- conf/global.conf.dist +++ conf/global.conf.dist @@ -608,14 +608,15 @@ }; $authen{ldap_options} = { - # hosts to attempt to connect to, in order. for example: + # hosts to attempt to connect to, in order. For example: # auth.myschool.edu -- uses LDAP scheme and port 389 # ldap://auth.myschool.edu:666 -- non-standard port # ldaps://auth.myschool.edu -- uses LDAPS scheme and port 636 # ldaps://auth.myschool.edu:389 -- SSL on non-SSL port + # Edit the host(s) below: net_ldap_hosts => [ - "ldaps://corona-dmc.its.rochester.edu", - "ldaps://corona-dmb.acs.rochester.edu", + "ldaps://auth1.myschool.edu", + "ldaps://auth2.myschool.edu", ], # connection options net_ldap_options => { @@ -623,7 +624,8 @@ version => 3, }, # base to use when searching for user's DN - net_ldap_base => "ou=people,dc=rochester,dc=edu", + # Edit the data below: + net_ldap_base => "ou=people,dc=myschool,dc=edu", # Use a Bind account if set to 1 bindAccount => 0, @@ -631,8 +633,6 @@ searchDN => "cn=search,DC=youredu,DC=edu", bindPassword => "password", - - # If LDAP rejects password, check it against the WeBWorK password database failover => 1, }; @@ -996,6 +996,8 @@ numZeroLevelTolDefault => 1E-12, useBaseTenLog => 0, defaultDisplayMatrixStyle => "[s]", + reducedScoringPeriod => 0, # Length of Reduced Scoring Period in minutes + reducedScoringValue...........=> 1, # A number in [0,1]. Students will be informed of the value as a percentage }; ################################################################################ |