--- loncom/interface/lonconfigsettings.pm 2009/11/23 21:45:18 1.8 +++ loncom/interface/lonconfigsettings.pm 2010/11/19 13:09:36 1.8.2.4 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to set domain-wide configuration settings # -# $Id: lonconfigsettings.pm,v 1.8 2009/11/23 21:45:18 raeburn Exp $ +# $Id: lonconfigsettings.pm,v 1.8.2.4 2010/11/19 13:09:36 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -40,7 +40,7 @@ sub print_header { my ($r,$phase,$context,$jscript) = @_; my ($pagetitle,$brcrumtitle,$action,$call_category_check); if ($context eq 'domain') { - ($pagetitle, $brcrumtitle) = ('View/Modify Domain Settings','Domain Settings'); + ($pagetitle, $brcrumtitle) = ('View/Modify Domain Settings','View/Modify Domain Settings'); $action = '/adm/domainprefs'; if ($phase eq 'display') { my @actions = &Apache::loncommon::get_env_multiple('form.actions'); @@ -94,8 +94,7 @@ function changePage(formname,newphase) { }'."\n"; if ($phase eq 'pickactions') { $js .= - &Apache::lonhtmlcommon::set_form_elements({actions => 'checkbox',numcols => 'radio',})."\n". - &javascript_set_colnums(); + &Apache::lonhtmlcommon::set_form_elements({actions => 'checkbox'})."\n"; } elsif ($phase eq 'display') { $js .= &color_pick_js()."\n"; } @@ -114,12 +113,7 @@ $jscript my $additem; if ($phase eq 'pickactions') { my %loaditems = ( - 'onload' => "javascript:getViewportDims(document.$phase.width,document.$phase.height);setDisplayColumns();setFormElements(document.pickactions);", - ); - $additem = {'add_entries' => \%loaditems,}; - } else { - my %loaditems = ( - 'onload' => "javascript:getViewportDims(document.$phase.width,document.$phase.height);", + 'onload' => "setFormElements(document.pickactions);", ); $additem = {'add_entries' => \%loaditems,}; } @@ -140,21 +134,16 @@ $jscript sub print_footer { my ($r,$phase,$newphase,$button_text,$actions) = @_; $button_text = &mt($button_text); - $r->print(''. - ''. - ''); + $r->print(''); if (defined($env{'form.origin'})) { $r->print(''."\n"); } if (($phase eq 'display') || ($phase eq 'process')) { if (ref($actions) eq 'ARRAY') { foreach my $item (@{$actions}) { - $r->print('')."\n"; + $r->print(''."\n"); } } - $r->print(''); } my $dest='"javascript:changePage(document.'.$phase.','."'$newphase'".')"'; if ($phase eq 'process') { @@ -212,13 +201,14 @@ sub make_changes { } if ($context eq 'course') { if ($numchanged) { - $r->print(&Apache::courseprefs::store_changes($dom,$confname,$prefs_order,\@actions, - $prefs,$values,\%changes,$crstype)); + my $message = &Apache::courseprefs::store_changes($dom,$confname,$prefs_order,\@actions, + $prefs,$values,\%changes,$crstype); + $r->print(&Apache::loncommon::confirmwrapper($message)); } else { if ($crstype eq 'Community') { - $r->print(&mt("No changes made to community configuration.")); + $r->print(&Apache::loncommon::confirmwrapper(&mt("No changes made to community configuration."))); } else { - $r->print(&mt("No changes made to course configuration.")); + $r->print(&Apache::loncommon::confirmwrapper(&mt("No changes made to course configuration."))); } } if (keys(%disallowed) > 0) { @@ -252,11 +242,11 @@ sub display_settings { ({href=>"javascript:changePage(document.$phase,'display')", text=>"Display/Edit Settings"}); &print_header($r,$phase,$context,$jscript); + my $divwidth = 900; if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && (ref($values) eq 'HASH')) { if (@actions > 0) { my $rowsum = 0; my (%output,%rowtotal,@items); - my $halfway = @actions/2; foreach my $item (@{$prefs_order}) { if (grep(/^\Q$item\E$/,@actions)) { push(@items,$item); @@ -272,52 +262,16 @@ sub display_settings { $rowsum += $rowtotal{$item}; } } - my $colend; - my $halfway = $rowsum/2; - my $aggregate = 0; - my $sumleft = 0; - my $sumright = 0; - my $crossover; + $r->print('
'); for (my $i=0; $i<@items; $i++) { - $aggregate += $rowtotal{$items[$i]}; - if ($aggregate > $halfway) { - $crossover = $i; - last; - } - } - for (my $i=0; $i<$crossover; $i++) { - $sumleft += $rowtotal{$items[$i]}; - } - for (my $i=$crossover+1; $i<@items; $i++) { - $sumright += $rowtotal{$items[$i]}; - } - if ((@items > 1) && ($env{'form.numcols'} == 2)) { - my $sumdiff = $sumright - $sumleft; - if ($sumdiff > 0) { - $colend = $crossover + 1; - } else { - $colend = $crossover; - } - } else { - $colend = @items; - } - $r->print('

