Diff for /loncom/interface/domainprefs.pm between versions 1.19 and 1.22

version 1.19, 2007/06/01 05:48:23 version 1.22, 2007/06/07 23:36:32
Line 133  sub handler { Line 133  sub handler {
         my %helphash;             my %helphash;   
         my $numprefs = @prefs;          my $numprefs = @prefs;
         &print_header($r,$phase);          &print_header($r,$phase);
           if (keys(%domconfig) == 0) {
               my $primarylibserv = &Apache::lonnet::domain($dom,'primary');
               my $perlvarref = &LONCAPA::Configuration::read_conf('loncapa.conf');
               my $hostid = $perlvarref->{'lonHostID'};
               if ($hostid ne $primarylibserv) {
                   my %designhash = &Apache::loncommon::get_domainconf($dom);
                   my @loginimages = ('img','logo','domlogo');
                   my $custom_img_count = 0;
                   foreach my $img (@loginimages) {
                       if ($designhash{$dom.'.login.'.$img} ne '') {
                           $custom_img_count ++;
                       }
                   }
                   foreach my $role (@roles) {
                       if ($designhash{$dom.'.'.$role.'.img'} ne '') {
                           $custom_img_count ++;
                       }
                   }
                   if ($custom_img_count > 0) {
                       my $switch_server = &check_switchserver($dom,$confname);
                       $r->print(&mt('Domain configuration settings have yet to be saved for this domain via the web-based domain preferences interface.').'<br />'.&mt("While this remains so, you must switch to the domain's primary library server in order to update settings.").'<br /><br />'.&mt("Thereafter, you will be able to update settings from this screen when logged in to any server in the LON-CAPA network (with a DC role selected in the domain), although you will still need to switch to the domain's primary library server to upload new images or logos.").'<br /><br />'.$switch_server.' '.&mt('to primary library server for domain: [_1]',$dom));
                       return OK;
                   }
               }
           }
         $r->print('<table border="0" width="100%" cellpadding="2" cellspacing="4"><tr><td align="left" valign="top" width="45%">');          $r->print('<table border="0" width="100%" cellpadding="2" cellspacing="4"><tr><td align="left" valign="top" width="45%">');
         foreach my $item (@prefs) {          foreach my $item (@prefs) {
             if ($item->{'action'} eq 'login') {              if ($item->{'action'} eq 'login') {
Line 173  sub print_config_box { Line 198  sub print_config_box {
     $r->print('      $r->print('
          <table class="LC_nested_outer">           <table class="LC_nested_outer">
           <tr>            <tr>
            <th>'.&mt($item->{text}).'&nbsp;'.             <th>'.&mt($item->{text}).'&nbsp;</th></tr>');
            &Apache::loncommon::help_open_topic($item->{'help'}).'</th>  # 
           </tr>');  # FIXME - put the help link back in when the help files exist
   #           <th>'.&mt($item->{text}).'&nbsp;'.
   #           &Apache::loncommon::help_open_topic($item->{'help'}).'</th>
   #          </tr>');
     if (($action eq 'autoupdate') || ($action eq 'rolecolors')) {      if (($action eq 'autoupdate') || ($action eq 'rolecolors')) {
         my $colspan = ($action eq 'rolecolors')?' colspan="2"':'';          my $colspan = ($action eq 'rolecolors')?' colspan="2"':'';
         $r->print('          $r->print('
Line 853  sub print_autoupdate { Line 881  sub print_autoupdate {
         if (keys(%{$usertypes}) > 0) {          if (keys(%{$usertypes}) > 0) {
             $othertitle = &mt('Other users');              $othertitle = &mt('Other users');
         }          }
         my @fields = ('lastname','firstname','middlename','gen','email','id');          my @fields = ('lastname','firstname','middlename','gen',
                         'permanentemail','id');
         my %fieldtitles = &Apache::lonlocal::texthash (          my %fieldtitles = &Apache::lonlocal::texthash (
                             id => 'Student/Employee ID',                              id => 'Student/Employee ID',
                             email => 'E-mail address',                              permanentemail => 'E-mail address',
                             lastname => 'Last Name',                              lastname => 'Last Name',
                             firstname => 'First Name',                              firstname => 'First Name',
                             middlename => 'Middle Name',                              middlename => 'Middle Name',
Line 1267  sub check_dimensions { Line 1296  sub check_dimensions {
             }              }
             chomp($imageinfo);              chomp($imageinfo);
             my ($fullsize) =               my ($fullsize) = 
                 ($imageinfo =~ /^\Q$inputfile\E\s+\w+\s+(\d+x\d+)\s+/);                  ($imageinfo =~ /^\Q$inputfile\E\s+\w+\s+(\d+x\d+)/);
             if ($fullsize) {              if ($fullsize) {
                 ($fullwidth,$fullheight) = split(/x/,$fullsize);                  ($fullwidth,$fullheight) = split(/x/,$fullsize);
             }              }
Line 1661  sub modify_autoupdate { Line 1690  sub modify_autoupdate {
     my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($dom);      my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($dom);
     my %fieldtitles = &Apache::lonlocal::texthash (      my %fieldtitles = &Apache::lonlocal::texthash (
                         id => 'Student/Employee ID',                          id => 'Student/Employee ID',
                         email => 'E-mail address',                          permanentemail => 'E-mail address',
                         lastname => 'Last Name',                          lastname => 'Last Name',
                         firstname => 'First Name',                          firstname => 'First Name',
                         middlename => 'Middle Name',                          middlename => 'Middle Name',

Removed from v.1.19  
changed lines
  Added in v.1.22


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