Diff for /loncom/interface/statistics/lonstudentassessment.pm between versions 1.169.2.5 and 1.169.2.6

version 1.169.2.5, 2013/08/08 16:53:53 version 1.169.2.6, 2014/04/05 13:03:06
Line 427  my @OutputOptions = Line 427  my @OutputOptions =
   
 sub OutputDescriptions {  sub OutputDescriptions {
     my $Str = '';      my $Str = '';
     $Str .= "<h2>Output Formats</h2>\n";      $Str .= '<h2>'.&mt('Output Formats')."</h2>\n";
     $Str .= "<dl>\n";      $Str .= "<dl>\n";
     foreach my $outputmode (@OutputOptions) {      foreach my $outputmode (@OutputOptions) {
  $Str .="    <dt>".$outputmode->{'name'}."</dt>\n";   $Str .="    <dt>".$outputmode->{'name'}."</dt>\n";
Line 1100  sub excel_initialize { Line 1100  sub excel_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("<h3>".          $r->print('<p class="LC_error">'.
                   &mt('Unable to retrieve course information.').                    &mt('Unable to retrieve course information.').
                   '</h3>');                    '</p>');
     }      }
     #      #
     my $total_columns = scalar(&get_student_fields_to_show());      my $total_columns = scalar(&get_student_fields_to_show());
Line 1643  sub csv_initialize{ Line 1643  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("<h3>".          $r->print('<p class="LC_error">'.
                   &mt('Unable to retrieve course information.').                    &mt('Unable to retrieve course information.').
                   '</h3>');                    '</p>');
     }      }
     #      #
     # Deal with unimplemented requests      # Deal with unimplemented requests

Removed from v.1.169.2.5  
changed lines
  Added in v.1.169.2.6


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