Diff for /loncom/interface/lonconfigsettings.pm between versions 1.21.4.13.2.6 and 1.58

version 1.21.4.13.2.6, 2022/04/05 16:43:34 version 1.58, 2022/02/14 02:48:46
Line 35  use Apache::lonnet; Line 35  use Apache::lonnet;
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonhtmlcommon();  use Apache::lonhtmlcommon();
 use Apache::lonlocal;  use Apache::lonlocal;
   use Apache::lonparmset();
 use Apache::courseclassifier();  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,$instcode,$dom,$confname,$values) = @_;      my ($r,$phase,$context,$jscript,$container,$instcode,$dom,$values) = @_;
     my ($pagetitle,$brcrumtitle,$action,$call_category_check,$instcode_check,      my ($pagetitle,$brcrumtitle,$action,$call_category_check,$instcode_check,
         $linkprot_check,$crstype,@actions,@code_order);          $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 91  sub print_header { Line 92  sub print_header {
                             var gotcode = 0;                              var gotcode = 0;
                             for (var i=0; i<codes.length; i++) {                              for (var i=0; i<codes.length; i++) {
                                 if (codes[i].selectedIndex != 0) {                                  if (codes[i].selectedIndex != 0) {
                                      gotcode = 1;                                       gotcode = 1; 
                                      break;                                       break;
                                 }                                  }
                             }                              }
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) {  
     uncheckLinkProtMakeVis('visible','$num');  
     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;  
 uncheckLinkProtMakeVis('visible','$num');  
 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;  
 uncheckLinkProtMakeVis('visible','add');  
 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.');
Line 252  function changePage(formname,newphase) { Line 146  function changePage(formname,newphase) {
             return;              return;
         }          }
     }      }
     '.$instcode_check.$call_category_check.$linkprot_check.'      '.$instcode_check.$call_category_check.'
     formname.submit();      formname.submit();
 }'."\n";  }'."\n";
     if ($phase eq 'pickactions') {      if ($phase eq 'pickactions') {
         $js .= &Apache::lonhtmlcommon::color_picker();   $js .= &Apache::lonhtmlcommon::color_picker();
         $js .=          $js .=
             &Apache::lonhtmlcommon::set_form_elements({actions => 'checkbox'})."\n";              &Apache::lonhtmlcommon::set_form_elements({actions => 'checkbox'})."\n";
     } elsif ($phase eq 'display') {      } elsif ($phase eq 'display') {
         $js .= &Apache::lonhtmlcommon::color_picker();   $js .= &Apache::lonhtmlcommon::color_picker();
         $js .= &color_pick_js()."\n";          $js .= &color_pick_js()."\n";
     }      }
     $js .= &Apache::loncommon::viewport_size_js().'      $js .= &Apache::loncommon::viewport_size_js().'
