Diff for /loncom/homework/optionresponse.pm between versions 1.195 and 1.204

version 1.195, 2014/11/28 18:23:04 version 1.204, 2025/02/21 20:55:17
Line 51  sub start_optionresponse { Line 51  sub start_optionresponse {
   undef(%Apache::response::foilnames);    undef(%Apache::response::foilnames);
   if ($target eq 'edit') {    if ($target eq 'edit') {
     $result.=&Apache::edit::start_table($token)      $result.=&Apache::edit::start_table($token)
        .'<tr><td><span class="LC_nobreak">'.&mt('Multiple Option Response Question').'</span> '         .'<tr><td><span class="LC_nobreak">'.&Apache::loncommon::insert_folding_button().' '
          .&mt('Multiple Option Response Question').'</span> '
        .&Apache::loncommon::help_open_topic('Option_Response_Problems')."</td>"         .&Apache::loncommon::help_open_topic('Option_Response_Problems')."</td>"
        .'<td><span class="LC_nobreak">'.&mt('Delete?').' '         .'<td><span class="LC_nobreak">'.&mt('Delete?').' '
        .&Apache::edit::deletelist($target,$token)         .&Apache::edit::deletelist($target,$token)
Line 105  sub start_foilgroup { Line 106  sub start_foilgroup {
   $Apache::optionresponse::conceptgroup=0;    $Apache::optionresponse::conceptgroup=0;
   &Apache::response::pushrandomnumber(undef,$target);    &Apache::response::pushrandomnumber(undef,$target);
   if ($target eq 'edit') {    if ($target eq 'edit') {
     my $optionlist="<option></option>\n";      my $optionlist="<option value=\"\"></option>\n";
     my $option;      my $option;
     my @opt;      my @opt;
     my @raw_options = &Apache::lonxml::get_param('options', $parstack, $safeeval, 0,  0, 1);      my @raw_options = &Apache::lonxml::get_param('options', $parstack, $safeeval, 0,  0, 1);
Line 127  sub start_foilgroup { Line 128  sub start_foilgroup {
         maxcheck => 'Enter maximum number students may check (e.g., 3)',          maxcheck => 'Enter maximum number students may check (e.g., 3)',
         mincheck => 'Enter minimum number students need to check (e.g., 1)',          mincheck => 'Enter minimum number students need to check (e.g., 1)',
     );      );
     $result.= (<<ENDTABLE);      $result.= sprintf(<<ENDTABLE, &Apache::loncommon::insert_folding_button());
       <tr><td>$lt{'sel'}</td>        <tr><td>%s $lt{'sel'}</td>
         <td>          <td>
   $lt{'add'} <input type="text" name="$Apache::lonxml::curdepth.options" />    $lt{'add'} <input type="text" name="$Apache::lonxml::curdepth.options" />
         </td>          </td>
Line 299  sub end_foilgroup { Line 300  sub end_foilgroup {
  my $wrong=0;   my $wrong=0;
  my $ignored=0;   my $ignored=0;
         my $checked=0;          my $checked=0;
           my $corrchkd=0;
           my $corrunchkd=0;
           my $incorrchkd=0;
           my $incorrunchkd=0;
         my ($numrows,$bubbles_per_row);          my ($numrows,$bubbles_per_row);
         if ($Apache::lonhomework::scantronmode) {          if ($Apache::lonhomework::scantronmode) {
             my $numitems = scalar(@opt);              my $numitems = scalar(@opt);
Line 328  sub end_foilgroup { Line 333  sub end_foilgroup {
                 }                  }
             }              }
         }          }
           my $part=$Apache::inputtags::part;
           my $id = $Apache::inputtags::response['-1'];
           my @relweights;
           my $nonlenient=&grading_is_nonlenient($part,$id,\@relweights);
  foreach $name (@whichopt) {   foreach $name (@whichopt) {
   my $response;    my $response;
           if ($env{'form.submitted'} eq 'scantron') {            if ($env{'form.submitted'} eq 'scantron') {
Line 368  sub end_foilgroup { Line 377  sub end_foilgroup {
             if ($checkboxopt) {              if ($checkboxopt) {
                 if ($response eq $checkboxopt) {                  if ($response eq $checkboxopt) {
                     $checked++;                      $checked++;
                       if ($grade{$name}) {
                           $corrchkd ++;
                       } else {
                           $incorrchkd ++;
                       }
                   } else {
                       if ($grade{$name}) {
                           $corrunchkd ++;
                       } else {
                           $incorrunchkd ++;
                       }
                 }                  }
             }               }
   } else {    } else {
     $ignored++;      $ignored++;
   }    }
  }   }
  my $part=$Apache::inputtags::part;  
         my $nonlenient=&grading_is_nonlenient($part);  
  my $id = $Apache::inputtags::response['-1'];  
  my $responsestr=&Apache::lonnet::hash2str(%responsehash);   my $responsestr=&Apache::lonnet::hash2str(%responsehash);
  my $gradestr   =&Apache::lonnet::hash2str(%grade);   my $gradestr   =&Apache::lonnet::hash2str(%grade);
  my %previous=&Apache::response::check_for_previous($responsestr,   my %previous=&Apache::response::check_for_previous($responsestr,
Line 452  sub end_foilgroup { Line 469  sub end_foilgroup {
     $ad='ASSIGNED_SCORE';      $ad='ASSIGNED_SCORE';
         }          }
         $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$ad;          $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$ad;
                   my $awarded;
                   my $totalfoils = $#{ $Apache::response::foilgroup{'names'} }+1;
                   if (($checkboxopt) && ($max >= $totalfoils) && (@relweights > 0)) {
                       if ($right == scalar(@whichopt)) {
                           $awarded = 1;
                       } else {
                           $awarded = ($corrchkd*$relweights[0] + $corrunchkd*$relweights[1] +
                                       $incorrchkd*$relweights[2] + $incorrunchkd*$relweights[3])/(scalar(@whichopt));
                           $awarded = 1 if ($awarded > 1);
                           $awarded = 0 if ($awarded < 0);
                       }
                   } else {
                       $awarded = $right/(scalar(@whichopt));
                   }
         $Apache::lonhomework::results{"resource.$part.$id.awarded"}=          $Apache::lonhomework::results{"resource.$part.$id.awarded"}=
     $right/(scalar(@whichopt));      $awarded;
         $Apache::lonhomework::results{"resource.$part.$id.numfoils"}=          $Apache::lonhomework::results{"resource.$part.$id.numfoils"}=
     scalar(@whichopt);      scalar(@whichopt);
      }       }
Line 491  sub end_foilgroup { Line 522  sub end_foilgroup {
 }  }
   
 sub grading_is_nonlenient {  sub grading_is_nonlenient {
     my ($part) = @_;      my ($part,$id,$relweights) = @_;
 # Web mode: we are non-lenient unless told otherwise  # Web mode: we are non-lenient unless told otherwise
     my $defaultparm = 'off';      my $defaultparm = 'off';
     my $nonlenient = 0;      my $nonlenient = 1;
 # Grading a bubblesheet exam: we are grading lenient unless told otherwise  # Grading a bubblesheet exam: we are grading lenient unless told otherwise
     if ($Apache::lonhomework::scantronmode) {      if ($Apache::lonhomework::scantronmode) {
         $defaultparm = 'on';          $defaultparm = 'on';
         $nonlenient = 1;          $nonlenient = 0;
     }      }
     my $lenientparm =      my $lenientparm =
         &Apache::response::get_response_param($part,'lenient',$defaultparm);          &Apache::response::get_response_param($part,'lenient',$defaultparm);
     if ($lenientparm=~/^0|off|no$/i) {      if ($lenientparm eq 'default') {
           $lenientparm = $defaultparm;
       }
       $lenientparm =
           &Apache::response::get_response_param($part.'_'.$id,'lenient',$lenientparm);
       if ($lenientparm eq 'default') {
           $lenientparm = $defaultparm;
       }
       if ($lenientparm=~/^(?:0|off|no)$/i) {
         $nonlenient = 1;          $nonlenient = 1;
     } elsif ($lenientparm=~/^1|on|yes$/i) {      } elsif ($lenientparm=~/^(?:1|on|yes)$/i) {
           $nonlenient = 0;
       } elsif ($lenientparm =~ /^\-?[.\d]+,\-?[.\d]+,\-?[.\d]+,\-?[.\d]+$/) {
           if (ref($relweights) eq 'ARRAY') {
               @{$relweights} = split(/,/,$lenientparm);
           }
         $nonlenient = 0;          $nonlenient = 0;
     }      }
       if (!$nonlenient) {
           $Apache::inputtags::leniency=1;
       }
     return $nonlenient;      return $nonlenient;
 }  }
   
Line 689  sub displayfoils { Line 736  sub displayfoils {
                  &mt('Select all that are [_1].','<b>'.$checkboxopt.'</b>');                   &mt('Select all that are [_1].','<b>'.$checkboxopt.'</b>');
     }      }
     foreach $name (@whichopt) {      foreach $name (@whichopt) {
         if ($target eq 'web') {
             $result.= '<div class="LC_optionfoil">';
         }
       my $text=$Apache::response::foilgroup{$name.'.text'};        my $text=$Apache::response::foilgroup{$name.'.text'};
       if ($text!~/^\s*$/) {        if ($text!~/^\s*$/) {
   if ($target eq 'tex') {    if ($target eq 'tex') {
       $break='\vskip 0 mm ';        $break='\vskip 0 mm ';
   } elsif ($target eq 'web') {  
       $break='<br />';  
   }    }
       }        }
       my $lastopt=$lastresponse{$name};        my $lastopt=$lastresponse{$name};
       my $optionlist="<option></option>\n";        my $optionlist="<option value=\"\"></option>\n";
   
       if($target eq 'tex' and $env{'form.pdfFormFields'} eq 'yes'        if($target eq 'tex' and $env{'form.pdfFormFields'} eq 'yes'
          && $Apache::inputtags::status[-1] eq 'CAN_ANSWER') {           && $Apache::inputtags::status[-1] eq 'CAN_ANSWER') {
Line 746  sub displayfoils { Line 794  sub displayfoils {
 # lastopt is what the user submitted before  # lastopt is what the user submitted before
 # defopt is what the field is going to start out with: either previous choice or altopt  # defopt is what the field is going to start out with: either previous choice or altopt
 # fieldname is this input field's name after HWVAL_  # fieldname is this input field's name after HWVAL_
                   $optionlist='<input type="hidden" name="HWVAL_'.$fieldname.'" value="'.$escdefopt.'" />'.                    $optionlist='<input type="hidden" name="HWVAL_'.$fieldname.'" value="'.$escdefopt.'" /><label>'.
                   '<input type="checkbox" name="HWCHK_'.$fieldname.'" onclick="javascript:if (this.form.elements[\'HWCHK_'.                    '<input type="checkbox" name="HWCHK_'.$fieldname.'" onclick="javascript:if (this.form.elements[\'HWCHK_'.
                   $fieldname.'\'].checked) { this.form.elements[\'HWVAL_'.$fieldname.'\'].value=\''.$esccheckboxopt.'\'; } else { this.form.elements[\'HWVAL_'.$fieldname.'\'].value=\''.$escaltopt.'\'; };setSubmittedPart(\''.$part.'\');"'.($defopt eq $checkboxopt?' checked="checked"':'')." />\n";                    $fieldname.'\'].checked) { this.form.elements[\'HWVAL_'.$fieldname.'\'].value=\''.$esccheckboxopt.'\'; } else { this.form.elements[\'HWVAL_'.$fieldname.'\'].value=\''.$escaltopt.'\'; };javascript:setSubmittedPart(\''.$part.'\');"'.($defopt eq $checkboxopt?' checked="checked"':'')." />\n";
               } else {                } else {
 # classic selection list  # classic selection list
           $optionlist='<select onchange="javascript:setSubmittedPart(\''.            $optionlist='<label><select onchange="javascript:setSubmittedPart(\''.
   $part.'\');" name="HWVAL_'.    $part.'\');" name="HWVAL_'.
   $Apache::inputtags::response['-1'].':'.$temp.'">'.    $Apache::inputtags::response['-1'].':'.$temp.'">'.
   $optionlist."</select>\n";    $optionlist."</select>\n";
Line 773  sub displayfoils { Line 821  sub displayfoils {
   $result.=$break.$text."\n";    $result.=$break.$text."\n";
   if ($Apache::lonhomework::type eq 'exam') {    if ($Apache::lonhomework::type eq 'exam') {
       $result.=&webbubbles(\@opt,\@alphabet,$temp,$lastopt);        $result.=&webbubbles(\@opt,\@alphabet,$temp,$lastopt);
     } else {
         $result.= '</label>';
   }    }
   $temp++;    $temp++;
       } else {        } else {
Line 832  sub displayfoils { Line 882  sub displayfoils {
           }            }
   $displayoptionintex=0;    $displayoptionintex=0;
       }        }
         if ($target eq 'web') {
             $result.= '</div>';
         }
     }      }
   }    }
   
Line 882  sub webbubbles { Line 935  sub webbubbles {
     my @alphabet=@$ralphabet;      my @alphabet=@$ralphabet;
     my $result='';      my $result='';
     my $number_of_bubbles = $#opt + 1;      my $number_of_bubbles = $#opt + 1;
     $result.= '<table border="1"><tr>';      $result.= '<fieldset class="LC_webbubbles">'.
                 '<legend class="LC_visually_hidden">'.&mt('Choose one').'</legend>'.
                 '<ul class="LC_webbubbles">';
     for (my $ind=0;$ind<$number_of_bubbles;$ind++) {      for (my $ind=0;$ind<$number_of_bubbles;$ind++) {
  my $checked='';   my $checked='';
  if ($lastopt eq $opt[$ind]) {   if ($lastopt eq $opt[$ind]) {
     $checked=' checked="on" ';      $checked=' checked="on" ';
  }   }
  $result.='<td><input type="radio" name="HWVAL_'.   $result.='<li><label><input type="radio" name="HWVAL_'.
     $Apache::inputtags::response['-1'].':'.$temp.      $Apache::inputtags::response['-1'].':'.$temp.
     '" value="'.$opt[$ind].'" '.$checked.' />';      '" value="'.$opt[$ind].'" '.$checked.' />';
  if ($alphabet[$ind]) {   if ($alphabet[$ind]) {
     $result.=$alphabet[$ind].': ';      $result.=$alphabet[$ind].': ';
  }   }
  $result.=$opt[$ind].'</td>';   $result.=$opt[$ind].'</label></li>';
     }      }
     $result.='</tr></table>';      $result.='</ul></fieldset>';
     return $result;      return $result;
 }  }
   

Removed from v.1.195  
changed lines
  Added in v.1.204


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