Diff for /loncom/homework/default_homework.lcpm between versions 1.156 and 1.157

version 1.156, 2011/06/07 22:07:09 version 1.157, 2011/06/08 01:39:28
Line 270  sub caparesponse_check_list { Line 270  sub caparesponse_check_list {
     my $type = $LONCAPA::CAPAresponse_args{'type'};      my $type = $LONCAPA::CAPAresponse_args{'type'};
     my $answerunit=$LONCAPA::CAPAresponse_args{'unit'};      my $answerunit=$LONCAPA::CAPAresponse_args{'unit'};
     &LONCAPA_INTERNAL_DEBUG("Got type :$type: answer unit :$answerunit:\n");      &LONCAPA_INTERNAL_DEBUG("Got type :$type: answer unit :$answerunit:\n");
          
       my $preprocess=$LONCAPA::CAPAresponse_args{'preprocess'};
       $preprocess=~s/^\&//;
   
     my $num_input_lines =      my $num_input_lines =
  scalar(@{$LONCAPA::CAPAresponse_answer->{'answers'}});   scalar(@{$LONCAPA::CAPAresponse_answer->{'answers'}});
           
Line 319  sub caparesponse_check_list { Line 322  sub caparesponse_check_list {
         } else {          } else {
            ($part1,$part2)=($responses->[0][-1]=~ /^([\d\.\,\s\$]*(?:(?:[xX\*]10[\^\*]*|[eE]*)[\+\-]*\d*)*(?:^|\S)\d+)([\$\s\w\^\*\/\(\)\+\-]*[^\d\.\s\,][\$\s\w\^\*\/\(\)\+\-]*)$/);             ($part1,$part2)=($responses->[0][-1]=~ /^([\d\.\,\s\$]*(?:(?:[xX\*]10[\^\*]*|[eE]*)[\+\-]*\d*)*(?:^|\S)\d+)([\$\s\w\^\*\/\(\)\+\-]*[^\d\.\s\,][\$\s\w\^\*\/\(\)\+\-]*)$/);
         }          }
         if ($part1 && $part2) {          if (defined($part1) && defined($part2)) {
     $responses->[0][-1]=$part1;      $responses->[0][-1]=$part1;
     $unit=&capa_formula_fix($part2);      $unit=&capa_formula_fix($part2);
             &LONCAPA_INTERNAL_DEBUG("Found unit :$unit:");              &LONCAPA_INTERNAL_DEBUG("Found unit :$unit:");
Line 329  sub caparesponse_check_list { Line 332  sub caparesponse_check_list {
     $unit=~s/\s//;      $unit=~s/\s//;
     my $error;      my $error;
     foreach my $response (@$responses) {      foreach my $response (@$responses) {
        foreach my $element (@$response) {         foreach my $element (@$response) {
             # See if we have preprocessor
             if ($preprocess=~/\S/) {
                if (defined(&$preprocess)) {
                   no strict 'refs';
                   $element=&$preprocess($element);
                   use strict 'refs';
                }
             }
           if (($type eq 'float') || (($type eq '') && ($unit ne ''))) {            if (($type eq 'float') || (($type eq '') && ($unit ne ''))) {
               $element =~ s/\s//g;                $element =~ s/\s//g;
           }            }

Removed from v.1.156  
changed lines
  Added in v.1.157


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