Diff for /loncom/interface/statistics/lonproblemanalysis.pm between versions 1.133 and 1.140

version 1.133, 2008/12/11 14:55:27 version 1.140, 2011/01/17 00:19:41
Line 31  use Apache::lonnet; Line 31  use Apache::lonnet;
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonhtmlcommon();  use Apache::lonhtmlcommon();
 use Apache::loncoursedata();  use Apache::loncoursedata();
   use Apache::lonquickgrades();
 use Apache::lonstatistics;  use Apache::lonstatistics;
 use Apache::lonlocal;  use Apache::lonlocal;
 use Apache::lonstathelpers();  use Apache::lonstathelpers();
Line 73  sub BuildProblemAnalysisPage { Line 74  sub BuildProblemAnalysisPage {
     #      #
     &Apache::lonstatistics::PrepareClasslist();      &Apache::lonstatistics::PrepareClasslist();
     #      #
       $r->print(&Apache::lonhtmlcommon::breadcrumbs('Detailed Problem Analysis'));
       &Apache::lonquickgrades::startGradeScreen($r,'statistics');
   
     $r->print(&CreateInterface());      $r->print(&CreateInterface());
     #      #
     my @Students = @Apache::lonstatistics::Students;      my @Students = @Apache::lonstatistics::Students;
Line 663  sub numerical_determine_answers { Line 667  sub numerical_determine_answers {
         }          }
         $answers{$correct->{$sname.':'.$sdom}{'answer'}}++;          $answers{$correct->{$sname.':'.$sdom}{'answer'}}++;
         &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,          &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
                                                  &mt('last student'));                                                       'last student');
     }      }
     &Apache::lonstathelpers::write_analysis_cache();      &Apache::lonstathelpers::write_analysis_cache();
     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);      &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
Line 1332  sub OR_tries_analysis { Line 1336  sub OR_tries_analysis {
             if ($try > 1) {              if ($try > 1) {
                 $analysis_html.= '<tr><td colspan="4">'                  $analysis_html.= '<tr><td colspan="4">'
                                 .'<div class="LC_info">'                                  .'<div class="LC_info">'
                                 .&mt('None of the selected students attempted the problem more than [_1] times.'                                  .&mt('None of the selected students attempted the problem more than [quant,_1,time].'
                                     ,$try-1)                                      ,$try-1)
                                 .'</div>'                                  .'</div>'
                                 .'</td></tr>';                                  .'</td></tr>';
Line 1558  sub OR_time_analysis { Line 1562  sub OR_time_analysis {
         $table .= '<tr><td colspan="4" align="center">'.          $table .= '<tr><td colspan="4" align="center">'.
             &mt('Start time: [_1]',$startdateform).'<br />'.              &mt('Start time: [_1]',$startdateform).'<br />'.
             &mt('End time: [_1]',$enddateform).'</td></tr>'.$/;              &mt('End time: [_1]',$enddateform).'</td></tr>'.$/;
         $table.= '<tr><td colspan="4">&nbsp</td></tr>'.$/;          $table.= '<tr><td colspan="4">&nbsp;</td></tr>'.$/;
     }      }
     $table .= '</table>';      $table .= '</table>';
     #      #
Line 1875  sub CreateInterface { Line 1879  sub CreateInterface {
     ##      ##
     ## Build the menu      ## Build the menu
     my $Str = '';      my $Str = '';
     $Str .= &Apache::lonhtmlcommon::breadcrumbs('Detailed Problem Analysis');  
     $Str .= '<p>';      $Str .= '<p>';
     $Str .= &Apache::loncommon::start_data_table();      $Str .= &Apache::loncommon::start_data_table();
     $Str .= &Apache::loncommon::start_data_table_header_row();      $Str .= &Apache::loncommon::start_data_table_header_row();
Line 1901  sub CreateInterface { Line 1904  sub CreateInterface {
     #      #
     ##      ##
     ##      ##
     $Str .= '<td align="right" valign="top">';      $Str .= '<td valign="top">';
     ##      ##
     my $showprob_checkbox =       my $showprob_checkbox = 
         '<input type="checkbox" name="show_prob" value="true" ';          '<input type="checkbox" name="show_prob" value="true"';
     if ($env{'form.show_prob'} eq 'true') {      if ($env{'form.show_prob'} eq 'true') {
         $showprob_checkbox .= 'checked="checked" ';          $showprob_checkbox .= ' checked="checked"';
     }      }
     $showprob_checkbox.= ' />';      $showprob_checkbox.= ' />';
     $Str.= '<span class="LC_nobreak"><label>'.      $Str.= '<span class="LC_nobreak"><label>'.
         &mt('Show problem [_1]',$showprob_checkbox).          $showprob_checkbox.' '.&mt('Show problem').
         '</label></span><br />';          '</label></span><br />';
     ##      ##
     my $analyze_selector = '<select name="AnalyzeOver" >';      my $analyze_selector = '<select name="AnalyzeOver" >';
Line 1942  sub CreateInterface { Line 1945  sub CreateInterface {
         if ($env{'form.NumPlots'} == $i) { $numplots_selector.=' selected="selected" '; }          if ($env{'form.NumPlots'} == $i) { $numplots_selector.=' selected="selected" '; }
         $numplots_selector .= '>'.$i.'</option>';          $numplots_selector .= '>'.$i.'</option>';
     }      }
     $numplots_selector .= '</select></span><br />';      $numplots_selector .= '</select>';
     $Str .= '<span class="LC_nobreak"><label>'.&mt('Number of Plots [_1]',$numplots_selector).      $Str .= '<span class="LC_nobreak"><label>'.&mt('Number of Plots [_1]',$numplots_selector).
         '</label></span>';          '</label></span><br />';
     ##      ##
     $Str .= '</td>';      $Str .= '</td>';
     ##      ##

Removed from v.1.133  
changed lines
  Added in v.1.140


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