Diff for /loncom/interface/lonconfigsettings.pm between versions 1.21.4.6 and 1.27

version 1.21.4.6, 2014/04/23 10:26:37 version 1.27, 2013/10/06 21:25:59
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();
   
 sub print_header {  sub print_header {
     my ($r,$phase,$context,$jscript,$container) = @_;      my ($r,$phase,$context,$jscript,$container) = @_;
Line 94  function changePage(formname,newphase) { Line 95  function changePage(formname,newphase) {
     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 129  $jscript Line 130  $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 165  sub print_footer { Line 169  sub print_footer {
     }      }
     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 258  sub display_settings { Line 265  sub display_settings {
                 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;  
                         if (ref($values) eq 'HASH') {  
                             $settings = $values->{$item};  
                         }  
                         if ($item eq 'usersessions') {                          if ($item eq 'usersessions') {
                             $r->print('<script type="text/javascript">'."\n".                              $r->print('<script type="text/javascript">'."\n".
                                       '// <![CDATA['."\n".                                        '// <![CDATA['."\n".
                                       &Apache::loncommon::check_uncheck_jscript()."\n".                                        &Apache::loncommon::check_uncheck_jscript()."\n".
                                       '// ]]>'."\n".                                        '// ]]>'."\n".
                                       '</script>'."\n");                                        '</script>'."\n");
                         } elsif ($item eq 'selfcreation') {  
                             if (ref($values) eq 'HASH') {  
                                 $settings = $values->{'usercreation'};  
                             }  
                         } elsif ($item eq 'defaults') {  
                             if (ref($values->{'inststatus'}) eq 'HASH') {  
                                 if (ref($values->{'defaults'}) eq 'HASH') {  
                                     $settings = {%{$values->{'inststatus'}},%{$values->{'defaults'}}};  
                                 } else {  
                                     $settings = $values->{'inststatus'};  
                                 }  
                             } else {  
                                 my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);  
                                 my $inststatus = {  
                                                    inststatustypes => $usertypes,  
                                                    inststatusorder => $types,  
                                                    inststatusguest => [],  
                                                  };  
                                 if (ref($values->{defaults}) eq 'HASH') {  
                                     $settings = {%{$inststatus},%{$values->{'defaults'}}};  
                                 } else {  
                                     $settings = $inststatus;  
                                 }  
                             }  
                         }                          }
                         ($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},$values->{$item});
                     } 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,$phase,
Line 317  sub display_settings { Line 296  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 373  sub display_choices { Line 355  sub display_choices {
     }      }
     $r->print(&print_footer($r,$phase,'display','Display',undef,$container));      $r->print(&print_footer($r,$phase,'display','Display',undef,$container));
     $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.6  
changed lines
  Added in v.1.27


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