version 1.102, 2003/05/19 21:15:21
|
version 1.118, 2003/10/23 07:54:55
|
Line 41 sub start_numericalresponse {
|
Line 41 sub start_numericalresponse {
|
if ($target eq 'edit') { |
if ($target eq 'edit') { |
$result.=&Apache::edit::tag_start($target,$token); |
$result.=&Apache::edit::tag_start($target,$token); |
$result.=&Apache::edit::text_arg('Answer:','answer',$token); |
$result.=&Apache::edit::text_arg('Answer:','answer',$token); |
|
$result.=&Apache::edit::text_arg('Incorrect Answers:','incorrect', |
|
$token); |
if ($token->[1] eq 'numericalresponse') { |
if ($token->[1] eq 'numericalresponse') { |
$result.=&Apache::edit::text_arg('Unit:','unit',$token,5). |
$result.=&Apache::edit::text_arg('Unit:','unit',$token,5). |
&Apache::loncommon::help_open_topic('Physical_Units'); |
&Apache::loncommon::help_open_topic('Physical_Units'); |
Line 61 sub start_numericalresponse {
|
Line 63 sub start_numericalresponse {
|
if ($token->[1] eq 'numericalresponse') { |
if ($token->[1] eq 'numericalresponse') { |
$constructtag=&Apache::edit::get_new_args($token,$parstack, |
$constructtag=&Apache::edit::get_new_args($token,$parstack, |
$safeeval,'answer', |
$safeeval,'answer', |
'unit','format'); |
'incorrect','unit', |
|
'format'); |
} elsif ($token->[1] eq 'stringresponse') { |
} elsif ($token->[1] eq 'stringresponse') { |
$constructtag=&Apache::edit::get_new_args($token,$parstack, |
$constructtag=&Apache::edit::get_new_args($token,$parstack, |
$safeeval,'answer', |
$safeeval,'answer', |
Line 114 sub end_numericalresponse {
|
Line 117 sub end_numericalresponse {
|
if ( $response =~ /[^\s]/) { |
if ( $response =~ /[^\s]/) { |
my $ad; |
my $ad; |
my %previous = &Apache::response::check_for_previous($response,$partid,$id); |
my %previous = &Apache::response::check_for_previous($response,$partid,$id); |
$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response; |
|
&Apache::lonxml::debug("submitted a $response<br>\n"); |
&Apache::lonxml::debug("submitted a $response<br>\n"); |
&Apache::lonxml::debug($$parstack[-1] . "\n<br>"); |
&Apache::lonxml::debug($$parstack[-1] . "\n<br>"); |
|
|
if ($ENV{'form.submitted'} eq 'scantron') { |
if ($ENV{'form.submitted'} eq 'scantron') { |
my $number_of_bubbles = 8;#default values for number of bubbles |
my $number_of_bubbles = &Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.numbubbles'); |
my (@formats)=&Apache::lonxml::get_param_var('format', |
if (!$number_of_bubbles) { $number_of_bubbles=8; } |
$parstack,$safeeval); |
my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval); |
my (@answers)=&Apache::lonxml::get_param_var('answer', |
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval); |
$parstack,$safeeval); |
my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,$safeeval); |
my @values=&make_numerical_bubbles($number_of_bubbles,$target, |
my @values=&make_numerical_bubbles($number_of_bubbles,$target,$answers[0],$formats[0],\@incorrect); |
$answers[0],$formats[0]); |
|
$response=$values[$response]; |
$response=$values[$response]; |
} else { |
} else { |
$response =~ s/\\/\\\\/g; |
$response =~ s/\\/\\\\/g; |
$response =~ s/\'/\\\'/g; |
$response =~ s/\'/\\\'/g; |
} |
} |
|
$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response; |
&Apache::lonxml::debug("current $response"); |
&Apache::lonxml::debug("current $response"); |
my $expression="&caparesponse_check_list('".$response."','". |
my $expression="&caparesponse_check_list('".$response."','". |
$$parstack[-1]; |
$$parstack[-1]; |
Line 150 sub end_numericalresponse {
|
Line 152 sub end_numericalresponse {
|
$expression.=';my $type="float";'; |
$expression.=';my $type="float";'; |
} |
} |
$expression.="');"; |
$expression.="');"; |
|
my @answer=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval); |
|
&Apache::lonxml::debug('answer is'.join(':',@answer)); |
|
@{$safeeval->varglob('CAPARESPONSE_CHECK_LIST_answer')}=@answer; |
|
|
$result = &Apache::run::run($expression,$safeeval); |
$result = &Apache::run::run($expression,$safeeval); |
my ($awards) = split /:/ , $result; |
my ($awards) = split /:/ , $result; |
($ad) = &Apache::inputtags::finalizeawards(split /,/ , $awards); |
($ad) = &Apache::inputtags::finalizeawards(split /,/ , $awards); |
Line 165 sub end_numericalresponse {
|
Line 171 sub end_numericalresponse {
|
$safeeval); |
$safeeval); |
my $award = $Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"}; |
my $award = $Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"}; |
my $status = $Apache::inputtags::status['-1']; |
my $status = $Apache::inputtags::status['-1']; |
if ( ($award =~ /^correct/ |
if ( &Apache::response::show_answer() ) { |
&& lc($Apache::lonhomework::problemstatus) ne 'no') |
|
|| $status eq "SHOW_ANSWER" |
|
|| $ENV{'form.texaward'} eq 'SHOW_ANSWER') { |
|
my (@formats)=&Apache::lonxml::get_param_var('format',$parstack, |
my (@formats)=&Apache::lonxml::get_param_var('format',$parstack, |
$safeeval); |
$safeeval); |
my $unit=&Apache::lonxml::get_param_var('unit',$parstack, |
my $unit=&Apache::lonxml::get_param_var('unit',$parstack, |
$safeeval); |
$safeeval); |
if ($target eq 'web') { |
if ($target eq 'web') { |
$result="<br />The correct answer is "; |
$result="<br />The correct answer is "; |
} elsif ($target eq 'tex') { |
|
if ($ENV{'form.texaward'} eq 'SHOW_ANSWER') { |
|
$result='\vskip 0 mm The correct answer is \\texttt{ '; |
|
} |
|
} |
} |
for (my $i=0; $i <= $#answers; $i++) { |
for (my $i=0; $i <= $#answers; $i++) { |
my $answer=$answers[$i]; |
my $answer=$answers[$i]; |
Line 190 sub end_numericalresponse {
|
Line 189 sub end_numericalresponse {
|
} |
} |
my $formatted; |
my $formatted; |
if ((defined($format)) && ($format ne '')) { |
if ((defined($format)) && ($format ne '')) { |
|
$format=~s/e/E/g; |
&Apache::lonxml::debug("formatting with :$format: answer :$answer:"); |
&Apache::lonxml::debug("formatting with :$format: answer :$answer:"); |
$formatted=sprintf('%.'.$format,$answer).','; |
$formatted=sprintf('%.'.$format,$answer).','; |
} else { |
} else { |
&Apache::lonxml::debug("no format answer :$answer:"); |
&Apache::lonxml::debug("no format answer :$answer:"); |
$formatted="$answer,"; |
$formatted="$answer,"; |
} |
} |
if ($ENV{'form.texaward'} eq 'SHOW_ANSWER') { |
|
$result.=$formatted; |
|
} |
|
if ($target eq 'tex') { |
if ($target eq 'tex') { |
$formatted=''; |
$formatted=''; |
#$formatted=&Apache::lonxml::latex_special_symbols($formatted); |
#$formatted=&Apache::lonxml::latex_special_symbols($formatted); |
Line 208 sub end_numericalresponse {
|
Line 205 sub end_numericalresponse {
|
chop $result; |
chop $result; |
if ($target eq 'web') { |
if ($target eq 'web') { |
$result.=" $unit.<br />"; |
$result.=" $unit.<br />"; |
} elsif ($target eq 'tex') { |
|
if ($ENV{'form.texaward'} eq 'SHOW_ANSWER') { |
|
$result.=&Apache::lonxml::latex_special_symbols($unit); |
|
$result.="}. \\vskip 0 mm "; |
|
} |
|
} |
} |
} |
} |
if ($Apache::lonhomework::type eq 'exam') { |
if ($Apache::lonhomework::type eq 'exam') { |
my $number_of_bubbles = 8; #default values for number of bubbles |
my $partid=$Apache::inputtags::part; |
|
my $id=$Apache::inputtags::response[-1]; |
|
my $number_of_bubbles = &Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.numbubbles'); |
|
if (!$number_of_bubbles) { $number_of_bubbles=8; } |
my (@formats)=&Apache::lonxml::get_param_var('format',$parstack, |
my (@formats)=&Apache::lonxml::get_param_var('format',$parstack, |
$safeeval); |
$safeeval); |
my $unit=&Apache::lonxml::get_param_var('unit',$parstack, |
my $unit=&Apache::lonxml::get_param_var('unit',$parstack, |
$safeeval); |
$safeeval); |
|
my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,$safeeval); |
my @bubble_values=&make_numerical_bubbles($number_of_bubbles, |
my @bubble_values=&make_numerical_bubbles($number_of_bubbles, |
$target,$answers[0], |
$target,$answers[0], |
$formats[0]); |
$formats[0],\@incorrect); |
my @alphabet=('A'..'Z'); |
my @alphabet=('A'..'Z'); |
my $id=$Apache::inputtags::response[-1]; |
|
if ($target eq 'web') { |
if ($target eq 'web') { |
if ($$tagstack[-1] eq 'numericalresponse') { |
if ($$tagstack[-1] eq 'numericalresponse') { |
if ($unit=~/\S/) {$result.=' (in '.$unit.')<br /><br />';} |
if ($unit=~/\S/) {$result.=' (in '.$unit.')<br /><br />';} |
$result.= '<table border="1"><tr>'; |
$result.= '<table border="1"><tr>'; |
|
my $previous=$Apache::lonhomework::history{"resource.$Apache::inputtags::part.$id.submission"}; |
for (my $ind=0;$ind<$number_of_bubbles;$ind++) { |
for (my $ind=0;$ind<$number_of_bubbles;$ind++) { |
|
my $checked=''; |
|
if ($previous eq $bubble_values[$ind]) { |
|
$checked=" checked='on' "; |
|
} |
$result.='<td><input type="radio" name="HWVAL_'.$id. |
$result.='<td><input type="radio" name="HWVAL_'.$id. |
'" value="'.$bubble_values[$ind].'"><b>'. |
'" value="'.$bubble_values[$ind].'" '.$checked |
$alphabet[$ind].'</b>: '. |
.' /><b>'.$alphabet[$ind].'</b>: '. |
$bubble_values[$ind].'</td>'; |
$bubble_values[$ind].'</td>'; |
} |
} |
$result.='</tr></table>'; |
$result.='</tr></table>'; |
} elsif ($$tagstack[-1] eq 'formularesponse') { |
} elsif ($$tagstack[-1] eq 'formularesponse') { |
Line 243 sub end_numericalresponse {
|
Line 243 sub end_numericalresponse {
|
</textarea></font> <br /><br />'; |
</textarea></font> <br /><br />'; |
} |
} |
} elsif ($target eq 'tex') { |
} elsif ($target eq 'tex') { |
if (defined $unit and $Apache::lonhomework::type eq 'exam') { |
if ((defined $unit) and ($unit=~/\S/) and ($Apache::lonhomework::type eq 'exam')) { |
$result.=' \textit{(in} \verb|'.$unit.'|\textit{)} '; |
$result.=' \textit{(in} \verb|'.$unit.'|\textit{)} '; |
} |
} |
if ($$tagstack[-1] eq 'numericalresponse') { |
if ($$tagstack[-1] eq 'numericalresponse') { |
Line 287 sub end_numericalresponse {
|
Line 287 sub end_numericalresponse {
|
if ($target eq 'analyze') { |
if ($target eq 'analyze') { |
push (@{ $Apache::lonhomework::analyze{"parts"} },$part_id); |
push (@{ $Apache::lonhomework::analyze{"parts"} },$part_id); |
$Apache::lonhomework::analyze{"$part_id.type"} = $$tagstack[-1]; |
$Apache::lonhomework::analyze{"$part_id.type"} = $$tagstack[-1]; |
|
my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,$safeeval); |
|
push (@{ $Apache::lonhomework::analyze{"$part_id.incorrect"} }, @incorrect); |
} |
} |
&Apache::response::setup_params($$tagstack[-1]); |
&Apache::response::setup_params($$tagstack[-1]); |
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval); |
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval); |
Line 310 sub end_numericalresponse {
|
Line 312 sub end_numericalresponse {
|
($sighigh,$siglow)=&get_sigrange($Apache::inputtags::params{'sig'}); |
($sighigh,$siglow)=&get_sigrange($Apache::inputtags::params{'sig'}); |
} |
} |
if ($fmt && $$tagstack[-1] eq 'numericalresponse') { |
if ($fmt && $$tagstack[-1] eq 'numericalresponse') { |
|
$fmt=~s/e/E/g; |
$ans = sprintf('%.'.$fmt,$ans); |
$ans = sprintf('%.'.$fmt,$ans); |
if ($high) { |
if ($high) { |
$high=sprintf('%.'.$fmt,$high); |
$high=sprintf('%.'.$fmt,$high); |
Line 320 sub end_numericalresponse {
|
Line 323 sub end_numericalresponse {
|
if ($high && $$tagstack[-1] eq 'numericalresponse') { $ans.=' ['.$low.','.$high.']'; } |
if ($high && $$tagstack[-1] eq 'numericalresponse') { $ans.=' ['.$low.','.$high.']'; } |
if ($sighigh && $$tagstack[-1] eq 'numericalresponse') { |
if ($sighigh && $$tagstack[-1] eq 'numericalresponse') { |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
$ans.= " Sig \\textit{$siglow - $sighigh}"; |
$ans.= " Sig $siglow - $sighigh"; |
} else { |
} else { |
$ans.= " Sig <i>$siglow - $sighigh</i>"; |
$ans.= " Sig <i>$siglow - $sighigh</i>"; |
} |
} |
Line 339 sub end_numericalresponse {
|
Line 342 sub end_numericalresponse {
|
if ($target eq 'answer') { |
if ($target eq 'answer') { |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
$result.=&Apache::response::answer_part($$tagstack[-1], |
$result.=&Apache::response::answer_part($$tagstack[-1], |
"Unit: \\verb|$unit|"); |
" Unit: $unit "); |
} else { |
} else { |
$result.=&Apache::response::answer_part($$tagstack[-1], |
$result.=&Apache::response::answer_part($$tagstack[-1], |
"Unit: <b>$unit</b>"); |
"Unit: <b>$unit</b>"); |
} |
} |
} elsif ($target eq 'analyze') { |
} elsif ($target eq 'analyze') { |
push (@{ $Apache::lonhomework::analyze{"$part_id.unit"} }, |
push (@{ $Apache::lonhomework::analyze{"$part_id.unit"} }, $unit); |
$unit); |
|
} |
} |
} |
} |
if ($type || $token->[1] eq 'stringresponse') { |
if ($type || $$tagstack[-1] eq 'stringresponse') { |
my $string='Case Insensitive'; |
my $string='Case Insensitive'; |
if ($type eq 'mc') { |
if ($type eq 'mc') { |
$string='Multiple Choice'; |
$string='Multiple Choice'; |
Line 363 sub end_numericalresponse {
|
Line 365 sub end_numericalresponse {
|
if ($target eq 'answer') { |
if ($target eq 'answer') { |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
$result.=&Apache::response::answer_part($$tagstack[-1], |
$result.=&Apache::response::answer_part($$tagstack[-1], |
"\\textbf{$string}"); |
"$string"); |
} else { |
} else { |
$result.=&Apache::response::answer_part($$tagstack[-1], |
$result.=&Apache::response::answer_part($$tagstack[-1], |
"<b>$string</b>"); |
"<b>$string</b>"); |
} |
} |
} elsif ($target eq 'analyze') { |
} elsif ($target eq 'analyze') { |
push (@{ $Apache::lonhomework::analyze{"$part_id.type"} }, |
push (@{ $Apache::lonhomework::analyze{"$part_id.str_type"} }, |
$type); |
$type); |
} |
} |
} |
} |
Line 413 sub format_number {
|
Line 415 sub format_number {
|
my ($number,$format,$target)=@_; |
my ($number,$format,$target)=@_; |
my $ans; |
my $ans; |
if ($format ne '') { |
if ($format ne '') { |
|
$format=~s/e/E/g; |
$ans = sprintf('%.'.$format,$number); |
$ans = sprintf('%.'.$format,$number); |
} else { |
} else { |
my $format = ''; |
my $format = ''; |
#What is the number? (integer,decimal,floating point) |
#What is the number? (integer,decimal,floating point) |
if ($number=~/^(\d*\.?\d*)(E|e)(\d*)$/) { |
if ($number=~/^(\d*\.?\d*)(E|e)(\d*)$/) { |
$format = 'e'.$2; |
$format = '3e'; |
} elsif ($number=~/^(\d*)\.(\d*)$/) { |
} elsif ($number=~/^(\d*)\.(\d*)$/) { |
$format = '4f'; |
$format = '4f'; |
} elsif ($number=~/^(\d*)$/) { |
} elsif ($number=~/^(\d*)$/) { |
Line 439 sub format_number {
|
Line 442 sub format_number {
|
} |
} |
|
|
sub make_numerical_bubbles { |
sub make_numerical_bubbles { |
my ($number_of_bubbles,$target,$answer,$format) =@_; |
my ($number_of_bubbles,$target,$answer,$format,$incorrect) =@_; |
my @bubble_values = (); |
my @bubble_values = (); |
|
&Apache::lonxml::debug("incorrect is $incorrect"); |
|
if (defined($incorrect) && ref($incorrect)) { |
|
&Apache::lonxml::debug("inside ".(scalar(@$incorrect)+1 gt $number_of_bubbles)); |
|
if (scalar(@$incorrect)+1 >= $number_of_bubbles) { |
|
&Apache::lonxml::debug("inside ".(scalar(@$incorrect)+1).":$number_of_bubbles"); |
|
&Apache::response::setrandomnumber(); |
|
my @rand_inc=&Math::Random::random_permutation(@$incorrect); |
|
@bubble_values=@rand_inc[0..($number_of_bubbles-2)]; |
|
@bubble_values=sort {$a <=> $b} (@bubble_values,$answer); |
|
&Apache::lonxml::debug("Answer was :$answer: returning :".$#bubble_values.": whih are :".join(':',@bubble_values)); |
|
return @bubble_values; |
|
} |
|
#FIXME what to do when not enough incorrects specified? |
|
} |
my @factors = (1.13,1.17,1.25,1.33,1.45); #default values of factors |
my @factors = (1.13,1.17,1.25,1.33,1.45); #default values of factors |
my @powers = (1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0); #default values for powers |
my @powers = (1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0); #default values for powers |
&Apache::response::setrandomnumber(); |
&Apache::response::setrandomnumber(); |
Line 495 sub start_stringresponse {
|
Line 512 sub start_stringresponse {
|
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my $result; |
my $result; |
if ($target eq 'meta') { |
if ($target eq 'meta') { |
|
&Apache::response::start_response($parstack,$safeeval); |
$result=&Apache::response::meta_package_write('stringresponse'); |
$result=&Apache::response::meta_package_write('stringresponse'); |
|
&Apache::response::end_response(); |
} else { |
} else { |
$result.=&start_numericalresponse(@_); |
$result.=&start_numericalresponse(@_); |
} |
} |
Line 510 sub start_formularesponse {
|
Line 529 sub start_formularesponse {
|
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; |
my $result; |
my $result; |
if ($target eq 'meta') { |
if ($target eq 'meta') { |
|
&Apache::response::start_response($parstack,$safeeval); |
$result=&Apache::response::meta_package_write('formularesponse'); |
$result=&Apache::response::meta_package_write('formularesponse'); |
|
&Apache::response::end_response(); |
} else { |
} else { |
$result.=&start_numericalresponse(@_); |
$result.=&start_numericalresponse(@_); |
} |
} |