Diff for /loncom/interface/lonconfigsettings.pm between versions 1.30 and 1.62

version 1.30, 2015/05/21 23:26:35 version 1.62, 2022/03/12 21:24:17
Line 40  use Apache::courseclassifier(); Line 40  use Apache::courseclassifier();
 use LONCAPA qw(:DEFAULT :match);   use LONCAPA qw(:DEFAULT :match); 
   
 sub print_header {  sub print_header {
     my ($r,$phase,$context,$jscript,$container) = @_;      my ($r,$phase,$context,$jscript,$container,$instcode,$dom,$confname,$values) = @_;
     my ($pagetitle,$brcrumtitle,$action,$call_category_check,$instcode_check,      my ($pagetitle,$brcrumtitle,$action,$call_category_check,$instcode_check,
         $crstype,@actions,@code_order);          $linkprot_check,$crstype,@actions,@code_order);
     if ($phase eq 'display') {      if ($phase eq 'display') {
         @actions = &Apache::loncommon::get_env_multiple('form.actions');          @actions = &Apache::loncommon::get_env_multiple('form.actions');
     }      }
Line 75  sub print_header { Line 75  sub print_header {
                                                         \@code_order);                                                          \@code_order);
                 if (@code_order) {                  if (@code_order) {
                    my $noinstcodestr = &mt('You indicated cloning based on category, but did not select any categories.');                     my $noinstcodestr = &mt('You indicated cloning based on category, but did not select any categories.');
                      &js_escape(\$noinstcodestr);
                    $instcode_check = <<"ENDSCRIPT";                     $instcode_check = <<"ENDSCRIPT";
     if (formname == document.display) {      if (formname == document.display) {
         if (formname.cloners_instcode.length) {          if (formname.cloners_instcode.length) {
Line 115  sub print_header { Line 116  sub print_header {
 ENDSCRIPT  ENDSCRIPT
                 }                  }
             }              }
               if (($context eq 'course') && ($phase eq 'display') &&
                   (grep(/^linkprot$/,@actions))) {
                   my $allowed;
                   my $home = &Apache::lonnet::homeserver($confname,$dom);
                   unless ($home eq 'no_host') {
                       my @ids=&Apache::lonnet::current_machine_ids();
                       foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                   }
                   if ($allowed) {
                       my (@changeable,@settable);
                       if (ref($values->{'linkprot'}) eq 'HASH') {
                           if (keys(%{$values->{'linkprot'}})) {
                               my @current = sort { $a <=> $b } keys(%{$values->{'linkprot'}});
                               if (@current) {
                                   for (my $i=0; $i<@current; $i++) {
                                       my $num = $current[$i];
                                       if (ref($values->{'linkprot'}->{$num}) eq 'HASH') {
                                           if ($values->{'linkprot'}->{$num}->{'usable'}) {
                                               push(@changeable,$i);
                                           } else {
                                               push(@settable,$i);
                                           }
                                       }
                                   }
                               }
                           }
                       }
                       my ($numrules,$intargjs);
   $linkprot_check .= <<ENDJS;
   
   var linkprotradio = '';
   var secretinput = ''; 
   var posscheck = '';
   
   ENDJS
                       if (@changeable) {
                           foreach my $num (@changeable) {
                               ($numrules,$intargjs) =
                                   &Apache::loncommon::passwd_validation_js('secretinput',$dom,'linkprot',$num);
                               $linkprot_check .= <<ENDJS;
   posscheck = '';
   linkprotradio = document.display.elements['linkprot_changesecret_$num'];
   if (linkprotradio.length) {
       for (var i=0; i<linkprotradio.length; i++) {
           if (linkprotradio[i].checked) {
               if (linkprotradio[i].value == 1) {
                   posscheck = 1;
               }
           }
       }
   }
   
   ENDJS
                               if ($numrules) {
                                   $linkprot_check .= <<ENDJS;
   if (posscheck) {
       secretinput = document.display.elements['linkprot_secret_$num'].value;
       $intargjs
   }
   
   ENDJS
                               }
                               $linkprot_check .= <<ENDJS;
   if (posscheck) {
       document.display.elements['linkprot_secret_$num'].type = 'password';
   }
   
   ENDJS
                           }
                       }
                       if (@settable) {
                           foreach my $num (@settable) {
                               ($numrules,$intargjs) =
                                   &Apache::loncommon::passwd_validation_js('secretinput',$dom,'linkprot',$num);
                               if ($numrules) {
                                   $linkprot_check .= <<ENDJS;
   secretinput = document.display.elements['linkprot_secret_$num'].value;
   $intargjs
   
   ENDJS
                               }
                               $linkprot_check .= <<ENDJS;
   document.display.elements['linkprot_secret_$num'].type = 'password';
   
   ENDJS
                           }
                       }
                       ($numrules,$intargjs) =
                           &Apache::loncommon::passwd_validation_js('secretinput',$dom,'linkprot','add');
                       if ($numrules) {
                           $linkprot_check .= <<ENDJS
   secretinput = document.display.elements['linkprot_secret_add'].value;
   if (document.display.elements['linkprot_add'].checked) {
       $intargjs      
   }
   
   ENDJS
                       }
                       $linkprot_check .= <<ENDJS;
   document.display.elements['linkprot_secret_add'].type = 'password';
   
   ENDJS
                   }
               }
         }          }
     }      }
     my $alert = &mt('You must select at least one functionality type to display.');      my $alert = &mt('You must select at least one functionality type to display.');
       &js_escape(\$alert);
     my $js = '      my $js = '
 <script type="text/javascript">  <script type="text/javascript">
 // <![CDATA[  // <![CDATA[
Line 144  function changePage(formname,newphase) { Line 250  function changePage(formname,newphase) {
             return;              return;
         }          }
     }      }
     '.$instcode_check.$call_category_check.'      '.$instcode_check.$call_category_check.$linkprot_check.'
     formname.submit();      formname.submit();
 }'."\n";  }'."\n";
     if ($phase eq 'pickactions') {      if ($phase eq 'pickactions') {
Line 175  $jscript Line 281  $jscript
         $additem = {'add_entries' => \%loaditems,};          $additem = {'add_entries' => \%loaditems,};
     } elsif ($phase eq 'display') {      } elsif ($phase eq 'display') {
         if ($context eq 'domain') {          if ($context eq 'domain') {
               my $onload;
             if (grep(/^coursedefaults$/,@actions)) {              if (grep(/^coursedefaults$/,@actions)) {
                   $onload = "toggleDisplay(document.display,'cloneinstcode');".
                             "toggleDisplay(document.display,'credits');".
                             "toggleDisplay(document.display,'studentsubmission');";
               }
               if (grep(/^selfcreation$/,@actions)) {
                   my $prefix = 'cancreate_emailverified';
                   my $customclass = 'LC_selfcreate_email';
                   my $classprefix = 'LC_canmodify_emailusername_';
                   my $optionsprefix = 'LC_options_emailusername_';
                   $onload .= "toggleRows(document.display,'cancreate_email','selfassign','$customclass','$classprefix','$optionsprefix');";
                   my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
                   my $hascustom;
                   my ($emailrules,$emailruleorder) = &Apache::lonnet::inst_userrules($dom,'email');
                   if (ref($emailrules) eq 'HASH') {
                       if (keys(%{$emailrules}) > 0) {
                           $hascustom = 'cancreate_emailrule';
                       }
                   }
                   my @posstypes;
                   if (ref($types) eq 'ARRAY') {
                       @posstypes = @{$types};
                       push(@posstypes,'default');
                       foreach my $type (@posstypes) {
                           $onload .= "toggleEmailOptions(document.display,'cancreate_emailoptions','$hascustom',".
                                                                  "'cancreate_emaildomain','$type');";
                       }
                   } else {
                       $onload .= "toggleEmailOptions(document.display,'cancreate_emailoptions','$hascustom',".
                                                          "'cancreate_emaildomain','default');";
                   }
               } 
               if (grep(/^contacts$/,@actions)) {
                   my $customclass = 'LC_helpdesk_override';
                   my $optionsprefix = 'LC_options_helpdesk_';
                   $onload .= "toggleHelpdeskRow(document.display,'overrides','$customclass','$optionsprefix');";
               }
               if (grep(/^lti$/,@actions)) {
                   $onload .= "toggleLTI(document.display,'user','add');".
                              "toggleLTI(document.display,'crs','add');".
                              "toggleLTI(document.display,'sec','add');".
                              "toggleLTI(document.display,'lcauth','add');".
                              "toggleLTI(document.display,'lcmenu','add');".
                              "toggleLTI(document.display,'passback','add');".
                              "toggleLTI(document.display,'callback','add');";
                   if (ref($values) eq 'HASH') {
                       if (ref($values->{'lti'}) eq 'HASH') {
                           my $numlti = scalar(keys(%{$values->{'lti'}}));
                           for (my $i=0; $i<$numlti; $i++) {
                               $onload .= "toggleLTI(document.display,'user','$i');".
                                          "toggleLTI(document.display,'crs','$i');".
                                          "toggleLTI(document.display,'sec','$i');".
                                          "toggleLTI(document.display,'lcauth','$i');".
                                          "toggleLTI(document.display,'lcmenu','$i');".
                                          "toggleLTI(document.display,'passback','$i');".
                                          "toggleLTI(document.display,'callback','$i');";
                           }
                       }
                   }
                   my %servers = &Apache::lonnet::get_servers($dom,'library');
                   foreach my $server (keys(%servers)) {
                       $onload .= "togglePrivKey(document.display,'$server');";
                   }
                   $onload .= "toggleLTIEncKey(document.display);";
               }
               if (grep(/^ltitools$/,@actions)) {
                   $onload .= "toggleLTITools(document.display,'passback','add');".
                              "toggleLTITools(document.display,'roster','add');".
                              "toggleLTITools(document.display,'user','add');";
                   if (ref($values) eq 'HASH') {
                       if (ref($values->{'ltitools'}) eq 'HASH') {
                           my $numltitools = scalar(keys(%{$values->{'ltitools'}}));
                           for (my $i=0; $i<$numltitools; $i++) {
                               $onload .= "toggleLTITools(document.display,'passback','$i');".
                                          "toggleLTITools(document.display,'roster','$i');".
                                          "toggleLTITools(document.display,'user','$i');";
                           }
                       }
                   }
               }
               if (grep(/^wafproxy$/,@actions)) {
                   $onload .= "toggleWAF();checkWAF();updateWAF();";
               }
               if (grep(/^proctoring$/,@actions)) {
                   $onload .= "toggleProctoring(document.display,'proctorio');".
                              "toggleProctoring(document.display,'examity');";
               }
               if (grep(/^scantron$/,@actions)) {
                   $onload .= "toggleScantron(document.display);";
               }
               if (grep(/^autoupdate$/,@actions)) {
                   $onload .= "toggleLastActiveDays(document.display);";
               }
               if (grep(/^autoenroll$/,@actions)) {
                   $onload .= "toggleFailsafe(document.display);";
               }
               if (grep(/^login$/,@actions)) {
                   my %domservers = &Apache::lonnet::get_servers($dom);
                   foreach my $server (sort(keys(%domservers))) {
                       $onload .= "toggleSamlOptions(document.display,'$server');";
                   }
               }
               if ($onload) {
                 my %loaditems = (                  my %loaditems = (
                     '             onload' => "toggleDisplay(document.display,'cloneinstcode');".                                    'onload' => $onload,
                                              "toggleDisplay(document.display,'credits');".  
                                              "toggleDisplay(document.display,'studentsubmission');",  
                                 );                                  );
                 $additem = {'add_entries' => \%loaditems,};                  $additem = {'add_entries' => \%loaditems,};
             }              }
         } elsif ($context eq 'course') {          } elsif ($context eq 'course') {
               my $onload;
             if (grep(/^courseinfo$/,@actions)) {              if (grep(/^courseinfo$/,@actions)) {
                 if (@code_order) {                   if (@code_order) {
                     $additem = {                      $onload = "courseSet('','load');toggleCloners(document.display.cloners_instcode);";
                                    add_entries => {'onload' => "courseSet('','load');toggleCloners(document.display.cloners_instcode);"},  
                                };  
                 }                  }
             }              }
               if (grep(/^linkprot$/,@actions)) {
                   if (ref($values) eq 'HASH') {
                       if (ref($values->{'linkprot'}) eq 'HASH') {
                           my $ltiauth;
                           if (exists($env{'course.'.$env{'request.course.id'}.'.internal.ltiauth'})) {
                               $ltiauth = $env{'course.'.$env{'request.course.id'}.'.internal.ltiauth'};
                           } else {
                               my %domdefs = &Apache::lonnet::get_domain_defaults($dom);
                               $ltiauth = $domdefs{'crsltiauth'};
                           }
                           my $ishome;
                           my $chome = $env{'course.'.$env{'request.course.id'}.'.home'};
                           unless (($chome eq 'no_host') || ($chome eq '')) {
                               my @ids=&Apache::lonnet::current_machine_ids();
                               foreach my $id (@ids) { if ($id eq $chome) { $ishome=1; } }
                           }
                           my $posslti = scalar(keys(%{$values->{'linkprot'}}));
                           for (my $i=0; $i<=$posslti; $i++) {
                               my $num = $i;
                               if ($i == $posslti) {
                                   $num = 'add';
                               }
                               if (ref($values->{'linkprot'}->{$i}) eq 'HASH') {
                                   if ($values->{'linkprot'}->{$i}->{'usable'}) {
                                       $onload .= "toggleLinkProt(document.display,'$num','secret');";
                                   }
                               }
                               if ($ltiauth) {
                                   $onload .= "toggleLinkProtReqUser(document.display,'requser','optional','1','block','$num');".
                                              "toggleLinkProtReqUser(document.display,'mapuser','userfield','other','inline-block','$num');";
                               }
                               if ($ishome) {
                                   $onload .= "uncheckLinkProtMakeVis('visible','$num');";
                               }
                           }
                       }
                   }
               }
               if ($onload) {
                   my %loaditems = (
                                     'onload' => $onload,
                                   );
                   $additem = {'add_entries' => \%loaditems,};
               }
         }          }
     }      }
     $r->print(&Apache::loncommon::start_page($pagetitle,$js,$additem));      $r->print(&Apache::loncommon::start_page($pagetitle,$js,$additem));