Line 315  $jscript Line 209  $jscript
                     $onload .= "toggleEmailOptions(document.display,'cancreate_emailoptions','$hascustom',".                      $onload .= "toggleEmailOptions(document.display,'cancreate_emailoptions','$hascustom',".
                                                        "'cancreate_emaildomain','default');";                                                         "'cancreate_emaildomain','default');";
                 }                  }
             }              } 
             if (grep(/^contacts$/,@actions)) {              if (grep(/^contacts$/,@actions)) {
                 my $customclass = 'LC_helpdesk_override';                  my $customclass = 'LC_helpdesk_override';
                 my $optionsprefix = 'LC_options_helpdesk_';                  my $optionsprefix = 'LC_options_helpdesk_';
                 $onload .= "toggleHelpdeskRow(document.display,'overrides','$customclass','$optionsprefix');";                  $onload .= "toggleHelpdeskRow(document.display,'overrides','$customclass','$optionsprefix');";
             }              }
             if (grep(/^lti$/,@actions)) {              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');                  my %servers = &Apache::lonnet::get_servers($dom,'library');
                 foreach my $server (keys(%servers)) {                  foreach my $server (keys(%servers)) {
                     $onload .= "togglePrivKey(document.display,'$server');";                      $onload .= "togglePrivKey(document.display,'$server');";
Line 329  $jscript Line 244  $jscript
                 $onload .= "toggleLTIEncKey(document.display);";                  $onload .= "toggleLTIEncKey(document.display);";
             }              }
             if (grep(/^ltitools$/,@actions)) {              if (grep(/^ltitools$/,@actions)) {
                 $onload .= "toggleLTITools(document.display,'user','add');";                  $onload .= "toggleLTITools(document.display,'passback','add');".
                              "toggleLTITools(document.display,'roster','add');".
                              "toggleLTITools(document.display,'user','add');";
                 if (ref($values) eq 'HASH') {                  if (ref($values) eq 'HASH') {
                     if (ref($values->{'ltitools'}) eq 'HASH') {                      if (ref($values->{'ltitools'}) eq 'HASH') {
                         my $numltitools = scalar(keys(%{$values->{'ltitools'}}));                          my $numltitools = scalar(keys(%{$values->{'ltitools'}}));
                         for (my $i=0; $i<$numltitools; $i++) {                          for (my $i=0; $i<$numltitools; $i++) {
                             $onload .= "toggleLTITools(document.display,'user','$i');";                              $onload .= "toggleLTITools(document.display,'passback','$i');".
                                          "toggleLTITools(document.display,'roster','$i');".
                                          "toggleLTITools(document.display,'user','$i');";
                         }                          }
                     }                      }
                 }                  }
Line 342  $jscript Line 261  $jscript
             if (grep(/^wafproxy$/,@actions)) {              if (grep(/^wafproxy$/,@actions)) {
                 $onload .= "toggleWAF();checkWAF();updateWAF();";                  $onload .= "toggleWAF();checkWAF();updateWAF();";
             }              }
               if (grep(/^proctoring$/,@actions)) {
                   $onload .= "toggleProctoring(document.display,'proctorio');".
                              "toggleProctoring(document.display,'examity');";
               }
             if (grep(/^scantron$/,@actions)) {              if (grep(/^scantron$/,@actions)) {
                 $onload .= "toggleScantron(document.display);";                  $onload .= "toggleScantron(document.display);";
             }              }
Line 370  $jscript Line 293  $jscript
                     $onload = "courseSet('','load');toggleCloners(document.display.cloners_instcode);";                      $onload = "courseSet('','load');toggleCloners(document.display.cloners_instcode);";
                 }                  }
             }              }
             if (grep(/^linkprot$/,@actions)) {              if (grep(/^linkprotection$/,@actions)) {
                 if (ref($values) eq 'HASH') {                  if (ref($values) eq 'HASH') {
                     if (ref($values->{'linkprot'}) eq 'HASH') {                      if (ref($values->{'linkprotection'}) eq 'HASH') {
                         my $ltiauth;                          my $ltiauth;
                         if (exists($env{'course.'.$env{'request.course.id'}.'.internal.ltiauth'})) {                          if (exists($env{'course.'.$env{'request.course.id'}.'.internal.ltiauth'})) {
                             $ltiauth = $env{'course.'.$env{'request.course.id'}.'.internal.ltiauth'};                              $ltiauth = $env{'course.'.$env{'request.course.id'}.'.internal.ltiauth'};
Line 380  $jscript Line 303  $jscript
                             my %domdefs = &Apache::lonnet::get_domain_defaults($dom);                              my %domdefs = &Apache::lonnet::get_domain_defaults($dom);
                             $ltiauth = $domdefs{'crsltiauth'};                              $ltiauth = $domdefs{'crsltiauth'};
                         }                          }
                         my $ishome;                          my $posslti = scalar(keys(%{$values->{'linkprotection'}}));
                         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++) {                          for (my $i=0; $i<=$posslti; $i++) {
                             my $num = $i;                              my $num = $i;
                             if ($i == $posslti) {                              if ($i == $posslti) {
                                 $num = 'add';                                  $num = 'add';
                             }                              }
                             if (ref($values->{'linkprot'}->{$i}) eq 'HASH') {                              if (ref($values->{'linkprotection'}->{$i}) eq 'HASH') {
                                 if ($values->{'linkprot'}->{$i}->{'usable'}) {                                  if ($values->{'linkprotection'}->{$i}->{'usable'}) {
                                     $onload .= "toggleLinkProt(document.display,'$num','secret');";                                      $onload .= "toggleLTI(document.display,'$num','secret');";
                                 }                                  }
                             }                              }
                             if ($ltiauth) {                              if ($ltiauth) {
                                 $onload .= "toggleLinkProtReqUser(document.display,'requser','optional','1','block','$num');".                                  $onload .= "toggleLTIReqUser(document.display,'requser','optional','1','block','$num');".
                                            "toggleLinkProtReqUser(document.display,'mapuser','userfield','other','inline-block','$num');";                                             "toggleLTIReqUser(document.display,'mapuser','userfield','other','inline-block','$num');";
                             }  
                             if ($ishome) {  
                                 $onload .= "uncheckLinkProtMakeVis('visible','$num');";  
                             }                              }
                         }                          }
                     }                      }
Line 425  $jscript Line 339  $jscript
 <input type="hidden" name="pres_value" />  <input type="hidden" name="pres_value" />
 </form>  </form>
 ');  ');
       if ($container) {
          &Apache::lonparmset::startSettingsScreen($r,$container,$crstype);
       }
     $r->print('<form method="post" name="'.$phase.'" action="'.$action.'"'.      $r->print('<form method="post" name="'.$phase.'" action="'.$action.'"'.
               ' enctype="multipart/form-data">');                ' enctype="multipart/form-data">');
     return;      return;
Line 465  sub print_footer { Line 382  sub print_footer {
         if ($showbutton) {          if ($showbutton) {
             $r->print('<p><input type="button" name="store" value="'.              $r->print('<p><input type="button" name="store" value="'.
                       $button_text.'" onclick='.$onclick.' /></p>');                        $button_text.'" onclick='.$onclick.' /></p>');
         }          } 
     }      }
     if ($phase eq 'process') {      if ($phase eq 'process') {
         $r->print('</form>');          $r->print('</form>');
           if ($container) {
              &Apache::lonparmset::endSettingsScreen($r);
           }
         $r->print(&Apache::loncommon::end_page());          $r->print(&Apache::loncommon::end_page());
     }      }
     return;      return;
Line 503  sub make_changes { Line 423  sub make_changes {
                     $errors =                      $errors =
                         &Apache::courseprefs::process_changes($dom,$confname,$item,$values,                          &Apache::courseprefs::process_changes($dom,$confname,$item,$values,
                                                               $prefs->{$item},$changes{$item},                                                                $prefs->{$item},$changes{$item},
                                                               $allitems,\%disallowed,$crstype,                                                                $allitems,\%disallowed,$crstype);
                                                               \%lastact);  
                     if (keys(%{$changes{$item}}) > 0) {                      if (keys(%{$changes{$item}}) > 0) {
                         $numchanged ++;                          $numchanged ++;
                     }                      }
Line 562  sub display_settings { Line 481  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,$dom,$confname,$values);      &print_header($r,$phase,$context,$jscript,$container,$instcode,$dom,$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);
                     if ($context eq 'domain') {                      if ($context eq 'domain') {
                         my $settings;                          my $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 598  sub display_settings { Line 520  sub display_settings {
                                 my $inststatus = {                                  my $inststatus = {
                                                    inststatustypes => $usertypes,                                                     inststatustypes => $usertypes,
                                                    inststatusorder => $types,                                                     inststatusorder => $types,
                                                    inststatusguest => [],                                                     inststatusguest => [], 
                                                  };                                                   };
                                 if (ref($values->{defaults}) eq 'HASH') {                                  if (ref($values->{defaults}) eq 'HASH') {
                                     $settings = {%{$inststatus},%{$values->{'defaults'}}};                                      $settings = {%{$inststatus},%{$values->{'defaults'}}};
Line 608  sub display_settings { Line 530  sub display_settings {
                             }                              }
                         } elsif ($item eq 'lti') {                          } elsif ($item eq 'lti') {
                             if (ref($values->{'ltisec'}) eq 'HASH') {                              if (ref($values->{'ltisec'}) eq 'HASH') {
                                 $settings = $values->{'ltisec'};                                  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}) =
Line 635  sub display_settings { Line 563  sub display_settings {
         }          }
         $r->print('</form>');          $r->print('</form>');
     }      }
       if ($container) {
           &Apache::lonparmset::endSettingsScreen($r);
       }
     $r->print(&Apache::loncommon::end_page());      $r->print(&Apache::loncommon::end_page());
     return;      return;
 }  }
Line 697  sub display_choices { Line 628  sub display_choices {
     $r->print('</div><div style="padding:0;clear:both;margin:0;border:0"></div>');      $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(&print_footer($r,$phase,'display','Display',undef,$container,$parm_permission));
     $r->print('</form>');      $r->print('</form>');
       if ($container) {
           &Apache::lonparmset::endSettingsScreen($r);
       }
     $r->print(&Apache::loncommon::end_page());      $r->print(&Apache::loncommon::end_page());
     return;      return;
 }  }

Removed from v.1.21.4.13.2.6  
changed lines
  Added in v.1.58


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