Diff for /loncom/interface/lonsyllabus.pm between versions 1.67 and 1.68

version 1.67, 2008/08/25 14:50:01 version 1.68, 2008/10/22 08:56:35
Line 179  ENDSCRIPT Line 179  ENDSCRIPT
 # -------------------------------------------------------- Get course personnel  # -------------------------------------------------------- Get course personnel
     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);      my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
     if ($target ne 'tex') {      if ($target ne 'tex') {
  $r->print(&Apache::loncommon::start_data_table());   $r->print(&Apache::lonhtmlcommon::start_pick_box());
     } else {      } else {
  $r->print('\begin{tabular}{|p{0.45\textwidth}|p{0.45\textwidth}|}\hline');   $r->print('\begin{tabular}{|p{0.45\textwidth}|p{0.45\textwidth}|}\hline');
     }      }
     foreach my $element (sort keys %coursepersonnel) {      foreach my $element (sort keys %coursepersonnel) {
  if ($target ne 'tex') {   if ($target ne 'tex') {
     $r->print(&Apache::loncommon::start_data_table_row().      $r->print(&Apache::lonhtmlcommon::row_title($element));
       '<td>'.$element.'</td><td>');  
  } else {   } else {
     $r->print(' '.&Apache::lonxml::xmlparse($r,'tex',$element).' & ');       $r->print(' '.&Apache::lonxml::xmlparse($r,'tex',$element).' & '); 
  }   }
Line 207  ENDSCRIPT Line 206  ENDSCRIPT
     }      }
  }   }
  if ($target ne 'tex') {   if ($target ne 'tex') {
     $r->print('</td>'.&Apache::loncommon::end_data_table_row());      $r->print(&Apache::lonhtmlcommon::row_closure());
  } else {   } else {
     $r->print('\\\\ \hline');      $r->print('\\\\ \hline');
  }   }
     }      }
     if ($target ne 'tex') {      if ($target ne 'tex') {
  $r->print(&Apache::loncommon::end_data_table());   $r->print(&Apache::lonhtmlcommon::end_pick_box());
     } else {      } else {
  $r->print('\end{tabular}\\\\');   $r->print('\end{tabular}\\\\');
     }      }

Removed from v.1.67  
changed lines
  Added in v.1.68


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