Diff for /loncom/homework/rankresponse.pm between versions 1.72.2.1 and 1.73

version 1.72.2.1, 2018/06/08 11:57:01 version 1.73, 2016/01/22 22:42:51
Line 362  sub displayfoils { Line 362  sub displayfoils {
     my $text=$Apache::response::foilgroup{$name.'.text'};      my $text=$Apache::response::foilgroup{$name.'.text'};
     my $value=shift(@correctorder);      my $value=shift(@correctorder);
     if ($target eq 'web') {      if ($target eq 'web') {
  $result.='<br /><b>'.$value.':</b> '.$text;   $result.='<div class="LC_rankfoil"><b>'.$value.':</b> '.$text.'</div>';
     } else {      } else {
  $result.=' \strut\\\\\strut '.$value.':'.$text;   $result.=' \strut\\\\\strut '.$value.':'.$text;
     }      }
Line 410  sub displayfoils { Line 410  sub displayfoils {
     my $lastopt=$lastresponse{$name};      my $lastopt=$lastresponse{$name};
     my $optionlist='';      my $optionlist='';
     if ($target ne 'tex') {      if ($target ne 'tex') {
                 $optionlist = "<option value=\"\"></option>\n";                  $optionlist = "<option></option>\n";
             }               } 
             if ($target eq 'tex' && $env{'form.pdfFormFields'} eq 'yes') {              if ($target eq 'tex' && $env{'form.pdfFormFields'} eq 'yes') {
                 my $fieldname = $env{'request.symb'}.'&part_'.$Apache::inputtags::part.'&rankresponse'.'&HWVAL_'.$Apache::inputtags::response['-1'].':'.$temp;                  my $fieldname = $env{'request.symb'}.'&part_'.$Apache::inputtags::part.'&rankresponse'.'&HWVAL_'.$Apache::inputtags::response['-1'].':'.$temp;
Line 420  sub displayfoils { Line 420  sub displayfoils {
     foreach $option (@whichopt) {      foreach $option (@whichopt) {
  if ($option eq $lastopt) {   if ($option eq $lastopt) {
     if ($target ne 'tex' ) {      if ($target ne 'tex' ) {
                         $optionlist.="<option value=\"$option\" selected=\"selected\">$option</option>\n";                          $optionlist.="<option selected=\"selected\">$option</option>\n";
                     } elsif ($target eq 'tex' && $env{'form.pdfFormFields'} eq 'yes') {                      } elsif ($target eq 'tex' && $env{'form.pdfFormFields'} eq 'yes') {
                         $optionlist .= &Apache::lonxml::print_pdf_add_combobox_option($option);                           $optionlist .= &Apache::lonxml::print_pdf_add_combobox_option($option); 
                     }                      }
  } else {   } else {
     if ($target ne 'tex') {      if ($target ne 'tex') {
                         $optionlist.="<option value=\"$option\">$option</option>\n";                          $optionlist.="<option>$option</option>\n";
                     } elsif ($target eq 'tex' && $env{'form.pdfFormFields'} eq 'yes') {                      } elsif ($target eq 'tex' && $env{'form.pdfFormFields'} eq 'yes') {
                         $optionlist .= &Apache::lonxml::print_pdf_add_combobox_option($option);                           $optionlist .= &Apache::lonxml::print_pdf_add_combobox_option($option); 
                     }                      }
Line 444  sub displayfoils { Line 444  sub displayfoils {
     }      }
     my $text=$Apache::response::foilgroup{$name.'.text'};      my $text=$Apache::response::foilgroup{$name.'.text'};
     if ($target ne 'tex') {      if ($target ne 'tex') {
                   $result .= '<div class="LC_rankfoil">';
  if ($Apache::lonhomework::type ne 'exam') {   if ($Apache::lonhomework::type ne 'exam') {
     $result.='<br />'.$optionlist.$text."\n";      $result.=$optionlist.$text."\n";
  } else {   } else {
     $result.='<br />'.$text."\n";      $result.=$text."\n";
  }   }
  if ($Apache::lonhomework::type eq 'exam') {   if ($Apache::lonhomework::type eq 'exam') {
     my @values=(1..scalar(@whichopt));      my @values=(1..scalar(@whichopt));
     $result.=&Apache::optionresponse::webbubbles(\@values,\@whichopt,$temp,$lastopt);      $result.=&Apache::optionresponse::webbubbles(\@values,\@whichopt,$temp,$lastopt);
  }   }
                   $result .= '</div>';
     } else {      } else {
  if ($Apache::lonhomework::type eq 'exam') {   if ($Apache::lonhomework::type eq 'exam') {
                     my $itemlabel;                      my $itemlabel;

Removed from v.1.72.2.1  
changed lines
  Added in v.1.73


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