Diff for /loncom/interface/statistics/lonsubmissiontimeanalysis.pm between versions 1.24 and 1.29

version 1.24, 2005/04/19 13:59:35 version 1.29, 2008/10/23 09:07:51
Line 135  sub BuildSubmissionTimePage { Line 135  sub BuildSubmissionTimePage {
             $r->print(&Apache::lonstathelpers::render_resource($resource));              $r->print(&Apache::lonstathelpers::render_resource($resource));
             $r->print('<br />');              $r->print('<br />');
             $r->rflush();              $r->rflush();
             $r->print(&analyze_times($r,$resource->symb,\@Students,      if (@Students) {    
                                      $current_problem->{'part'}));   $r->print(&analyze_times($r,$resource->symb,\@Students,
    $current_problem->{'part'}));
       }
         }          }
         $r->print('<hr />');          $r->print('<hr />');
     }      }
Line 174  sub analyze_times { Line 176  sub analyze_times {
     # Get the data      # Get the data
     my $SubData = &Apache::loncoursedata::get_response_time_data      my $SubData = &Apache::loncoursedata::get_response_time_data
         ([&Apache::lonstatistics::get_selected_sections()],          ([&Apache::lonstatistics::get_selected_sections()],
            [&Apache::lonstatistics::get_selected_groups()],
          $Apache::lonstatistics::enrollment_status,           $Apache::lonstatistics::enrollment_status,
          $symb,$part);           $symb,$part);
     if (! defined($SubData) || ! ref($SubData)) {      if (! defined($SubData) || ! ref($SubData)) {
Line 395  sub CreateInterface { Line 398  sub CreateInterface {
     ##      ##
     ## Build the menu      ## Build the menu
     my $Str = '';      my $Str = '';
     $Str .= &Apache::lonhtmlcommon::breadcrumbs(undef,'Submission Time Plots');      $Str .= &Apache::lonhtmlcommon::breadcrumbs('Submission Time Plots');
     $Str .= '<p>';      $Str .= '<p>';
     $Str .= '<table cellspacing="5">'."\n";      $Str .= '<table cellspacing="5">'."\n";
     $Str .= '<tr>';      $Str .= '<tr>';
     $Str .= '<th align="center">'.&mt('Sections').'</th>';      $Str .= '<th align="center">'.&mt('Sections').'</th>';
     $Str .= '<th align="center">'.&mt('Enrollment Status').'</th>';      $Str .= '<th align="center">'.&mt('Groups').'</th>';
       $Str .= '<th align="center">'.&mt('Access Status').'</th>';
     $Str .= '</tr>'."\n";      $Str .= '</tr>'."\n";
     ##      ##
     ##       ## 
Line 408  sub CreateInterface { Line 412  sub CreateInterface {
     $Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',4);      $Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',4);
     $Str .= '</td>';      $Str .= '</td>';
     #      #
       $Str .= '<td align="center">'."\n";
       $Str .= &Apache::lonstatistics::GroupSelect('Group','multiple',4);
       $Str .= '</td>';
       #
     $Str .= '<td align="center">';      $Str .= '<td align="center">';
     $Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,4);      $Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,4);
     $Str .= '</td>';      $Str .= '</td>';
Line 415  sub CreateInterface { Line 423  sub CreateInterface {
     $Str .= '</tr>'."\n";      $Str .= '</tr>'."\n";
     $Str .= '</table>'."\n";      $Str .= '</table>'."\n";
     #      #
     $Str .= '<nobr>'.&mt('Status: [_1]',      $Str .= '<p><span class="LC_nobreak">'
                          '<input type="text" '.             .&mt('Status: [_1]',
                          'name="stats_status" size="60" value="" />').                      '<input type="text" name="stats_status"'
             '</nobr>'.'</p>';                     .' size="60" value="" readonly="readonly" />')
              .'</span></p>';
       $Str .= '</p>';
     ##      ##
     return $Str;      return $Str;
 }  }

Removed from v.1.24  
changed lines
  Added in v.1.29


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