Diff for /loncom/interface/lonstatistics.pm between versions 1.38 and 1.50

version 1.38, 2002/08/01 20:49:06 version 1.50, 2002/09/01 06:23:19
Line 47  use Apache::lonhtmlcommon; Line 47  use Apache::lonhtmlcommon;
 use Apache::lonproblemanalysis;  use Apache::lonproblemanalysis;
 use Apache::lonproblemstatistics;  use Apache::lonproblemstatistics;
 use Apache::lonstudentassessment;  use Apache::lonstudentassessment;
 use Apache::lonchart;  use Apache::lonpercentage;
 use HTML::TokeParser;  use HTML::TokeParser;
 use GDBM_File;  use GDBM_File;
   
Line 72  sub ProcessFormData{ Line 72  sub ProcessFormData{
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},      &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                                             ['sort','download',                                              ['sort','download',
                                              'reportSelected',                                               'reportSelected',
                                              'StudentAssessmentStudent']);                                               'StudentAssessmentStudent',
                                                'ProblemStatisticsSort']);
     &CheckFormElement($cache, 'Status', 'Status', 'Active');      &CheckFormElement($cache, 'Status', 'Status', 'Active');
     &CheckFormElement($cache, 'postdata', 'reportSelected', 'Class list');      &CheckFormElement($cache, 'postdata', 'reportSelected', 'Class list');
     &CheckFormElement($cache, 'reportSelected', 'reportSelected',       &CheckFormElement($cache, 'reportSelected', 'reportSelected', 
Line 82  sub ProcessFormData{ Line 83  sub ProcessFormData{
     &CheckFormElement($cache, 'DownloadAll', 'DownloadAll', 'false');      &CheckFormElement($cache, 'DownloadAll', 'DownloadAll', 'false');
     &CheckFormElement($cache, 'sort', 'sort', 'fullname');      &CheckFormElement($cache, 'sort', 'sort', 'fullname');
     &CheckFormElement($cache, 'download', 'download', 'false');      &CheckFormElement($cache, 'download', 'download', 'false');
       &CheckFormElement($cache, 'StatisticsMaps', 
                         'StatisticsMaps', 'All Maps');
       &CheckFormElement($cache, 'StatisticsProblemSelect',
         'StatisticsProblemSelect', 'All Problems');
       &CheckFormElement($cache, 'StatisticsPartSelect',
         'StatisticsPartSelect', 'All Parts');
       if(defined($ENV{'form.Section'})) {
           my @sectionsSelected = (ref($ENV{'form.Section'}) ?
                                  @{$ENV{'form.Section'}} :
                                   ($ENV{'form.Section'}));
           $cache->{'sectionsSelected'} = join(':', @sectionsSelected);
       } elsif(!defined($cache->{'sectionsSelected'})) {
           $cache->{'sectionsSelected'} = $cache->{'sectionList'};
       }
   
     # student assessment      # student assessment
     if(defined($ENV{'form.CreateStudentAssessment'}) ||      if(defined($ENV{'form.CreateStudentAssessment'}) ||
Line 102  sub ProcessFormData{ Line 117  sub ProcessFormData{
         &Apache::lonnet::unescape($cache->{'StudentAssessmentStudent'});          &Apache::lonnet::unescape($cache->{'StudentAssessmentStudent'});
     &CheckFormElement($cache, 'DefaultColumns', 'DefaultColumns', 'false');      &CheckFormElement($cache, 'DefaultColumns', 'DefaultColumns', 'false');
   
     if(defined($ENV{'form.Section'})) {  
         my @sectionsSelected = (ref($ENV{'form.Section'}) ?  
                                @{$ENV{'form.Section'}} :  
                                 ($ENV{'form.Section'}));  
         $cache->{'sectionsSelected'} = join(':', @sectionsSelected);  
     } elsif(!defined($cache->{'sectionsSelected'})) {  
         $cache->{'sectionsSelected'} = $cache->{'sectionList'};  
     }  
   
     # Problem analysis      # Problem analysis
     &CheckFormElement($cache, 'Interval', 'Interval', '1');      &CheckFormElement($cache, 'Interval', 'Interval', '1');
   
Line 119  sub ProcessFormData{ Line 125  sub ProcessFormData{
                       'DisplayFormat', 'Display Table Format');                        'DisplayFormat', 'Display Table Format');
     &CheckFormElement($cache, 'ProblemStatisticsAscend',      &CheckFormElement($cache, 'ProblemStatisticsAscend',
                       'ProblemStatisticsAscend', 'Ascending');                        'ProblemStatisticsAscend', 'Ascending');
     &CheckFormElement($cache, 'ProblemStatisticsMaps',       &CheckFormElement($cache, 'ProblemStatisticsSort',
                       'ProblemStatisticsMaps', 'All Maps');                        'ProblemStatisticsSort', 'Homework Sets Order');
       &CheckFormElement($cache, 'DisplayLegend', 'DisplayLegend', 
         'Hide Legend');
       &CheckFormElement($cache, 'SortProblems', 'SortProblems', 
                         'Sort Within Sequence');
   
     # Search only form elements      # Search only form elements
     my @headingColumns=();      my @headingColumns=();
Line 314  sub PrepareData { Line 324  sub PrepareData {
         return "Unable to tie hash to db file.";          return "Unable to tie hash to db file.";
     }      }
   
     if(!$isCached) {  #    if(!$isCached) {
         my $processTopResourceMapReturn=          my $processTopResourceMapReturn=
             &Apache::loncoursedata::ProcessTopResourceMap(\%cache, $c, $r);              &Apache::loncoursedata::ProcessTopResourceMap(\%cache, $c);
         if($processTopResourceMapReturn ne 'OK') {          if($processTopResourceMapReturn ne 'OK') {
             untie(%cache);              untie(%cache);
             return $processTopResourceMapReturn;              return $processTopResourceMapReturn;
         }          }
     }   #   }
   
     if($c->aborted()) {      if($c->aborted()) {
         untie(%cache);          untie(%cache);
Line 355  sub PrepareData { Line 365  sub PrepareData {
     &SpaceColumns($students, $studentInformation, $headings, \%cache);      &SpaceColumns($students, $studentInformation, $headings, \%cache);
     $cache{'updateTime:columnWidth'}=24;      $cache{'updateTime:columnWidth'}=24;
   
     if($cache{'download'} ne 'false') {      my $download = $cache{'download'};
         my $who = $cache{'download'};      my $downloadAll = $cache{'DownloadAll'};
         my $courseData =       my @allStudents=();
             &Apache::loncoursedata::DownloadCourseInformation(      if($download ne 'false') {
                                              $who, $courseID,   
                                              $cache{$who.':lastDownloadTime'});  
         &Apache::loncoursedata::ProcessStudentData(\%cache, $courseData, $who);  
         $cache{'download'} = 'false';          $cache{'download'} = 'false';
     } elsif($cache{'DownloadAll'} ne 'false') {      } elsif($downloadAll ne 'false') {
         my @allStudents;          $cache{'DownloadAll'} = 'false';
         if($cache{'DownloadAll'} eq 'sorted') {          if($downloadAll eq 'sorted') {
             @allStudents = @$students;              @allStudents = @$students;
         } else {          } else {
             @allStudents = split(':::', $cache{'NamesOfStudents'});              @allStudents = split(':::', $cache{'NamesOfStudents'});
         }          }
         foreach (@allStudents) {  
             my $courseData =   
                 &Apache::loncoursedata::DownloadCourseInformation(  
                                              $_, $courseID,   
                                              $cache{$_.':lastDownloadTime'});  
             &Apache::loncoursedata::ProcessStudentData(\%cache, $courseData,   
                                                        $_);  
             if($c->aborted()) {  
                 untie(%cache);  
                 return 'aborted';   
             }  
         }  
         $cache{'DownloadAll'} = 'false';  
     }  
   
     if($c->aborted()) {  
         untie(%cache);  
         return 'aborted';   
     }      }
   
     untie(%cache);      untie(%cache);
   
     return ('OK', $students);      if($download ne 'false') {
 }          my @who = ($download);
           if(&Apache::loncoursedata::DownloadStudentCourseData(\@who, 'false', 
                                                                $cacheDB, 'true', 
 # Create progress                                                               'false', $courseID,
 sub Create_PrgWin {                                                               $r, $c) ne 'OK') {
     my ($r)=@_;              return 'Stop at download individual';
     $r->print(<<ENDPOP);          }
     <script>      } elsif($downloadAll ne 'false') {
     popwin=open('','popwin','width=400,height=100');          if(&Apache::loncoursedata::DownloadStudentCourseData(\@allStudents, 
     popwin.document.writeln('<html><body bgcolor="#88DDFF">'+                                                               'false', 
       '<title>LON-CAPA Statistics</title>'+                                                               $cacheDB, 'true', 
       '<h4>Computation Progress</h4>'+                                                               'true', $courseID,
       '<form name=popremain>'+                                                               $r, $c) ne 'OK') {
       '<input type=text size=35 name=remaining value=Starting></form>'+              return 'Stop at download all';
       '</body></html>');          }
     popwin.document.close();      }
     </script>  
 ENDPOP  
   
     $r->rflush();  
 }  
   
 # update progress  
 sub Update_PrgWin {  
     my ($totalStudents,$index,$name,$r)=@_;  
     $r->print('<script>popwin.document.popremain.remaining.value="'.  
               'Computing '.$index.'/'.$totalStudents.': '.  
               $name.'";</script>');  
     $r->rflush();  
 }  
   
 # close Progress Line      return ('OK', $students);
 sub Close_PrgWin {  
     my ($r)=@_;  
     $r->print('<script>popwin.close()</script>');  
     $r->rflush();   
 }  }
   
   
 sub BuildClasslist {  sub BuildClasslist {
     my ($cacheDB,$students,$studentInformation,$headings)=@_;      my ($cacheDB,$students,$studentInformation,$headings,$r)=@_;
   
     my %cache;      my %cache;
     unless(tie(%cache,'GDBM_File',$cacheDB,&GDBM_READER(),0640)) {      unless(tie(%cache,'GDBM_File',$cacheDB,&GDBM_READER(),0640)) {
Line 446  sub BuildClasslist { Line 416  sub BuildClasslist {
   
     my $displayString = '<td align="left"><a href="/adm/statistics?';      my $displayString = '<td align="left"><a href="/adm/statistics?';
     $displayString .= 'sort=LINKDATA">DISPLAYDATA&nbsp</a></td>'."\n";      $displayString .= 'sort=LINKDATA">DISPLAYDATA&nbsp</a></td>'."\n";
     $Str .= &Apache::lonhtmlcommon::CreateHeadings(\%cache, $studentInformation,      $Str .= &Apache::lonhtmlcommon::CreateHeadings(\%cache, 
                                                      $studentInformation,
                                                    $headings, $displayString);                                                     $headings, $displayString);
     $Str .= '</tr>'."\n";      $Str .= '</tr>'."\n";
   
     my $alternate=0;      my $alternate=0;
     foreach (@$students) {      foreach (@$students) {
         my ($username, $domain) = split(':', $_);          my ($username, $domain) = split(':', $_);
Line 483  sub BuildClasslist { Line 455  sub BuildClasslist {
   
     $Str .= '</tr>'."\n";      $Str .= '</tr>'."\n";
     $Str .= '</table></td></tr></table>'."\n";      $Str .= '</table></td></tr></table>'."\n";
       $r->print($Str);
       $r->rflush();
   
     untie(%cache);      untie(%cache);
   
     return $Str;      return;
 }  }
   
 sub CreateMainMenu {  sub CreateMainMenu {
Line 539  sub BuildStatistics { Line 513  sub BuildStatistics {
     my %reports = ('classlist'          => 'Class list',      my %reports = ('classlist'          => 'Class list',
                    'problem_statistics' => 'Problem Statistics',                     'problem_statistics' => 'Problem Statistics',
                    'student_assessment' => 'Student Assessment',                     'student_assessment' => 'Student Assessment',
                    'activitylog'        => 'Activity Log',     'percentage'         => 'Percentage Graphs',
   #                   'activitylog'        => 'Activity Log',
                    'reportSelected'     => 'Class list');                     'reportSelected'     => 'Class list');
   
     my %cache;      my %cache;
Line 547  sub BuildStatistics { Line 522  sub BuildStatistics {
     my $cacheDB = "/home/httpd/perl/tmp/$ENV{'user.name'}".      my $cacheDB = "/home/httpd/perl/tmp/$ENV{'user.name'}".
                   "_$ENV{'user.domain'}_$courseID\_statistics.db";                    "_$ENV{'user.domain'}_$courseID\_statistics.db";
   
       $r->print(&Apache::lonhtmlcommon::Title('Course Statistics and Charts'));
   
     my ($returnValue, $students) = &PrepareData($c, $cacheDB,       my ($returnValue, $students) = &PrepareData($c, $cacheDB, 
                                                 \@studentInformation,                                                   \@studentInformation, 
                                                 \@headings,$r);                                                  \@headings,$r);
     if($returnValue ne 'OK') {      if($returnValue ne 'OK') {
         $r->print('<html><body>'.$returnValue."\n".'</body></html>');          $r->print($returnValue."\n".'</body></html>');
         return OK;          return OK;
     }      }
       if(!$c->aborted()) {
           &Apache::loncoursedata::CheckForResidualDownload($cacheDB, 
                                                            'true', 'true',
                                                            $courseID,
                                                            $r, $c);
       }
   
     my $GoToPage;      my $GoToPage;
     if(tie(%cache,'GDBM_File',$cacheDB,&GDBM_READER(),0640)) {      if(tie(%cache,'GDBM_File',$cacheDB,&GDBM_READER(),0640)) {
Line 566  sub BuildStatistics { Line 549  sub BuildStatistics {
         }          }
   
         if(defined($cache{'OptionResponses'})) {          if(defined($cache{'OptionResponses'})) {
             $reports{'problem_analysis'} = 'Problem Analysis';              $reports{'problem_analysis'} = 'Option Response Analysis';
         }          }
   
         $r->print(&Apache::lonhtmlcommon::Title('LON-CAPA Statistics'));  
         $r->print('<form name="Statistics" ');          $r->print('<form name="Statistics" ');
         $r->print('method="post" action="/adm/statistics">');          $r->print('method="post" action="/adm/statistics">');
         $r->print(&CreateMainMenu($cache{'Status'}, \%reports));          $r->print(&CreateMainMenu($cache{'Status'}, \%reports));
           $r->rflush();
         untie(%cache);          untie(%cache);
     } else {      } else {
         $r->print('<html><body>Unable to tie database.</body></html>');          $r->print('<html><body>Unable to tie database.</body></html>');
Line 586  sub BuildStatistics { Line 569  sub BuildStatistics {
                                                                   $students,                                                                     $students, 
                                                                   $courseID,                                                                     $courseID, 
                                                                   $c,$r);                                                                    $c,$r);
     } elsif($GoToPage eq 'Problem Analysis') {      } elsif($GoToPage eq 'Option Response Analysis') {
         $r->print(          &Apache::lonproblemanalysis::BuildProblemAnalysisPage($cacheDB, $r);
               &Apache::lonproblemanalysis::BuildProblemAnalysisPage($cacheDB));  
     } elsif($GoToPage eq 'Student Assessment') {      } elsif($GoToPage eq 'Student Assessment') {
         $r->print(          &Apache::lonstudentassessment::BuildStudentAssessmentPage($cacheDB,
             &Apache::lonstudentassessment::BuildStudentAssessmentPage($cacheDB,  
                                                           $students,                                                            $students,
                                                           $courseID,                                                            $courseID,
                                                           'Statistics',                                                            'Statistics',
                                                           \@headings,                                                            \@headings,
                                                           $spacing,                                                            $spacing,
                                                           \@studentInformation,                                                            \@studentInformation,
                                                           $r, $c));                                                            $r, $c);
     } elsif($GoToPage eq 'Analyze') {      } elsif($GoToPage eq 'Analyze') {
         $r->print(&Apache::lonproblemanalysis::BuildAnalyzePage($cacheDB,           &Apache::lonproblemanalysis::BuildAnalyzePage($cacheDB, $students, 
                                                                 $students,                                                         $courseID, $r);
                                                                 $courseID,$r));      } elsif($GoToPage eq 'DoDiffGraph' || $GoToPage eq 'PercentWrongGraph') {
     } elsif($GoToPage eq 'DoDiffGraph') {          my $courseDescription = $ENV{'course.'.$courseID.'.description'};
         &Apache::lonproblemstatistics::BuildDiffGraph($r);          $courseDescription =~ s/\ /"_"/eg;
     } elsif($GoToPage eq 'PercentWrongGraph') {          &Apache::lonproblemstatistics::BuildGraphicChart($GoToPage, $cacheDB,
         &Apache::lonproblemstatistics::BuildWrongGraph($r);                                                           $courseDescription,
                                                            $students, $courseID,
                                                            $r, $c);
     } elsif($GoToPage eq 'Class list') {      } elsif($GoToPage eq 'Class list') {
         $r->print(&BuildClasslist($cacheDB, $students, \@studentInformation,          &BuildClasslist($cacheDB, $students, \@studentInformation,
                                   \@headings));                          \@headings, $r);
       } elsif($GoToPage eq 'Percentage Graphs') {
    &Apache::lonpercentage::BuildPercentageGraph($cacheDB, $students,
        $courseID, $c, $r);
     }      }
   
     $r->print('</form>'."\n");      $r->print('</form>'."\n");

Removed from v.1.38  
changed lines
  Added in v.1.50


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