From: Mike G. v. a. <we...@ma...> - 2005-12-27 00:38:26
|
Log Message: ----------- Fixed theme item in the Constants.pm file. Modified Files: -------------- webwork-modperl/lib/WeBWorK: Constants.pm Revision Data ------------- Index: Constants.pm =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/lib/WeBWorK/Constants.pm,v retrieving revision 1.37 retrieving revision 1.38 diff -Llib/WeBWorK/Constants.pm -Llib/WeBWorK/Constants.pm -u -r1.37 -r1.38 --- lib/WeBWorK/Constants.pm +++ lib/WeBWorK/Constants.pm @@ -133,9 +133,10 @@ doc2 => 'The name of course information file (located in the templates directory). Its contents are displayed in the right panel next to the list of homework sets.', type => 'text'}, { var => 'defaultTheme', - doc => 'Theme. choices: (math, ur)', - doc2 => 'The name of course information file (located in the templates directory). Its contents are displayed in the right panel next to the list of homework sets.', - type => 'text'}, + doc => 'Theme (refresh page after saving changes to reveal new theme)', + doc2 => 'There are currently two themes (or skins) to choose from: ur and math. The theme specifies a unified look and feel for the WeBWorK course web pages.', + values => [qw(math ur)], + type => 'popuplist'}, { var => 'sessionKeyTimeout', doc => 'Inactivity time before a user is required to login again', doc2 => 'Length of time, in seconds, a user has to be inactive before he is required to login again.<p> This value should be entered as a number, so as 3600 instead of 60*60 for one hour', |