Diff for /loncom/interface/statistics/lonstudentassessment.pm between versions 1.46 and 1.48

version 1.46, 2003/05/12 22:07:17 version 1.48, 2003/05/21 14:43:01
Line 137  sub BuildStudentAssessmentPage { Line 137  sub BuildStudentAssessmentPage {
     if (! exists($ENV{'form.notfirstrun'})) {      if (! exists($ENV{'form.notfirstrun'})) {
         $r->print(<<ENDMSG);          $r->print(<<ENDMSG);
 <p>  <p>
 <font size="+1">  <font size="+2">
 Please make your selections in the boxes above and hit   Please make your selections in the boxes above and hit 
 the button marked &quot;Update&nbsp;Display&quot;.  the button marked &quot;Update&nbsp;Display&quot;.
 </font>  </font>
Line 156  ENDMSG Line 156  ENDMSG
         $initialize     = \&excel_initialize;          $initialize     = \&excel_initialize;
         $output_student = \&excel_outputstudent;          $output_student = \&excel_outputstudent;
         $finish         = \&excel_finish;          $finish         = \&excel_finish;
     } elsif ($output_mode eq 'multi-sheet excel') {  #    } elsif ($output_mode eq 'multi-sheet excel') {
         $initialize     = \&multi_sheet_excel_initialize;  #        $initialize     = \&multi_sheet_excel_initialize;
         $output_student = \&multi_sheet_excel_outputstudent;  #        $output_student = \&multi_sheet_excel_outputstudent;
         $finish         = \&multi_sheet_excel_finish;  #        $finish         = \&multi_sheet_excel_finish;
     } elsif ($output_mode eq 'csv') {      } elsif ($output_mode eq 'csv') {
         $initialize     = \&csv_initialize;          $initialize     = \&csv_initialize;
         $output_student = \&csv_outputstudent;          $output_student = \&csv_outputstudent;
Line 274  my @OutputOptions = Line 274  my @OutputOptions =
        show => 'all',         show => 'all',
        show_links => 'yes',         show_links => 'yes',
        },         },
        { name  => 'HTML, with all links',
          value => 'html, with all links',
          description => 'Output HTML with each symbol linked to the problem '.
      'which generated it.  '.
              'This includes links for unattempted problems.',
          mode => 'html',
          show => 'all',
          show_links => 'all',
          },
      { name  => 'HTML, without links',       { name  => 'HTML, without links',
        value => 'html, without links',         value => 'html, without links',
        description => 'Output HTML.  By not including links, the size of the'.         description => 'Output HTML.  By not including links, the size of the'.
Line 326  my @OutputOptions = Line 335  my @OutputOptions =
        show => 'totals',         show => 'totals',
        show_links => 'no',         show_links => 'no',
            },             },
      { name  => 'multi-sheet Excel',  #     { name  => 'multi-sheet Excel',
        value => 'multi-sheet excel',  #       value => 'multi-sheet excel',
        description => 'Output an Excel file (compatable with Excel 95), '.  #       description => 'Output an Excel file (compatable with Excel 95), '.
    'with a seperate worksheet for each sequence you have selected '.  #   'with a seperate worksheet for each sequence you have selected '.
            'the data for each problem part '.  #           'the data for each problem part '.
            '(number of tries, status, points awarded) will be listed.',  #           '(number of tries, status, points awarded) will be listed.',
        mode => 'multi-sheet excel',  #       mode => 'multi-sheet excel',
        show => 'totals',  #       show => 'totals',
        show_links => 'no',  #       show_links => 'no',
            },  #           },
      { name  => 'multi-sheet Excel, by section',  #     { name  => 'multi-sheet Excel, by section',
        value => 'multi-sheet excel, by section',  #       value => 'multi-sheet excel, by section',
        description => 'Output an Excel file (compatable with Excel 95), '.  #       description => 'Output an Excel file (compatable with Excel 95), '.
    'with a seperate worksheet for each sequence you have selected '.  #   'with a seperate worksheet for each sequence you have selected '.
            'the data for each problem part '.  #           'the data for each problem part '.
            '(number of tries, status, points awarded) will be listed.  '.  #           '(number of tries, status, points awarded) will be listed.  '.
            'There will be one Excel workbook for each section selected.',  #           'There will be one Excel workbook for each section selected.',
        mode => 'multi-sheet excel',  #       mode => 'multi-sheet excel',
        show => 'by section',  #       show => 'by section',
        show_links => 'no',  #       show_links => 'no',
            },  #           },
      { name  => 'CSV, everything',       { name  => 'CSV, everything',
        value => 'csv, everything',         value => 'csv, everything',
        description => '',         description => '',
Line 1164  sub StudentPerformanceOnSequence { Line 1173  sub StudentPerformanceOnSequence {
                 }                  }
             }              }
             #              #
             if ($links eq 'yes' && $symbol ne ' ') {              if ( ($links eq 'yes' && $symbol ne ' ') ||
                    ($links eq 'all')) {
                 $symbol = '<a href="/adm/grades'.                  $symbol = '<a href="/adm/grades'.
                     '?symb='.&Apache::lonnet::escape($resource->{'symb'}).                      '?symb='.&Apache::lonnet::escape($resource->{'symb'}).
                         '&student='.$student->{'username'}.                          '&student='.$student->{'username'}.

Removed from v.1.46  
changed lines
  Added in v.1.48


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