Line 211  $jscript Line 461  $jscript
 }  }
   
 sub print_footer {  sub print_footer {
     my ($r,$phase,$newphase,$button_text,$actions,$container) = @_;      my ($r,$phase,$newphase,$button_text,$actions,$container,$parm_permission) = @_;
     $button_text = &mt($button_text);      $button_text = &mt($button_text);
     $r->print('<input type="hidden" name="phase" value="" />');      $r->print('<input type="hidden" name="phase" value="" />');
     if (defined($env{'form.origin'})) {      if (defined($env{'form.origin'})) {
Line 236  sub print_footer { Line 486  sub print_footer {
         } else {          } else {
             $onclick = '"javascript:changePage(document.'.$phase.','."'$newphase'".')"';              $onclick = '"javascript:changePage(document.'.$phase.','."'$newphase'".')"';
         }          }
         $r->print('<p><input type="button" name="store" value="'.          my $showbutton = 1;
                   $button_text.'" onclick='.$onclick.' /></p>');          if (ref($parm_permission) eq 'HASH') {
               unless (($parm_permission->{'process'}) || ($newphase eq 'display')) {
                   $showbutton = 0;
               }
           }
           if ($showbutton) {
               $r->print('<p><input type="button" name="store" value="'.
                         $button_text.'" onclick='.$onclick.' /></p>');
           } 
     }      }
     if ($phase eq 'process') {      if ($phase eq 'process') {
         $r->print('</form>');          $r->print('</form>');
Line 250  sub print_footer { Line 508  sub print_footer {
 }  }
   
 sub make_changes {  sub make_changes {
     my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$roles,$allitems,$container) = @_;      my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$roles,
           $allitems,$container,$parm_permission) = @_;
     my %brcrumtext = &get_crumb_text();      my %brcrumtext = &get_crumb_text();
     my @actions = &Apache::loncommon::get_env_multiple('form.actions');      my @actions = &Apache::loncommon::get_env_multiple('form.actions');
     my ($numchanged,%changes,%disallowed);      my ($numchanged,%changes,%disallowed);
Line 260  sub make_changes { Line 519  sub make_changes {
        {href=>"javascript:changePage(document.$phase,'$phase')",         {href=>"javascript:changePage(document.$phase,'$phase')",
         text=>"Updated"});          text=>"Updated"});
     &print_header($r,$phase,$context,undef,$container);      &print_header($r,$phase,$context,undef,$container);
     my ($crstype,%lastact);      my ($crstype,%lastact,$errors);
     if ($context eq 'course') {      if ($context eq 'course') {
         $crstype = &Apache::loncommon::course_type();          $crstype = &Apache::loncommon::course_type();
     }      }
Line 274  sub make_changes { Line 533  sub make_changes {
                                           $confname,$item,$roles,$values,\%lastact));                                            $confname,$item,$roles,$values,\%lastact));
                 } else {                  } else {
                     $changes{$item} = {};                      $changes{$item} = {};
                     &Apache::courseprefs::process_changes($dom,$item,$values,                      $errors =
                                                           $prefs->{$item},$changes{$item},                          &Apache::courseprefs::process_changes($dom,$confname,$item,$values,
                                                           $allitems,\%disallowed,$crstype);                                                                $prefs->{$item},$changes{$item},
                                                                 $allitems,\%disallowed,$crstype);
                     if (keys(%{$changes{$item}}) > 0) {                      if (keys(%{$changes{$item}}) > 0) {
                         $numchanged ++;                          $numchanged ++;
                     }                      }
Line 308  sub make_changes { Line 568  sub make_changes {
             }              }
             $r->print('</p>');              $r->print('</p>');
         }          }
           if ($errors) {
               $r->print('<p>'.$errors.'</p>');
           }
     }      }
     $r->print('<p>');      $r->print('<p>');
     my $footer_text = 'Back to configuration display';      my $footer_text = 'Back to configuration display';
     if ($context eq 'course') {      if ($context eq 'course') {
         $footer_text = 'Back to display/edit settings';           $footer_text = 'Back to display/edit settings'; 
     }      }
     &print_footer($r,$phase,'display',$footer_text,\@actions,$container);      &print_footer($r,$phase,'display',$footer_text,\@actions,$container,$parm_permission);
     $r->print('</p>');      $r->print('</p>');
     return \%lastact;      return \%lastact;
 }  }
   
 sub display_settings {  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,$container) = @_;          $allitems,$crstype,$container,$parm_permission) = @_;
     my %brcrumtext = &get_crumb_text();      my %brcrumtext = &get_crumb_text();
     my @actions = &Apache::loncommon::get_env_multiple('form.actions');      my @actions = &Apache::loncommon::get_env_multiple('form.actions');
     &Apache::lonhtmlcommon::add_breadcrumb      &Apache::lonhtmlcommon::add_breadcrumb
