Diff for /loncom/interface/Attic/londropadd.pm between versions 1.109 and 1.110

version 1.109, 2004/05/12 20:04:57 version 1.110, 2004/05/13 21:03:16
Line 37  use Apache::loncommon(); Line 37  use Apache::loncommon();
 use Apache::lonhtmlcommon();  use Apache::lonhtmlcommon();
 use Apache::Constants qw(:common :http REDIRECT);  use Apache::Constants qw(:common :http REDIRECT);
 use Spreadsheet::WriteExcel;  use Spreadsheet::WriteExcel;
   use Apache::lonstathelpers();
 use Apache::lonlocal;  use Apache::lonlocal;
   
 ###############################################################  ###############################################################
Line 1115  sub print_html_classlist { Line 1116  sub print_html_classlist {
     #      #
     # List course personnel      # List course personnel
     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);      my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
       #
       if (! defined($ENV{'form.output'}) ||
           $ENV{'form.output'} !~ /^(csv|excel|html)$/ ) {
           $ENV{'form.output'} = 'html';
       }
       #
     $r->print('<br /><table border="2">');      $r->print('<br /><table border="2">');
     foreach (sort keys %coursepersonnel) {      foreach my $role (sort keys %coursepersonnel) {
  $r->print('<tr><td>'.$_.'</td><td>');          next if ($role =~ /^\s*$/);
         foreach (split(/\,/,$coursepersonnel{$_})) {   $r->print('<tr><td>'.$role.'</td><td>');
     my ($puname,$pudom)=split(/\:/,$_);          foreach my $user (split(',',$coursepersonnel{$role})) {
       my ($puname,$pudom)=split(':',$user);
     $r->print(' '.&Apache::loncommon::aboutmewrapper(      $r->print(' '.&Apache::loncommon::aboutmewrapper(
                           &Apache::loncommon::plainname($puname,                                      &Apache::loncommon::plainname($puname,
                           $pudom),$puname,$pudom));                                                                    $pudom),
                                                                $puname,$pudom));
  }   }
         $r->print('</td></tr>');          $r->print('</td></tr>');
     }      }
     $r->print('</table>');      $r->print('</table>');
     #      #
     # Interface output      # Interface output
     my $CCL=&mt('Current Class List');  
     $r->print('<input type="hidden" name="action" value="'.      $r->print('<input type="hidden" name="action" value="'.
               $ENV{'form.action'}.'" />');                $ENV{'form.action'}.'" />');
     $r->print("<p>\n");      $r->print("<p>\n");
Line 1137  sub print_html_classlist { Line 1145  sub print_html_classlist {
  my %lt=&Apache::lonlocal::texthash('csv' => "CSV",   my %lt=&Apache::lonlocal::texthash('csv' => "CSV",
                                            'excel' => "Excel",                                             'excel' => "Excel",
                                            'html'  => 'HTML');                                             'html'  => 'HTML');
         $r->print('<font size="+1">');          my $output_selector = '<select size="1" name="output" >';
         my $output_selector = '<select size="1" name="state" >';  
         if ($ENV{'form.state'} !~ /^(csv|excel|html)$/ ) {  
             $ENV{'form.state'} = 'html';  
         }  
         foreach my $outputformat ('html','csv','excel') {          foreach my $outputformat ('html','csv','excel') {
             my $option = '<option value="'.$outputformat.'" ';              my $option = '<option value="'.$outputformat.'" ';
             if ($outputformat eq $ENV{'form.state'}) {              if ($outputformat eq $ENV{'form.output'}) {
                 $option .= 'selected ';                  $option .= 'selected ';
             }              }
             $option .='>'.$lt{$outputformat}.'</option>';              $option .='>'.$lt{$outputformat}.'</option>';
Line 1156  sub print_html_classlist { Line 1160  sub print_html_classlist {
     $r->print(&mt('Student Status: [_1]',$status_select)."\n");      $r->print(&mt('Student Status: [_1]',$status_select)."\n");
     $r->print('<input type="submit" value="'.&mt('Update Display').'" />'.      $r->print('<input type="submit" value="'.&mt('Update Display').'" />'.
               "\n</p>\n");                "\n</p>\n");
   
     #      #
     # Print the classlist      # Print the classlist
     $r->print('<h2>'.&mt('Current Class List').'</h2>');      $r->print('<h2>'.&mt('Current Class List').'</h2>');
Line 1166  sub print_html_classlist { Line 1169  sub print_html_classlist {
     } else {      } else {
         # Print out the available choices          # Print out the available choices
         if ($ENV{'form.action'} eq 'modifystudent') {          if ($ENV{'form.action'} eq 'modifystudent') {
             &show_class_list($r,'view','modify','modifystudent',              &show_class_list($r,'view','modify',
                              $ENV{'form.Status'},$classlist,$keylist);  
         } elsif (! defined($mode) || $mode eq '') {  
             &show_class_list($r,'view','aboutme','classlist',  
                              $ENV{'form.Status'},$classlist,$keylist);                               $ENV{'form.Status'},$classlist,$keylist);
         } elsif ($mode eq 'csv' || $mode eq 'excel') {          } else {
             &show_class_list($r,$mode,'nolink','csv',            &Apache::lonnet::logthis('showing class list '.$ENV{'form.output'});
   
               &show_class_list($r,$ENV{'form.output'},'aboutme',
                              $ENV{'form.Status'},$classlist,$keylist);                               $ENV{'form.Status'},$classlist,$keylist);
         }          }
     }      }
Line 1180  sub print_html_classlist { Line 1182  sub print_html_classlist {
   
 # =================================================== Show student list to drop  # =================================================== Show student list to drop
 sub show_class_list {  sub show_class_list {
     my ($r,$mode,$linkto,$action,$statusmode,$classlist,$keylist)=@_;      my ($r,$mode,$linkto,$statusmode,$classlist,$keylist)=@_;
     my $cid=$ENV{'request.course.id'};      my $cid=$ENV{'request.course.id'};
     #      #
     # Variables for excel output      # Variables for excel output
Line 1190  sub show_class_list { Line 1192  sub show_class_list {
     my ($CSVfile,$CSVfilename);      my ($CSVfile,$CSVfilename);
     #      #
     my $sortby = $ENV{'form.sortby'};      my $sortby = $ENV{'form.sortby'};
     if ($sortby !~ /^(username|domain|section|fullname|id)$/) {      if ($sortby !~ /^(username|domain|section|fullname|id|start|end)$/) {
         $sortby = 'username';          $sortby = 'username';
     }      }
     # Print out header       # Print out header 
Line 1199  sub show_class_list { Line 1201  sub show_class_list {
 <input type="hidden" name="state" value="$ENV{'form.state'}" />  <input type="hidden" name="state" value="$ENV{'form.state'}" />
 <input type="hidden" name="sortby" value="$sortby" />  <input type="hidden" name="sortby" value="$sortby" />
 END  END
     if ($mode eq 'view') {      if ($mode eq 'html' || $mode eq 'view') {
         if ($linkto eq 'aboutme') {          if ($linkto eq 'aboutme') {
             $r->print(&mt('Select a user name to view the users personal page.'));              $r->print(&mt('Select a user name to view the users personal page.'));
         } elsif ($linkto eq 'modify') {          } elsif ($linkto eq 'modify') {
             $r->print(&mt('Select a user name to modify the students information'));              $r->print(&mt('Select a user name to modify the students information'));
         }          }
  my %lt=&Apache::lonlocal::texthash(   my %lt=&Apache::lonlocal::texthash(
                'usrn'   => "username",                                             'usrn'   => "username",
                        'dom'    => "domain",                                             'dom'    => "domain",
                        'sn'     => "student name",                                             'sn'     => "student name",
                        'sec'    => "section",                                             'sec'    => "section",
                                              'start'  => "start date",
                                              'end'    => "end date",
    );     );
         $r->print(<<END);          $r->print(<<END);
 <input type="hidden" name="sname"  value="" />  <input type="hidden" name="sname"  value="" />
Line 1227  END Line 1231  END
        <a href="javascript:document.studentform.sortby.value='fullname';document.studentform.submit();">$lt{'sn'}</a>         <a href="javascript:document.studentform.sortby.value='fullname';document.studentform.submit();">$lt{'sn'}</a>
     </th><th>      </th><th>
        <a href="javascript:document.studentform.sortby.value='section';document.studentform.submit();">$lt{'sec'}</a>         <a href="javascript:document.studentform.sortby.value='section';document.studentform.submit();">$lt{'sec'}</a>
       </th><th>
          <a href="javascript:document.studentform.sortby.value='start';document.studentform.submit();">$lt{'start'}</a>
       </th><th>
          <a href="javascript:document.studentform.sortby.value='end';document.studentform.submit();">$lt{'end'}</a>
     </th>      </th>
 </tr>  </tr>
 END  END
Line 1252  END Line 1260  END
             print $CSVfile '"'.join('","',map {              print $CSVfile '"'.join('","',map {
  &Apache::loncommon::csv_translate(&mt($_))   &Apache::loncommon::csv_translate(&mt($_))
                 } ("username","domain","ID","student name",                  } ("username","domain","ID","student name",
                    "section","status")).'"'."\n";                     "section","start date","end date","status")).'"'."\n";
         } else {          } else {
             print $CSVfile '"'.join('","',map {              print $CSVfile '"'.join('","',map {
  &Apache::loncommon::csv_translate(&mt($_))   &Apache::loncommon::csv_translate(&mt($_))
                 } ("username","domain","ID","student name",                  } ("username","domain","ID","student name",
                    "section")).'"'."\n";                     "section","start date","end date")).'"'."\n";
         }          }
     } elsif ($mode eq 'excel') {      } elsif ($mode eq 'excel') {
         # Create the excel spreadsheet          # Create the excel spreadsheet
Line 1276  END Line 1284  END
         $excel_sheet->write($row++,0,$description,$format->{'h1'});          $excel_sheet->write($row++,0,$description,$format->{'h1'});
         #          #
         $excel_sheet->write($row++,0,["username","domain","ID",          $excel_sheet->write($row++,0,["username","domain","ID",
                                       "student name","section","status"],$format->{'bold'});                                        "student name","section",
                                         "start date","end date","status"],
                               $format->{'bold'});
     }      }
     #      #
     # Sort the students      # Sort the students
Line 1297  END Line 1307  END
         } (keys(%$classlist));          } (keys(%$classlist));
     my $studentcount = 0;      my $studentcount = 0;
     foreach my $student (@Sorted_Students) {      foreach my $student (@Sorted_Students) {
         my $username = $classlist->{$student}->[$index{'username'}];          my $sdata = $classlist->{$student};
         my $domain   = $classlist->{$student}->[$index{'domain'}];          my $username = $sdata->[$index{'username'}];
         my $section  = $classlist->{$student}->[$index{'section'}];          my $domain   = $sdata->[$index{'domain'}];
         my $name     = $classlist->{$student}->[$index{'fullname'}];          my $section  = $sdata->[$index{'section'}];
         my $id       = $classlist->{$student}->[$index{'id'}];          my $name     = $sdata->[$index{'fullname'}];
         my $status   = $classlist->{$student}->[$index{'status'}];          my $id       = $sdata->[$index{'id'}];
           my $status   = $sdata->[$index{'status'}];
           my $start    = $sdata->[$index{'start'}];
           my $end      = $sdata->[$index{'end'}];
         next if (($statusmode ne 'Any') && ($status ne $statusmode));          next if (($statusmode ne 'Any') && ($status ne $statusmode));
         if ($mode eq 'view') {          if ($mode eq 'view' || $mode eq 'html') {
               $start = &Apache::lonlocal::locallocaltime($start);
               $end   = &Apache::lonlocal::locallocaltime($end);
             $r->print("<tr>\n    <td>".(++$studentcount)."</td><td>\n    ");              $r->print("<tr>\n    <td>".(++$studentcount)."</td><td>\n    ");
             if ($linkto eq 'nothing') {              if ($linkto eq 'nothing') {
                 $r->print($username);                  $r->print($username);
Line 1327  END Line 1342  END
     <td>$id</td>      <td>$id</td>
     <td>$name</td>      <td>$name</td>
     <td>$section</td>      <td>$section</td>
       <td>$start</td>
       <td>$end</td>
 </tr>  </tr>
 END  END
         } elsif ($mode eq 'csv') {          } elsif ($mode eq 'csv') {
             next if (! defined($CSVfile));              next if (! defined($CSVfile));
             # no need to bother with $linkto              # no need to bother with $linkto
               $start = &Apache::lonlocal::locallocaltime($start);
               $end   = &Apache::lonlocal::locallocaltime($end);
             my @line = ();              my @line = ();
             foreach ($username,$domain,$id,$name,$section) {              foreach ($username,$domain,$id,$name,$section,$start,$end) {
                 push @line,&Apache::loncommon::csv_translate($_);                  push @line,&Apache::loncommon::csv_translate($_);
             }              }
             if ($statusmode eq 'Any') {              if ($statusmode eq 'Any') {
Line 1341  END Line 1360  END
             }              }
             print $CSVfile '"'.join('","',@line).'"'."\n";              print $CSVfile '"'.join('","',@line).'"'."\n";
         } elsif ($mode eq 'excel') {          } elsif ($mode eq 'excel') {
             $excel_sheet->write($row++,0,[$username,$domain,$id,              $excel_sheet->write($row,0,[$username,$domain,$id,
                                           $name,$section,$status]);                                            $name,$section]);
               my $col = 5;
               foreach my $time ($start,$end) {
                   $excel_sheet->write($row,$col++,
                                      &Apache::lonstathelpers::calc_serial($time),
                                       $format->{'date'});
               }
               $excel_sheet->write($row,$col++,$status);
               $row++;
         }          }
     }      }
     if ($mode eq 'view') {      if ($mode eq 'view' || $mode eq 'html') {
         $r->print('</table><br>');          $r->print('</table><br>');
     } elsif ($mode eq 'excel') {      } elsif ($mode eq 'excel') {
         $excel_workbook->close();          $excel_workbook->close();
Line 1692  sub show_drop_list { Line 1719  sub show_drop_list {
                                                 ['sortby']);                                                  ['sortby']);
     }      }
     my $sortby = $ENV{'form.sortby'};      my $sortby = $ENV{'form.sortby'};
     if ($sortby !~ /^(username|domain|section|fullname|id)$/) {      if ($sortby !~ /^(username|domain|section|fullname|id|start|end)$/) {
         $sortby = 'username';          $sortby = 'username';
     }      }
     #      #
Line 1716  function uncheckAll(field) { Line 1743  function uncheckAll(field) {
 <input type="hidden" name="phase" value="four">  <input type="hidden" name="phase" value="four">
 END  END
   
   my %lt=&Apache::lonlocal::texthash('usrn'   => "username",
                                      'dom'    => "domain",
                                      'sn'     => "student name",
                                      'sec'    => "section",
                                      'start'  => "start date",
                                      'end'    => "end date",
                                      );
     if ($nosort) {      if ($nosort) {
  my %lt=&Apache::lonlocal::texthash(  
                'usrn'   => "username",  
                        'dom'    => "domain",  
                        'sn'     => "student name",  
                        'sec'    => "section",  
    );  
         $r->print(<<END);          $r->print(<<END);
 <table border=2>  <table border=2>
 <tr>  <tr>
Line 1732  END Line 1760  END
     <th>ID</th>      <th>ID</th>
     <th>$lt{'sn'}</th>      <th>$lt{'sn'}</th>
     <th>$lt{'sec'}</th>      <th>$lt{'sec'}</th>
       <th>$lt{'start'}</th>
       <th>$lt{'end'}</th>
 </tr>  </tr>
 END  END
   
     } else  {      } else  {
  my %lt=&Apache::lonlocal::texthash(  
                'usrn'   => "username",  
                        'dom'    => "domain",  
                        'sn'     => "student name",  
                        'sec'    => "section",  
    );  
         $r->print(<<END);          $r->print(<<END);
 <table border=2>  <table border=2>
 <tr><th>&nbsp;</th>  <tr><th>&nbsp;</th>
Line 1755  END Line 1779  END
        <a href="/adm/dropadd?action=$action&sortby=fullname">$lt{'sn'}</a>         <a href="/adm/dropadd?action=$action&sortby=fullname">$lt{'sn'}</a>
     </th><th>      </th><th>
        <a href="/adm/dropadd?action=$action&sortby=section">$lt{'sec'}</a>         <a href="/adm/dropadd?action=$action&sortby=section">$lt{'sec'}</a>
       </th><th>
          <a href="/adm/dropadd?action=$action&sortby=start">$lt{'start'}</a>
       </th><th>
          <a href="/adm/dropadd?action=$action&sortby=end">$lt{'end'}</a>
     </th>      </th>
 </tr>  </tr>
 END  END
Line 1778  END Line 1806  END
         } (keys(%$classlist));          } (keys(%$classlist));
     foreach my $student (@Sorted_Students) {      foreach my $student (@Sorted_Students) {
         my $error;          my $error;
         my $username = $classlist->{$student}->[$index{'username'}];          my $sdata = $classlist->{$student};
         my $domain   = $classlist->{$student}->[$index{'domain'}];          my $username = $sdata->[$index{'username'}];
         my $section  = $classlist->{$student}->[$index{'section'}];          my $domain   = $sdata->[$index{'domain'}];
         my $name     = $classlist->{$student}->[$index{'fullname'}];          my $section  = $sdata->[$index{'section'}];
         my $id       = $classlist->{$student}->[$index{'id'}];          my $name     = $sdata->[$index{'fullname'}];
         my $status   = $classlist->{$student}->[$index{'status'}];          my $id       = $sdata->[$index{'id'}];
           my $start    = $sdata->[$index{'start'}];
           my $end      = $sdata->[$index{'end'}];
           if (! defined($start) || $start == 0) {
               $start = &mt('none');
           } else {
               $start = &Apache::lonlocal::locallocaltime($start);
           }
           if (! defined($end) || $end == 0) {
               $end = &mt('none');
           } else {
               $end = &Apache::lonlocal::locallocaltime($end);
           }
           my $status   = $sdata->[$index{'status'}];
         next if ($status ne 'Active');          next if ($status ne 'Active');
         #          #
         $r->print(<<"END");          $r->print(<<"END");
Line 1794  END Line 1835  END
     <td>$id</td>      <td>$id</td>
     <td>$name</td>      <td>$name</td>
     <td>$section</td>      <td>$section</td>
       <td>$start</td>
       <td>$end</td>
 </tr>  </tr>
 END  END
     }      }

Removed from v.1.109  
changed lines
  Added in v.1.110


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