--- loncom/interface/lonparmset.pm 2003/05/07 19:31:43 1.91
+++ loncom/interface/lonparmset.pm 2003/06/06 02:24:49 1.98
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Handler to set parameters for assessments
#
-# $Id: lonparmset.pm,v 1.91 2003/05/07 19:31:43 bowersj2 Exp $
+# $Id: lonparmset.pm,v 1.98 2003/06/06 02:24:49 www Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -687,12 +687,12 @@ sub assessparms {
my $url=$ENV{'form.url'};
$url=~s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
$pssymb=&Apache::lonnet::symbread($url);
- @pscat='all';
+ if (!@pscat) { @pscat=('all'); }
$pschp='';
$parmlev = 'full';
} elsif ($ENV{'form.symb'}) {
$pssymb=$ENV{'form.symb'};
- @pscat='all';
+ if (!@pscat) { @pscat=('all'); }
$pschp='';
$parmlev = 'full';
} else {
@@ -1453,7 +1453,8 @@ sub crsenv {
'hideemptyrows' => 'Hide Empty Rows in Spreadsheets
'.
'("yes" for default hiding)',
'pageseparators' => 'Visibly Separate Items on Pages
'.
- '("yes" for visible separation)',
+ '("yes" for visible separation, '.
+ 'changes will not show until next login)',
'pch.roles.denied'=> 'Disallow Resource Discussion for '.
'Roles
"st": '.
'student, "ta": '.
@@ -1484,7 +1485,10 @@ sub crsenv {
'rndseed'
=> 'Randomization algorithm used
'.
'Modifying this will make problems '.
- 'have different numbers and answers'
+ 'have different numbers and answers',
+ 'problem_stream_switch'
+ => 'Allow problems to be splitted over pages
'.
+ ' (yes if allow anything else if not)'
);
foreach (keys(%values)) {
unless ($descriptions{$_}) {