'); for (my $i=0; $i<$colend; $i++) { $r->print($output{$items[$i]}); } - $r->print(''); - if ($colend < @items) { - for (my $i=$colend; $i<@items; $i++) { - $r->print($output{$items[$i]}); - } - } - $r->print('

'); + $r->print('
'); $r->print(&print_footer($r,$phase,'process','Save',\@actions)); } else { $r->print(''. - ''."\n". - ''.&mt('No settings chosen'). - ''); + ''.&mt('No settings chosen'). + ''); } $r->print(''); } @@ -332,64 +286,54 @@ sub display_choices { } my %helphash; &print_header($r,$phase,$context); - $r->print('

'.&mt('Settings to display/modify').'

'); $r->print(''."\n".'

'."\n"); + $r->print('

'.&mt('Settings to display/modify').'

'."\n". + '
'.(' 'x2). '

'); - my ($numitems,$midpoint,$seconddiv,$count); + 'onclick="javascript:uncheckAll(document.pickactions.actions)" />'. + '

'."\n". + '
'); + my ($numitems,$maxincol,$firstthird,$secondthird,$seconddiv,$thirddiv,$count); if (ref($prefs_order) eq 'ARRAY') { $numitems = @{$prefs_order}; } - $midpoint = int($numitems/2); - if ($numitems%2) { - $midpoint ++; + my $numcols = 3; + $maxincol = int($numitems/$numcols); + if ($numitems%$numcols) { + $maxincol ++; } + $firstthird = $maxincol; + $secondthird = $firstthird + $maxincol; $count = 0; if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH')) { foreach my $item (@{$prefs_order}) { - $r->print('

'. - &Apache::loncommon::help_open_topic($prefs->{$item}->{'help'}). + $r->print(&Apache::loncommon::help_open_topic($prefs->{$item}->{'help'}). '

'); + '" /> '.&mt($prefs->{$item}->{'text'}).'
'); $count ++; - if ((!$seconddiv) && ($count >= $midpoint)) { + if ((!$seconddiv) && ($count >= $firstthird)) { $r->print('
'."\n".'
'."\n"); $seconddiv = 1; } + if ((!$thirddiv) && ($count >= $secondthird)) { + $r->print('
'."\n".'
'."\n"); + $thirddiv = 1; + } } - $r->print('

'. - &mt('Display options').'

'."\n". - '

'.&mt('Display using: ')."\n". - '  

'); + $r->print('

'); } - $r->print(&print_footer($r,$phase,'display','Go')); + $r->print(&print_footer($r,$phase,'display','Display')); $r->print(''); $r->print(&Apache::loncommon::end_page()); return; } -sub javascript_set_colnums { - return < 1100) { - document.pickactions.numcols[1].checked = true; - } else { - document.pickactions.numcols[0].checked = true; - } -} -END -} - sub color_pick_js { my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition(); my $output = <<"ENDCOL";