--- loncom/interface/lonconfigsettings.pm 2010/11/19 13:09:36 1.8.2.4 +++ loncom/interface/lonconfigsettings.pm 2010/01/07 18:21:25 1.9 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to set domain-wide configuration settings # -# $Id: lonconfigsettings.pm,v 1.8.2.4 2010/11/19 13:09:36 raeburn Exp $ +# $Id: lonconfigsettings.pm,v 1.9 2010/01/07 18:21:25 faziophi 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','View/Modify Domain Settings'); + ($pagetitle, $brcrumtitle) = ('View/Modify Domain Settings','Domain Settings'); $action = '/adm/domainprefs'; if ($phase eq 'display') { my @actions = &Apache::loncommon::get_env_multiple('form.actions'); @@ -94,7 +94,8 @@ function changePage(formname,newphase) { }'."\n"; if ($phase eq 'pickactions') { $js .= - &Apache::lonhtmlcommon::set_form_elements({actions => 'checkbox'})."\n"; + &Apache::lonhtmlcommon::set_form_elements({actions => 'checkbox',numcols => 'radio',})."\n". + &javascript_set_colnums(); } elsif ($phase eq 'display') { $js .= &color_pick_js()."\n"; } @@ -113,7 +114,12 @@ $jscript my $additem; if ($phase eq 'pickactions') { my %loaditems = ( - 'onload' => "setFormElements(document.pickactions);", + '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);", ); $additem = {'add_entries' => \%loaditems,}; } @@ -134,16 +140,21 @@ $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') { @@ -201,14 +212,13 @@ sub make_changes { } if ($context eq 'course') { if ($numchanged) { - my $message = &Apache::courseprefs::store_changes($dom,$confname,$prefs_order,\@actions, - $prefs,$values,\%changes,$crstype); - $r->print(&Apache::loncommon::confirmwrapper($message)); + $r->print(&Apache::courseprefs::store_changes($dom,$confname,$prefs_order,\@actions, + $prefs,$values,\%changes,$crstype)); } else { if ($crstype eq 'Community') { - $r->print(&Apache::loncommon::confirmwrapper(&mt("No changes made to community configuration."))); + $r->print(&mt("No changes made to community configuration.")); } else { - $r->print(&Apache::loncommon::confirmwrapper(&mt("No changes made to course configuration."))); + $r->print(&mt("No changes made to course configuration.")); } } if (keys(%disallowed) > 0) { @@ -242,11 +252,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); @@ -262,19 +272,84 @@ sub display_settings { $rowsum += $rowtotal{$item}; } } - $r->print('
'); + my $colend; + my $halfway = $rowsum/2; + my $aggregate = 0; + my $sumleft = 0; + my $sumright = 0; + my $crossover; 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; + } + if ($context ne 'course') { + $r->print('

'); + } + else { + $r->print('
'); + } + for (my $i=0; $i<$colend; $i++) { $r->print($output{$items[$i]}); } - $r->print('
'); - $r->print(&print_footer($r,$phase,'process','Save',\@actions)); + if ($context ne 'course') { + $r->print('
'); + } + if ($colend < @items) { + for (my $i=$colend; $i<@items; $i++) { + $r->print($output{$items[$i]}); + } + } + if ($context ne 'course') { + $r->print('

'); + } + else { + $r->print('
'); + } + $r->print(&print_footer($r,$phase,'process','Save Changes',\@actions)); } else { $r->print(''. - ''.&mt('No settings chosen'). - ''); + ''."\n". + ''.&mt('No settings chosen'). + ''); } $r->print(''); } + if ($context eq 'course') { + $r->print(' + +'); + } $r->print(&Apache::loncommon::end_page()); return; } @@ -286,54 +361,64 @@ sub display_choices { } my %helphash; &print_header($r,$phase,$context); + $r->print('

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

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

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

'."\n". - '
'."\n".'

'.(' 'x2). ''. - '


'."\n". - '
'); - my ($numitems,$maxincol,$firstthird,$secondthird,$seconddiv,$thirddiv,$count); + 'onclick="javascript:uncheckAll(document.pickactions.actions)"'. + ' />

'); + my ($numitems,$midpoint,$seconddiv,$count); if (ref($prefs_order) eq 'ARRAY') { $numitems = @{$prefs_order}; } - my $numcols = 3; - $maxincol = int($numitems/$numcols); - if ($numitems%$numcols) { - $maxincol ++; + $midpoint = int($numitems/2); + if ($numitems%2) { + $midpoint ++; } - $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 >= $firstthird)) { + if ((!$seconddiv) && ($count >= $midpoint)) { $r->print('
'."\n".'
'."\n"); $seconddiv = 1; } - if ((!$thirddiv) && ($count >= $secondthird)) { - $r->print('
'."\n".'
'."\n"); - $thirddiv = 1; - } } - $r->print('

'); + $r->print('

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

'."\n". + '

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

'); } - $r->print(&print_footer($r,$phase,'display','Display')); + $r->print(&print_footer($r,$phase,'display','Go')); $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";