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

version 1.169.2.7.2.2, 2023/09/08 00:56:04 version 1.177, 2023/04/07 16:46:44
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);
     #      #

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


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