Diff for /loncom/interface/Attic/londropadd.pm between versions 1.128 and 1.130

version 1.128, 2005/04/07 07:34:52 version 1.130, 2005/06/03 16:27:26
Line 607  sub print_upload_manager_footer { Line 607  sub print_upload_manager_footer {
     $Str .= '<h3>'.&mt('Login Type')."</h3>\n";      $Str .= '<h3>'.&mt('Login Type')."</h3>\n";
     $Str .= "<p>\n".      $Str .= "<p>\n".
         &mt('Note: this will not take effect if the user already exists').          &mt('Note: this will not take effect if the user already exists').
    &Apache::loncommon::help_open_topic('Auth_Options').
         "</p><p>\n";          "</p><p>\n";
     $Str .= $krbform."\n</p><p>\n".      $Str .= $krbform."\n</p><p>\n".
         $intform."\n</p><p>\n".          $intform."\n</p><p>\n".
Line 986  sub print_enroll_single_student_form { Line 987  sub print_enroll_single_student_form {
        'psam' => "Please select an authentication mechanism",         'psam' => "Please select an authentication mechanism",
                        'mail' => "Email Address"                         'mail' => "Email Address"
    );     );
    my $authhelp=&Apache::loncommon::help_open_topic('Auth_Options');
         $user_data_html = <<END;          $user_data_html = <<END;
 <h3>$lt{'udf'} $username\@$domain</h3>  <h3>$lt{'udf'} $username\@$domain</h3>
 <table>  <table>
Line 1003  sub print_enroll_single_student_form { Line 1005  sub print_enroll_single_student_form {
     <td><input type="text" name="emailaddress" size="20" /></td></tr>      <td><input type="text" name="emailaddress" size="20" /></td></tr>
 </table>  </table>
 <h3>$lt{'pswd'}</h3>  <h3>$lt{'pswd'}</h3>
 $lt{'psam'}  $lt{'psam'}$authhelp
 <table>  <table>
 <p>  <p>
 $krbform  $krbform
Line 1460  END Line 1462  END
                                           $name,$section]);                                            $name,$section]);
             my $col = 5;              my $col = 5;
             foreach my $time ($start,$end) {              foreach my $time ($start,$end) {
                 $excel_sheet->write($row,$col++,                  if (defined($time) && $time != 0) {
                       $excel_sheet->write($row,$col++,
                                    &Apache::lonstathelpers::calc_serial($time),                                     &Apache::lonstathelpers::calc_serial($time),
                                     $format->{'date'});                                      $format->{'date'});
                   } else {
                       $excel_sheet->write($row,$col++,'none');
                   }                    
             }              }
             $excel_sheet->write($row,$col++,$status);              $excel_sheet->write($row,$col++,$status);
             $row++;              $row++;

Removed from v.1.128  
changed lines
  Added in v.1.130


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