--- loncom/interface/lonconfigsettings.pm 2009/04/22 12:42:16 1.2 +++ loncom/interface/lonconfigsettings.pm 2010/04/02 21:47:54 1.13 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to set domain-wide configuration settings # -# $Id: lonconfigsettings.pm,v 1.2 2009/04/22 12:42:16 raeburn Exp $ +# $Id: lonconfigsettings.pm,v 1.13 2010/04/02 21:47:54 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -38,17 +38,35 @@ use Apache::lonlocal; sub print_header { my ($r,$phase,$context,$jscript) = @_; - my ($pagetitle,$brcrumtitle,$action); + 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'); + if (grep(/^coursecategories$/,@actions)) { + $call_category_check = qq| + if (formname == document.display) { + if (!categoryCheck(formname)) { + return; + } + } +|; + } + } } else { - ($pagetitle, $brcrumtitle) = ('Set Course Environment','Course Environment'); + if (&Apache::loncommon::course_type() eq 'Community') { + ($pagetitle,$brcrumtitle) = ('Community Configuration','Community Configuration'); + } else { + ($pagetitle,$brcrumtitle) = ('Course Configuration','Course Configuration'); + } $action = '/adm/courseprefs'; } my $alert = &mt('You must select at least one functionality type to display.'); my $js = ' '; if ($jscript) { @@ -93,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,}; } @@ -119,18 +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(''); } my $dest='"javascript:changePage(document.'.$phase.','."'$newphase'".')"'; if ($phase eq 'process') { @@ -152,46 +165,88 @@ sub print_footer { } sub make_changes { - my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$roles) = @_; + my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$roles,$allitems) = @_; my %brcrumtext = &get_crumb_text(); my @actions = &Apache::loncommon::get_env_multiple('form.actions'); + my ($numchanged,%changes,%disallowed); &Apache::lonhtmlcommon::add_breadcrumb ({href=>"javascript:changePage(document.$phase,'display')", text=>$brcrumtext{$context}}, {href=>"javascript:changePage(document.$phase,'$phase')", text=>"Updated"}); &print_header($r,$phase,$context); + my $crstype; + if ($context eq 'course') { + $crstype = &Apache::loncommon::course_type(); + } if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && (ref($prefs) eq 'HASH')) { foreach my $item (@{$prefs_order}) { if (grep(/^\Q$item\E$/,@actions)) { - $r->print('

'.&mt($prefs->{$item}{'text'}).'

'); if ($context eq 'domain') { - $r->print(&Apache::domainprefs::process_changes($r,$dom,$confname,$item,$roles,$values)); + $r->print('

'.&mt($prefs->{$item}{'text'}).'

'. + &Apache::domainprefs::process_changes($r,$dom, + $confname,$item,$roles,$values)); } else { - $r->print(&Apache::courseprefs::process_changes($r,$dom,$item,$values)); + $changes{$item} = {}; + &Apache::courseprefs::process_changes($dom,$item,$values, + $prefs->{$item},$changes{$item}, + $allitems,\%disallowed,$crstype); + if (keys(%{$changes{$item}}) > 0) { + $numchanged ++; + } + } + } + } + } + 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)); + } else { + if ($crstype eq 'Community') { + $r->print(&Apache::loncommon::confirmwrapper(&mt("No changes made to community configuration."))); + } else { + $r->print(&Apache::loncommon::confirmwrapper(&mt("No changes made to course configuration."))); + } + } + if (keys(%disallowed) > 0) { + $r->print('

'); + foreach my $item ('cloners','rolenames','feedback','discussion','localization') { + if (ref($disallowed{$item}) eq 'HASH') { + if (keys(%{$disallowed{$item}}) > 0) { + $r->print(&Apache::courseprefs::display_disallowed($item,$disallowed{$item}, + $prefs,$crstype)); + } } } + $r->print('

'); } } $r->print('

'); - &print_footer($r,$phase,'display','Back to configuration display',\@actions); + my $footer_text = 'Back to configuration display'; + if ($context eq 'course') { + $footer_text = 'Back to display/edit settings'; + } + &print_footer($r,$phase,'display',$footer_text,\@actions); $r->print('

'); } sub display_settings { - my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$jscript) = @_; + my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$jscript, + $allitems,$crstype) = @_; my %brcrumtext = &get_crumb_text(); my @actions = &Apache::loncommon::get_env_multiple('form.actions'); &Apache::lonhtmlcommon::add_breadcrumb ({href=>"javascript:changePage(document.$phase,'display')", - text=>"Course Settings"}); + 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); @@ -202,60 +257,52 @@ sub display_settings { } else { ($output{$item},$rowtotal{$item}) = &Apache::courseprefs::print_config_box($r,$dom,$phase, - $item,$prefs->{$item},$values); + $item,$prefs->{$item},$values,$allitems,$crstype); } $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(&print_footer($r,$phase,'process','Save',\@actions)); + $r->print('
'); + $r->print(&print_footer($r,$phase,'process','Save Changes',\@actions)); } else { $r->print(''. - ''."\n". - ''.&mt('No settings chosen'). - ''); + ''.&mt('No settings chosen'). + ''); } $r->print(''); } + if ($context eq 'course') { + $r->print(' + +'); + } $r->print(&Apache::loncommon::end_page()); return; } @@ -267,23 +314,30 @@ sub display_choices { } my %helphash; &print_header($r,$phase,$context); - $r->print('

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

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

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

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

'. + '
'.(' '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 ++; } + my $firstthird = $maxincol; + my $secondthird = $firstthird + $maxincol; $count = 0; if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH')) { foreach my $item (@{$prefs_order}) { @@ -292,37 +346,23 @@ sub display_choices { ''); $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"; @@ -372,7 +412,7 @@ ENDCOL sub get_crumb_text { my %brcrumbtext = ( domain => 'Domain Settings', - course => 'Course Settings', + course => 'Display/Edit Settings', ); return %brcrumbtext; }