Diff for /loncom/interface/statistics/lonstudentassessment.pm between versions 1.169.2.7.2.2 and 1.178

version 1.169.2.7.2.2, 2023/09/08 00:56:04 version 1.178, 2025/06/28 14:34:53
Line 51  package Apache::lonstudentassessment; Line 51  package Apache::lonstudentassessment;
   
 use strict;  use strict;
 use Apache::lonstatistics();  use Apache::lonstatistics();
   use Apache::lonquickgrades();
 use Apache::lonhtmlcommon();  use Apache::lonhtmlcommon();
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::loncoursedata;  use Apache::loncoursedata;
Line 167  sub BuildStudentAssessmentPage { Line 168  sub BuildStudentAssessmentPage {
         return;          return;
     }      }
     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Chart','Chart_Description:Chart_Sections:Chart_Student_Data:Chart_Enrollment_Status:Chart_Sequences:Chart_Output_Formats:Chart_Output_Data'));      $r->print(&Apache::lonhtmlcommon::breadcrumbs('Chart','Chart_Description:Chart_Sections:Chart_Student_Data:Chart_Enrollment_Status:Chart_Sequences:Chart_Output_Formats:Chart_Output_Data'));
       &Apache::lonquickgrades::startGradeScreen($r,'chart');
   
     #      #
     # Print out the HTML headers for the interface      # Print out the HTML headers for the interface
Line 232  sub BuildStudentAssessmentPage { Line 234  sub BuildStudentAssessmentPage {
         $output_student->($r,$student);          $output_student->($r,$student);
     }      }
     # Call the "finish" routine selected above      # Call the "finish" routine selected above
       &Apache::lonquickgrades::endGradeScreen($r);
     $finish->($r);      $finish->($r);
     #      #
     return;      return;
Line 1647  sub csv_initialize{ Line 1650  sub csv_initialize{
         &Apache::lonstatistics::selected_sequences_with_assessments();          &Apache::lonstatistics::selected_sequences_with_assessments();
     if (! ref($navmap)) {      if (! ref($navmap)) {
         # Unable to get data, so bail out          # Unable to get data, so bail out
         $r->print('<p class="LC_error">'.          $r->print('p class="LC_error">'.
                   &mt('Unable to retrieve course information.').                    &mt('Unable to retrieve course information.').
                   '</p>');                    '</p>');
     }      }
Line 1662  sub csv_initialize{ Line 1665  sub csv_initialize{
                .' is not available for non-HTML output.','<b>','</b>')                 .' is not available for non-HTML output.','<b>','</b>')
            .'</p>'             .'</p>'
         );          );
         $request_aborted = 1;         $request_aborted = 1;
     }      }
     return if ($request_aborted);      return if ($request_aborted);
     #      #
Line 2086  sub student_performance_on_sequence { Line 2089  sub student_performance_on_sequence {
                 $awarded = 0 if (! $awarded);                  $awarded = 0 if (! $awarded);
                 $hasdata = 1;                  $hasdata = 1;
             }              }
               my $latefrac;
               if (exists($resource_data->{'resource.'.$part.'.latefrac'})) {
                   $latefrac = $resource_data->{'resource.'.$part.'.latefrac'};
               }
             #              #
             $partscore = &Apache::grades::compute_points($weight,$awarded);              $partscore = &Apache::grades::compute_points($weight,$awarded,$latefrac);
             if (! defined($awarded)) {              if (! defined($awarded)) {
                 $partscore = undef;                  $partscore = undef;
             }              }

Removed from v.1.169.2.7.2.2  
changed lines
  Added in v.1.178


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