Diff for /loncom/interface/statistics/lonsurveyreports.pm between versions 1.7 and 1.18

version 1.7, 2005/03/18 00:20:44 version 1.18, 2008/10/23 09:07:51
Line 27 Line 27
 package Apache::lonsurveyreports;  package Apache::lonsurveyreports;
   
 use strict;  use strict;
 use Apache::lonnet();  use Apache::lonnet;
 use Apache::loncommon();  use Apache::loncommon();
 use Apache::lonhtmlcommon();  use Apache::lonhtmlcommon();
 use Apache::loncoursedata();  use Apache::loncoursedata();
Line 37  use Apache::lonstathelpers; Line 37  use Apache::lonstathelpers;
 use Spreadsheet::WriteExcel;  use Spreadsheet::WriteExcel;
 use HTML::Entities();  use HTML::Entities();
 use Time::Local();  use Time::Local();
   use lib '/home/httpd/lib/perl/';
   use LONCAPA;
    
   
 my @SubmitButtons = (  my @SubmitButtons = (
                      { name => 'break'},                       { name => 'break'},
Line 70  sub BuildSurveyReportsPage { Line 73  sub BuildSurveyReportsPage {
     my @Students = @Apache::lonstatistics::Students;      my @Students = @Apache::lonstatistics::Students;
     #      #
     if (@Students < 1) {      if (@Students < 1) {
         $r->print('<h2>There are no students in the sections selected</h2>');          $r->print('<p class="LC_warning">'.&mt('There are no students in the sections selected.').'</p>');
     }      }
     #      #
     my @CacheButtonHTML =       my @CacheButtonHTML = 
         &Apache::lonstathelpers::manage_caches($r,'Statistics','stats_status');          &Apache::lonstathelpers::manage_caches($r,'Statistics','stats_status');
     $r->rflush();      $r->rflush();
     #      #
     if (exists($ENV{'form.problemchoice'}) &&       if (exists($env{'form.problemchoice'}) && 
         ! exists($ENV{'form.SelectAnother'})) {          ! exists($env{'form.SelectAnother'})) {
         $r->print('&nbsp;'x3);          $r->print('&nbsp;'x3);
         foreach my $button (@SubmitButtons) {          foreach my $button (@SubmitButtons) {
             if ($button->{'name'} eq 'break') {              if ($button->{'name'} eq 'break') {
Line 102  sub BuildSurveyReportsPage { Line 105  sub BuildSurveyReportsPage {
         #          #
         # Determine which problem we are to analyze          # Determine which problem we are to analyze
         my $current_problem = &Apache::lonstathelpers::get_target_from_id          my $current_problem = &Apache::lonstathelpers::get_target_from_id
             ($ENV{'form.problemchoice'});              ($env{'form.problemchoice'});
         #          #
         my ($navmap,$prev,$curr,$next) =           my ($navmap,$prev,$curr,$next) = 
             &Apache::lonstathelpers::get_prev_curr_next($current_problem,              &Apache::lonstathelpers::get_prev_curr_next($current_problem,
                                                         '.',                                                          '.',
                                                         'part_survey',                                                          'part_survey',
                                                         );                                                          );
         if (exists($ENV{'form.PrevProblem'}) && defined($prev)) {          if (exists($env{'form.PrevProblem'}) && defined($prev)) {
             $current_problem = $prev;              $current_problem = $prev;
         } elsif (exists($ENV{'form.NextProblem'}) && defined($next)) {          } elsif (exists($env{'form.NextProblem'}) && defined($next)) {
             $current_problem = $next;              $current_problem = $next;
         } else {          } else {
             $current_problem = $curr;              $current_problem = $curr;
         }          }
         #          #
         # Store the current problem choice and send it out in the form          # Store the current problem choice and send it out in the form
         $ENV{'form.problemchoice'} =           $env{'form.problemchoice'} = 
             &Apache::lonstathelpers::make_target_id($current_problem);              &Apache::lonstathelpers::make_target_id($current_problem);
         $r->print('<input type="hidden" name="problemchoice" value="'.          $r->print('<input type="hidden" name="problemchoice" value="'.
                   $ENV{'form.problemchoice'}.'" />');                    $env{'form.problemchoice'}.'" />');
         #          #
         if (! defined($current_problem->{'resource'})) {          if (! defined($current_problem->{'resource'})) {
             $r->print('resource is undefined');              $r->print('resource is undefined');
Line 129  sub BuildSurveyReportsPage { Line 132  sub BuildSurveyReportsPage {
             my $resource = $current_problem->{'resource'};              my $resource = $current_problem->{'resource'};
             $r->print('<h1>'.$resource->compTitle.'</h1>');              $r->print('<h1>'.$resource->compTitle.'</h1>');
             $r->print('<h3>'.$resource->src.'</h3>');              $r->print('<h3>'.$resource->src.'</h3>');
             if ($ENV{'form.renderprob'} eq 'true') {              if ($env{'form.renderprob'} eq 'true') {
                 $r->print(&Apache::lonstathelpers::render_resource($resource));                  $r->print(&Apache::lonstathelpers::render_resource($resource));
             }              }
             $r->rflush();              $r->rflush();
             my %Data = &Apache::lonstathelpers::get_problem_data              my %Data = &Apache::lonstathelpers::get_problem_data
                 ($resource->src);                  ($resource->src);
             &compile_student_answers($r,$current_problem,\%Data,\@Students);              &compile_student_answers($r,$current_problem,\%Data,\@Students);
             if ($ENV{'form.output'} eq 'HTML' ||               if ($env{'form.output'} eq 'HTML' || 
                 ! defined($ENV{'form.output'})) {                  ! defined($env{'form.output'})) {
                 &make_HTML_report($r,$current_problem,\%Data,\@Students);                  &make_HTML_report($r,$current_problem,\%Data,\@Students);
             } elsif ($ENV{'form.output'} eq 'Excel') {              } elsif ($env{'form.output'} eq 'Excel') {
                 &make_Excel_report($r,$current_problem,\%Data,\@Students);                  &make_Excel_report($r,$current_problem,\%Data,\@Students);
             } elsif ($ENV{'form.output'} eq 'TXT') {              } elsif ($env{'form.output'} eq 'TXT') {
                 &make_text_report($r,$current_problem,\%Data,\@Students);                  &make_text_report($r,$current_problem,\%Data,\@Students);
             }              }
         }          }
Line 179  sub SurveyProblemSelector { Line 182  sub SurveyProblemSelector {
         }          }
     }      }
     if (! scalar(@SurveyProblems)) {      if (! scalar(@SurveyProblems)) {
         $Str = '<h1>'.          $Str = '<p class="LC_warning">'.
             &mt('There are no survey problems in this course').              &mt('There are no survey problems in this course.').
             '</h1>'.$/;              '</p>'.$/;
         return $Str;          return $Str;
     }      }
     $Str .= '<table>'.$/;      $Str .= '<table>'.$/;
Line 197  sub SurveyProblemSelector { Line 200  sub SurveyProblemSelector {
               respid=>undef,                respid=>undef,
               resptype=>undef});                resptype=>undef});
         my $checked = '';          my $checked = '';
         if ($ENV{'form.problemchoice'} eq $value) {          if ($env{'form.problemchoice'} eq $value) {
             $checked = 'checked ';              $checked = 'checked ';
         }          }
         my $link = $problem->{'res'}->src.          my $link = $problem->{'res'}->link.
             '?symb='.&Apache::lonnet::escape($problem->{'res'}->symb);              '?symb='.&escape($problem->{'res'}->shown_symb);
         $Str .= '<tr><td>'.          $Str .= '<tr><td>'.
             '<input type="radio" name="problemchoice" id="'.$id.'" '.              '<input type="radio" name="problemchoice" id="'.$id.'" '.
                    'value="'.$value.'" '.$checked.'/>'.'</td>'.                     'value="'.$value.'" '.$checked.'/>'.'</td>'.
             '<td><nobr>'.              '<td><nobr>'.
             '<label for="'.$id.'">'.$problem->{'res'}->compTitle.'('.$problem->{'seq'}->compTitle.')'.'</lablel>'.              '<label for="'.$id.'">'.$problem->{'res'}->compTitle.' ('.$problem->{'seq'}->compTitle.')'.'</label>'.
             ('&nbsp;'x2).              ('&nbsp;'x2).
             qq{<a target="preview" href="$link">view</a>}.'</td></tr>'.$/;              '<a target="preview" href="'.$link.'">'.&mt('View survey').'</a>'.'</td></tr>'.$/;
     }      }
     $Str .= '</table>';      $Str .= '</table>';
     return $Str;      return $Str;
Line 249  sub compile_student_answers { Line 252  sub compile_student_answers {
                     foreach my $response (@responses) {                      foreach my $response (@responses) {
                         my ($foilid,$option) =                           my ($foilid,$option) = 
                             map {                               map { 
                                 &Apache::lonnet::unescape($_);                                   &unescape($_); 
                             } split('=',$response);                              } split('=',$response);
                         $data->{'foil_count'}->{$foilid}++;                          $data->{'foil_count'}->{$foilid}++;
                         $data->{'foil_responses'}->{$foilid}->{$option}++;                          $data->{'foil_responses'}->{$foilid}->{$option}++;
                     }                      }
                 } elsif ($resptype =~ /^(radiobutton)$/) {                  } elsif ($resptype =~ /^(radiobutton)$/) {
                     my ($foil,$value) = map { &Apache::lonnet::unescape($_); } split('=',$student_response);                      my ($foil,$value) = map { &unescape($_); } split('=',$student_response);
                     $value += 1;  # explicitly increment it...                      $value += 1;  # explicitly increment it...
                     $data->{'foil_responses'}->{$foil}++;                      $data->{'foil_responses'}->{$foil}++;
                     $data->{'foil_values'}->{$value}++;                      $data->{'foil_values'}->{$value}++;
                     if (! exists($data->{'map'}->{$value})) {                      if (! exists($data->{'map'}->{$value})) {
                         $data->{'map'}->{$value} = $foil;                          $data->{'map'}->{$value} = $foil;
                           $data->{'map_fv'}->{$foil} = $value;
                     }                      }
                 } else {                  } else {
                     # Variable stuff (essays, raw numbers, strings) go here                      # Variable stuff (essays, raw numbers, strings) go here
Line 322  sub make_text_report { Line 326  sub make_text_report {
     }      }
     close($file);      close($file);
     if($something_has_been_output) {      if($something_has_been_output) {
         $r->print('<p><a href="'.$filename.'">'.          $r->print('<p class="LC_info"><a href="'.$filename.'">'.
                   &mt('Your text file.').                    &mt('Your text file').
                   '</a></p>'."\n");                    '</a></p>'."\n");
         $r->print('<script>'.          $r->print('<script>'.
                   'window.document.Statistics.stats_status.value="'.                    'window.document.Statistics.stats_status.value="'.
                &mt('Done compiling text file.  See link below to download.').                 &mt('Done compiling text file. See link below to download.').
                   '";</script>');                    '";</script>');
     } else {      } else {
         $r->print('<h2>'.          $r->print('<p class="LC_warning">'
                   &mt("There is no essay or string response data to output for this survey.").'</h2>');                   .&mt('There is no essay or string response data to output for this survey.')
                    .'</h2>');
     }      }
     $r->rflush();      $r->rflush();
     return;      return;
Line 357  sub make_Excel_report { Line 362  sub make_Excel_report {
     #      #
     my $rows_output=0;      my $rows_output=0;
     $worksheet->write($rows_output++,0,      $worksheet->write($rows_output++,0,
                     $ENV{'course.'.$ENV{'request.course.id'}.'.description'},                      $env{'course.'.$env{'request.course.id'}.'.description'},
                       $format->{'h1'});                        $format->{'h1'});
     $rows_output++;      $rows_output++;
     #      #
Line 382  sub make_Excel_report { Line 387  sub make_Excel_report {
                 my $warned_about_size = 0;                  my $warned_about_size = 0;
                 foreach my $data (@{$data->{'responses'}}) {                  foreach my $data (@{$data->{'responses'}}) {
                     if (length($data) > 255 && ! $warned_about_size) {                      if (length($data) > 255 && ! $warned_about_size) {
                         $r->print('<p>'.                          $r->print('<p class="LC_warning">'.
                                   &mt('[_1]:[_2] responses to  [_3] may be too long to fit Excel spreadsheet.',                                    &mt('[_1]:[_2] responses to [_3] may be too long to fit Excel spreadsheet.',
                                       $resource->compTitle,                                        $resource->compTitle,
                                       $resource->part_display($partid),                                        $resource->part_display($partid),
                                       $respid).                                        $respid).
Line 401  sub make_Excel_report { Line 406  sub make_Excel_report {
                 $worksheet->write_row($rows_output++,0,                  $worksheet->write_row($rows_output++,0,
                                       \@rowdata,$format->{'h4'});                                        \@rowdata,$format->{'h4'});
                 #                  #
                 my @foils = sort(keys(%{$data->{'foil_responses'}}));   my @foils = sort(keys(%{$respdata->{'_Foils'}}));
                 foreach my $foilid (@foils) {                  foreach my $foilid (@foils) {
                     my $foil_count = $data->{'foil_count'}->{$foilid};                      my $foil_count = $data->{'foil_count'}->{$foilid};
                     my $foiltext = $respdata->{'_Foils'}->{$foilid}->{'text'};                      my $foiltext = $respdata->{'_Foils'}->{$foilid}->{'text'};
Line 429  sub make_Excel_report { Line 434  sub make_Excel_report {
                 my @rowdata = ('Foil Name','Foil Text','Frequency');                  my @rowdata = ('Foil Name','Foil Text','Frequency');
                 $worksheet->write_row($rows_output++,0,                  $worksheet->write_row($rows_output++,0,
                                       \@rowdata,$format->{'h4'});                                        \@rowdata,$format->{'h4'});
                 foreach my $value (sort(keys(%{$data->{'foil_values'}}))) {   my @foils = sort(keys(%{$respdata->{'_Foils'}}));
                   foreach my $foilid (@foils) {
                     undef(@rowdata);                      undef(@rowdata);
                     my $foilid = $data->{'map'}->{$value};                      my $value = $data->{'map_fv'}->{$foilid};
                     push(@rowdata,$respdata->{'_Foils'}->{$foilid}->{'name'});                      push(@rowdata,$respdata->{'_Foils'}->{$foilid}->{'name'});
                     push(@rowdata,$respdata->{'_Foils'}->{$foilid}->{'text'});                      push(@rowdata,$respdata->{'_Foils'}->{$foilid}->{'text'});
                     push(@rowdata,$data->{'foil_values'}->{$value});                      push(@rowdata,$data->{'foil_values'}->{$value});
Line 442  sub make_Excel_report { Line 448  sub make_Excel_report {
         }    #response ids          }    #response ids
     }    # partids      }    # partids
     $workbook->close();      $workbook->close();
     $r->print('<p><a href="'.$filename.'">'.      $r->print('<p class="LC_info"><a href="'.$filename.'">'.
               &mt('Your Excel spreadsheet.').                &mt('Your Excel spreadsheet.').
               '</a></p>'."\n");                '</a></p>'."\n");
     $r->print('<script>'.      $r->print('<script>'.
               'window.document.Statistics.stats_status.value="'.                'window.document.Statistics.stats_status.value="'.
               &mt('Done compiling spreadsheet.  See link below to download.').                &mt('Done compiling spreadsheet. See link below to download.').
               '";</script>');                '";</script>');
     $r->rflush();      $r->rflush();
     return;      return;
Line 483  sub make_HTML_report { Line 489  sub make_HTML_report {
             $Str .= '<tr>'.              $Str .= '<tr>'.
                 '<td><b>'.&mt('Total').'</b></td>'.                  '<td><b>'.&mt('Total').'</b></td>'.
                 '<td>'.$data->{'_count'}.'</td>'.                  '<td>'.$data->{'_count'}.'</td>'.
                 '<td>'.&mt('Part [_1], Response [_2]',$partid,$respid).'</td>'.                  '<td>'.&mt('Part [_1], Response [_2]',
      $resource->part_display($partid),$respid).'</td>'.
                 '</tr>';                  '</tr>';
             if (exists($data->{'responses'}) &&               if (exists($data->{'responses'}) && 
                 ref($data->{'responses'}) eq 'ARRAY') {                  ref($data->{'responses'}) eq 'ARRAY') {
Line 500  sub make_HTML_report { Line 507  sub make_HTML_report {
                 }                  }
             } elsif (exists($data->{'foil_count'}) &&               } elsif (exists($data->{'foil_count'}) && 
                      exists($data->{'foil_responses'})) {                       exists($data->{'foil_responses'})) {
                 $Str.='<tr><td colspan="3">'.                  $Str.='<tr>'
                     '<table><tr>';                      .'<td colspan="3">'
                       .&Apache::loncommon::start_data_table()
                       .&Apache::loncommon::start_data_table_header_row();
                 my $tmp = '<th>'.join('</th><th>',                  my $tmp = '<th>'.join('</th><th>',
                                       (&mt('Foil Name'),                                        (&mt('Foil Name'),
                                        &mt('Foil Text'),                                         &mt('Foil Text'),
                                        &mt('Option'),                                         &mt('Option'),
                                        &mt('Frequency'),                                         &mt('Frequency'),
                                        &mt('Percent'))).'</th></tr>';                                         &mt('Percent'))).'</th>'
                 my @foils = sort(keys(%{$data->{'foil_responses'}}));                            .&Apache::loncommon::end_data_table_header_row();
    my @foils = sort(keys(%{$ProblemData->{$partid.'.'.$respid}->{'_Foils'}}));
                 foreach my $foilid (@foils) {                  foreach my $foilid (@foils) {
                     my $prob_data = $ProblemData->{$partid.'.'.$respid};                      my $prob_data = $ProblemData->{$partid.'.'.$respid};
                     my $foil_count = $data->{'foil_count'}->{$foilid};                      my $foil_count = $data->{'foil_count'}->{$foilid};
                     my $foiltext = $prob_data->{'_Foils'}->{$foilid}->{'text'};                      my $foiltext = $prob_data->{'_Foils'}->{$foilid}->{'text'};
                     my $foilname = $prob_data->{'_Foils'}->{$foilid}->{'name'};                      my $foilname = $prob_data->{'_Foils'}->{$foilid}->{'name'};
                     my $rowspan = scalar(@{$prob_data->{'_Options'}});                      my $rowspan = scalar(@{$prob_data->{'_Options'}});
                     my $preamble = '<tr>'.                      my $preamble = &Apache::loncommon::start_data_table_row().
                         '<td valign="top" rowspan="'.$rowspan.'">'.                          '<td valign="top" rowspan="'.$rowspan.'">'.
                             $foilname.'</td>'.                              $foilname.'</td>'.
                         '<td valign="top" rowspan="'.$rowspan.'">'.                          '<td valign="top" rowspan="'.$rowspan.'">'.
Line 528  sub make_HTML_report { Line 538  sub make_HTML_report {
                             '<td align="right">'.$count.'</td>'.                              '<td align="right">'.$count.'</td>'.
                             '<td align="right">'.                              '<td align="right">'.
                                 sprintf('%.2f',100*$count/$foil_count).'%'.                                  sprintf('%.2f',100*$count/$foil_count).'%'.
                             '</td></tr>'.$/;                              '</td>'.&Apache::loncommon::end_data_table_row().$/;
                         $preamble = '<tr>';                          $preamble = &Apache::loncommon::continue_data_table_row(); #&Apache::loncommon::start_data_table_row();
                     }                      }
                 }                  }
                 $Str.=$tmp.'</table></td></tr>';                  $Str.=$tmp.&Apache::loncommon::end_data_table()
                        .'</td></tr>';
             } elsif (exists($data->{'_count'})      &&               } elsif (exists($data->{'_count'})      && 
                      exists($data->{'foil_values'}) &&                        exists($data->{'foil_values'}) && 
                      exists($data->{'map'})) {                       exists($data->{'map'})) {
Line 540  sub make_HTML_report { Line 551  sub make_HTML_report {
                 my $total = $data->{'_count'};                  my $total = $data->{'_count'};
                 my $sum = 0;                  my $sum = 0;
                 my $tmp;                  my $tmp;
                 foreach my $value (sort(keys(%{$data->{'foil_values'}}))) {   my @foils = sort(keys(%{$ProblemData->{$partid.'.'.$respid}
               ->{'_Foils'}}));
                   foreach my $foilid (@foils) {
                       my $value = $data->{'map_fv'}->{$foilid};
                     my $count = $data->{'foil_values'}->{$value};                      my $count = $data->{'foil_values'}->{$value};
                     my $foilid = $data->{'map'}->{$value};  
                     my $foiltext = $ProblemData->{$partid.'.'.$respid}->{'_Foils'}->{$foilid}->{'text'};                      my $foiltext = $ProblemData->{$partid.'.'.$respid}->{'_Foils'}->{$foilid}->{'text'};
                     my $foilname = $ProblemData->{$partid.'.'.$respid}->{'_Foils'}->{$foilid}->{'name'};                      my $foilname = $ProblemData->{$partid.'.'.$respid}->{'_Foils'}->{$foilid}->{'name'};
                     $tmp .= '<tr>'.                      $tmp .= &Apache::loncommon::start_data_table_row().
                         '<td>'.$foilname.'</td>'.                          '<td>'.$foilname.'</td>'.
                         '<td>'.$foiltext.'</td>'.                          '<td>'.$foiltext.'</td>'.
                         '<td align="right">'.$count.'</td>'.                          '<td align="right">'.$count.'</td>'.
                         '<td align="right">'.                          '<td align="right">'.
                             sprintf("%.2f",$count/$total*100).'%</td>'.                              sprintf("%.2f",$count/$total*100).'%</td>'.
                         '</tr>'.$/;                          &Apache::loncommon::end_data_table_row().$/;
                 }                  }
                 $Str .= '<tr>'.                  $Str .= &Apache::loncommon::start_data_table_row().
                     '<th>'.&mt('Foil Name').'</th>'.                      '<th>'.&mt('Foil Name').'</th>'.
                     '<th>'.&mt('Text').'</th>'.                      '<th>'.&mt('Text').'</th>'.
                     '<th>'.&mt('Freq').'</th>'.                      '<th>'.&mt('Freq').'</th>'.
                     '<th>'.&mt('Percent').'</th>'.                      '<th>'.&mt('Percent').'</th>'.
                     '</tr>'.$/.                      &Apache::loncommon::end_data_table_row().$/.
                     $tmp;                      $tmp;
             }              }
             $Str.= '</table><hr />';              $Str.= &Apache::loncommon::end_data_table().'<hr />';
             $r->print($Str);              $r->print($Str);
             $r->rflush();              $r->rflush();
         }          }
Line 591  sub CreateInterface { Line 604  sub CreateInterface {
     ## Environment variable initialization      ## Environment variable initialization
     my $Str = '';      my $Str = '';
     my $output_selector = '<select name="output" size="5">'.$/;      my $output_selector = '<select name="output" size="5">'.$/;
     if (! exists($ENV{'form.output'})) {      if (! exists($env{'form.output'})) {
         $ENV{'form.output'} = 'HTML';          $env{'form.output'} = 'HTML';
     }      }
     foreach my $output_format ( {name=>'HTML',text=>&mt("HTML") },      foreach my $output_format ( {name=>'HTML',text=>&mt("HTML") },
                                 {name=>'Excel',text=>&mt("Excel") },                                  {name=>'Excel',text=>&mt("Excel") },
                                 {name=>'TXT',text=>&mt("Text (essays only)") },                                  {name=>'TXT',text=>&mt("Text (essays only)") },
                                 ) {                                  ) {
         $output_selector.='<option value="'.$output_format->{'name'}.'"';          $output_selector.='<option value="'.$output_format->{'name'}.'"';
         if ($ENV{'form.output'} eq $output_format->{'name'}) {          if ($env{'form.output'} eq $output_format->{'name'}) {
             $output_selector.=' selected';              $output_selector.=' selected';
         }          }
         $output_selector.= '>'.$output_format->{'text'}.'</option>'.$/;          $output_selector.= '>'.$output_format->{'text'}.'</option>'.$/;
     }      }
     $output_selector .= '</select>'.$/;      $output_selector .= '</select>'.$/;
     $Str .= &Apache::lonhtmlcommon::breadcrumbs      $Str .= &Apache::lonhtmlcommon::breadcrumbs('Student Submission Reports');
         (undef,'Student Submission Reports');  
     $Str .= '<p>';      $Str .= '<p>';
     $Str .= '<table cellspacing="5">'."\n";      $Str .= '<table cellspacing="5">'."\n";
     $Str .= '<tr>';      $Str .= '<tr>';
     $Str .= '<th>'.&mt('Sections').'</th>';      $Str .= '<th>'.&mt('Sections').'</th>';
     $Str .= '<th>'.&mt('Enrollment Status').'</th>';      $Str .= '<th>'.&mt('Groups').'</th>';
       $Str .= '<th>'.&mt('Access Status').'</th>';
     $Str .= '<th>'.&mt('Output Format').'</th>';      $Str .= '<th>'.&mt('Output Format').'</th>';
     $Str .= '<th>'.'&nbsp;'.'</th>';      $Str .= '<th>'.'&nbsp;'.'</th>';
     $Str .= '</tr>'."\n";      $Str .= '</tr>'."\n";
Line 620  sub CreateInterface { Line 633  sub CreateInterface {
     $Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5);      $Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5);
     $Str .= '</td>';      $Str .= '</td>';
     #      #
       $Str .= '<td align="center">'."\n";
       $Str .= &Apache::lonstatistics::GroupSelect('Group','multiple',5);
       $Str .= '</td>';
       #
     $Str .= '<td align="center">';      $Str .= '<td align="center">';
     $Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,5);      $Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,5);
     $Str .= '</td>';      $Str .= '</td>';
Line 628  sub CreateInterface { Line 645  sub CreateInterface {
     #      #
     # Render problem checkbox      # Render problem checkbox
     my $prob_checkbox = '<input type="checkbox" name="renderprob" ';      my $prob_checkbox = '<input type="checkbox" name="renderprob" ';
     if (exists($ENV{'form.renderprob'}) && $ENV{'form.renderprob'} eq 'true') {      if (exists($env{'form.renderprob'}) && $env{'form.renderprob'} eq 'true') {
         $prob_checkbox .= 'checked ';          $prob_checkbox .= 'checked ';
     }      }
     $prob_checkbox .= 'value="true" />';      $prob_checkbox .= 'value="true" />';
Line 641  sub CreateInterface { Line 658  sub CreateInterface {
     $Str .= '</tr>'."\n";      $Str .= '</tr>'."\n";
     $Str .= '</table>'."\n";      $Str .= '</table>'."\n";
     #      #
     $Str .= '<nobr>'.&mt('Status: [_1]',      $Str .= '<p><span class="LC_nobreak">'
                          '<input type="text" '.             .&mt('Status: [_1]',
                          'name="stats_status" size="60" value="" />').                      '<input type="text" name="stats_status"'
             '</nobr>'.'</p>';                         .' size="60" value="" readonly="readonly" />')
              .'</span></p>';
       $Str .= '</p>';
     ##      ##
     return $Str;      return $Str;
 }  }

Removed from v.1.7  
changed lines
  Added in v.1.18


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