Diff for /loncom/interface/lonconfigsettings.pm between versions 1.21.4.13.2.2 and 1.21.4.13.2.3

version 1.21.4.13.2.2, 2022/02/07 12:00:27 version 1.21.4.13.2.3, 2022/02/20 19:43:12
Line 39  use Apache::courseclassifier(); Line 39  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,$values) = @_;      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 115  sub print_header { Line 115  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 = '';
   ENDJS
                       if (@changeable) {
                           foreach my $num (@changeable) {
                               ($numrules,$intargjs) =
                                   &Apache::loncommon::passwd_validation_js('secretinput',$dom,'linkprot',$num);
                               if ($numrules) {
                                   $linkprot_check .= <<ENDJS;
   
   linkprotradio = document.display.elements['linkprot_changesecret_$num'];
   secretinput = document.display.elements['linkprot_secret_$num'].value;
   if (linkprotradio.length) {
       for (var i=0; i<linkprotradio.length; i++) {
           if (linkprotradio[i].checked) {
               if (linkprotradio[i].value == 1) {
                   $intargjs
               }
           }
       }
   }
   ENDJS
                               }
                           }
                       }
                       if (@settable) {
                           foreach my $num (@changeable) {
                               ($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
                               }
                           }
                       }
                       ($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
                       }
                   }
               }
         }          }
     }      }
     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 145  function changePage(formname,newphase) { Line 224  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 256  $jscript Line 335  $jscript
                     $onload = "courseSet('','load');toggleCloners(document.display.cloners_instcode);";                      $onload = "courseSet('','load');toggleCloners(document.display.cloners_instcode);";
                 }                  }
             }              }
             if (grep(/^linkprotection$/,@actions)) {              if (grep(/^linkprot$/,@actions)) {
                 if (ref($values) eq 'HASH') {                  if (ref($values) eq 'HASH') {
                     if (ref($values->{'linkprotection'}) eq 'HASH') {                      if (ref($values->{'linkprot'}) 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 266  $jscript Line 345  $jscript
                             my %domdefs = &Apache::lonnet::get_domain_defaults($dom);                              my %domdefs = &Apache::lonnet::get_domain_defaults($dom);
                             $ltiauth = $domdefs{'crsltiauth'};                              $ltiauth = $domdefs{'crsltiauth'};
                         }                          }
                         my $posslti = scalar(keys(%{$values->{'linkprotection'}}));                          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->{'linkprotection'}->{$i}) eq 'HASH') {                              if (ref($values->{'linkprot'}->{$i}) eq 'HASH') {
                                 if ($values->{'linkprotection'}->{$i}->{'usable'}) {                                  if ($values->{'linkprot'}->{$i}->{'usable'}) {
                                     $onload .= "toggleLTI(document.display,'$num','secret');";                                      $onload .= "toggleLinkProt(document.display,'$num','secret');";
                                 }                                  }
                             }                              }
                             if ($ltiauth) {                              if ($ltiauth) {
                                 $onload .= "toggleLTIReqUser(document.display,'requser','optional','1','block','$num');".                                  $onload .= "toggleLinkProtReqUser(document.display,'requser','optional','1','block','$num');".
                                            "toggleLTIReqUser(document.display,'mapuser','userfield','other','inline-block','$num');";                                             "toggleLinkProtReqUser(document.display,'mapuser','userfield','other','inline-block','$num');";
                             }                              }
                         }                          }
                     }                      }
Line 438  sub display_settings { Line 517  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,$values);      &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) {

Removed from v.1.21.4.13.2.2  
changed lines
  Added in v.1.21.4.13.2.3


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