Line 331  sub display_settings { Line 594  sub display_settings {
     if (ref($values) eq 'HASH') {      if (ref($values) eq 'HASH') {
         $instcode = $values->{'internal.coursecode'};          $instcode = $values->{'internal.coursecode'};
     }      }
     &print_header($r,$phase,$context,$jscript,$container,$instcode);      &print_header($r,$phase,$context,$jscript,$container,$instcode,$dom,$confname,$values);
     my $divwidth = 900;      my $divwidth = 900;
     if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && (ref($values) eq 'HASH')) {       if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && (ref($values) eq 'HASH')) { 
         if (@actions > 0) {          if (@actions > 0) {
             my $rowsum = 0;              my $rowsum = 0;
             my (%output,%rowtotal,@items);              my (%output,%rowtotal,@items,$got_check_uncheck);
             foreach my $item (@{$prefs_order}) {              foreach my $item (@{$prefs_order}) {
                 if (grep(/^\Q$item\E$/,@actions)) {                  if (grep(/^\Q$item\E$/,@actions)) {
                     push(@items,$item);                      push(@items,$item);
Line 345  sub display_settings { Line 608  sub display_settings {
                         if (ref($values) eq 'HASH') {                           if (ref($values) eq 'HASH') { 
                             $settings = $values->{$item};                              $settings = $values->{$item};
                         }                          }
                         if ($item eq 'usersessions') {                          if (($item eq 'usersessions') || ($item eq 'ssl')) {
                             $r->print('<script type="text/javascript">'."\n".                              unless ($got_check_uncheck) {
                                       '// <![CDATA['."\n".                                  $r->print('<script type="text/javascript">'."\n".
                                       &Apache::loncommon::check_uncheck_jscript()."\n".                                            '// <![CDATA['."\n".
                                       '// ]]>'."\n".                                            &Apache::loncommon::check_uncheck_jscript()."\n".
                                       '</script>'."\n");                                            '// ]]>'."\n".
                                             '</script>'."\n");
                                   $got_check_uncheck = 1;
                               }
                         } elsif ($item eq 'selfcreation') {                          } elsif ($item eq 'selfcreation') {
                             if (ref($values) eq 'HASH') {                              if (ref($values) eq 'HASH') {
                                 $settings = $values->{'usercreation'};                                  $settings = $values->{'usercreation'};
Line 375  sub display_settings { Line 641  sub display_settings {
                                     $settings = $inststatus;                                      $settings = $inststatus;
                                 }                                  }
                             }                              }
                           } elsif ($item eq 'lti') {
                               if (ref($values->{'ltisec'}) eq 'HASH') {
                                   if (ref($values->{'lti'}) eq 'HASH') {
                                       $settings = {%{$values->{'lti'}},%{$values->{'ltisec'}}};
                                   } else {
                                       $settings = $values->{'ltisec'};
                                   }
                               } elsif (ref($values->{'lti'}) eq 'HASH') {
                                   $settings = $values->{'lti'};
                               }
                         }                          }
                         ($output{$item},$rowtotal{$item}) =                          ($output{$item},$rowtotal{$item}) =
                             &Apache::domainprefs::print_config_box($r,$dom,$confname,                              &Apache::domainprefs::print_config_box($r,$dom,$confname,
                                 $phase,$item,$prefs->{$item},$settings);                                  $phase,$item,$prefs->{$item},$settings);
                     } else {                      } else {
                         ($output{$item},$rowtotal{$item}) =                          ($output{$item},$rowtotal{$item}) =
                             &Apache::courseprefs::print_config_box($r,$dom,$phase,                              &Apache::courseprefs::print_config_box($r,$dom,$confname,$phase,
                                 $item,$prefs->{$item},$values,$allitems,$crstype);                                  $item,$prefs->{$item},$values,$allitems,$crstype,$parm_permission);
                     }                      }
                     $rowsum += $rowtotal{$item};                      $rowsum += $rowtotal{$item};
                 }                  }
Line 392  sub display_settings { Line 668  sub display_settings {
                 $r->print($output{$items[$i]});                  $r->print($output{$items[$i]});
             }              }
             $r->print('</div>');              $r->print('</div>');
             $r->print(&print_footer($r,$phase,'process','Save Changes',\@actions,$container));              $r->print(&print_footer($r,$phase,'process','Save Changes',\@actions,$container,$parm_permission));
         } else {          } else {
             $r->print('<input type="hidden" name="phase" value="" />'.              $r->print('<input type="hidden" name="phase" value="" />'.
                       '<span class="LC_error">'.&mt('No settings chosen').                        '<span class="LC_error">'.&mt('No settings chosen').
Line 408  sub display_settings { Line 684  sub display_settings {
 }  }
   
 sub display_choices {  sub display_choices {
     my ($r,$phase,$context,$prefs_order,$prefs,$container) = @_;      my ($r,$phase,$context,$prefs_order,$prefs,$container,$parm_permission) = @_;
     if ($phase eq '') {      if ($phase eq '') {
         $phase = 'pickactions';          $phase = 'pickactions';
     }      }
Line 419  sub display_choices { Line 695  sub display_choices {
               &Apache::loncommon::check_uncheck_jscript()."\n".                &Apache::loncommon::check_uncheck_jscript()."\n".
               '// ]]>'."\n".                '// ]]>'."\n".
               '</script>'."\n");                '</script>'."\n");
     $r->print('<h3>'.&mt('Settings to display/modify').'</h3>'.      my $heading = &mt('Settings to display/modify');
       if (ref($parm_permission) eq 'HASH') {
           unless ($parm_permission->{'process'}) {
               $heading = &mt('Settings to display');
           }
       }
       $r->print('<h3>'.$heading.'</h3>'.
               '<div><input type="button" value="'.&mt('check all').'" '.                '<div><input type="button" value="'.&mt('check all').'" '.
               'onclick="javascript:checkAll(document.pickactions.actions)"'.                'onclick="javascript:checkAll(document.pickactions.actions)"'.
               ' />'.('&nbsp;'x2).                ' />'.('&nbsp;'x2).
Line 455  sub display_choices { Line 737  sub display_choices {
                 $thirddiv = 1;                  $thirddiv = 1;
             }              }
         }          }
         $r->print('</div><br clear="all" />');  
     }      }
     $r->print(&print_footer($r,$phase,'display','Display',undef,$container));      $r->print('</div><div style="padding:0;clear:both;margin:0;border:0"></div>');
       $r->print(&print_footer($r,$phase,'display','Display',undef,$container,$parm_permission));
     $r->print('</form>');      $r->print('</form>');
     if ($container) {      if ($container) {
         &Apache::lonparmset::endSettingsScreen($r);          &Apache::lonparmset::endSettingsScreen($r);

Removed from v.1.30  
changed lines
  Added in v.1.62


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>