version 1.123, 2003/11/21 19:15:12
|
version 1.138, 2004/03/02 16:09:42
|
Line 29
|
Line 29
|
package Apache::caparesponse; |
package Apache::caparesponse; |
use strict; |
use strict; |
use capa; |
use capa; |
|
use Apache::lonlocal; |
|
|
BEGIN { |
BEGIN { |
&Apache::lonxml::register('Apache::caparesponse',('caparesponse','numericalresponse','stringresponse','formularesponse')); |
&Apache::lonxml::register('Apache::caparesponse',('caparesponse','numericalresponse','stringresponse','formularesponse')); |
Line 95 sub end_numericalresponse {
|
Line 96 sub end_numericalresponse {
|
if (!$Apache::lonxml::default_homework_loaded) { |
if (!$Apache::lonxml::default_homework_loaded) { |
&Apache::lonxml::default_homework_load($safeeval); |
&Apache::lonxml::default_homework_load($safeeval); |
} |
} |
|
my $tag; |
|
if (scalar(@$tagstack)) { $tag=$$tagstack[-1]; } |
if ( $target eq 'grade' && defined($ENV{'form.submitted'})) { |
if ( $target eq 'grade' && defined($ENV{'form.submitted'})) { |
&Apache::response::setup_params($$tagstack[-1]); |
&Apache::response::setup_params($tag); |
$safeeval->share_from('capa',['&caparesponse_capa_check_answer']); |
$safeeval->share_from('capa',['&caparesponse_capa_check_answer']); |
my $partid = $Apache::inputtags::part; |
my $partid = $Apache::inputtags::part; |
my $id = $Apache::inputtags::response['-1']; |
my $id = $Apache::inputtags::response['-1']; |
if ($Apache::lonhomework::type eq 'exam' && |
if ($Apache::lonhomework::type eq 'exam' && |
$$tagstack[-1] eq 'formularesponse') { |
$tag eq 'formularesponse') { |
$increment=&Apache::response::scored_response($partid,$id); |
$increment=&Apache::response::scored_response($partid,$id); |
} else { |
} else { |
my $response = &Apache::response::getresponse(); |
my $response = &Apache::response::getresponse(); |
Line 142 sub end_numericalresponse {
|
Line 145 sub end_numericalresponse {
|
#sig fig don't make much sense either |
#sig fig don't make much sense either |
if (($Apache::lonhomework::type eq 'exam' || |
if (($Apache::lonhomework::type eq 'exam' || |
$ENV{'form.submitted'} eq 'scantron') && |
$ENV{'form.submitted'} eq 'scantron') && |
$$tagstack[-1] eq 'numericalresponse') { |
$tag eq 'numericalresponse') { |
$expression.=';my $sig=undef;'; |
$expression.=';my $sig=undef;'; |
} |
} |
|
|
if ($$tagstack[-1] eq 'formularesponse') { |
if ($tag eq 'formularesponse') { |
$expression.=';my $type="fml";'; |
$expression.=';my $type="fml";'; |
} elsif ($$tagstack[-1] eq 'numericalresponse') { |
} elsif ($tag eq 'numericalresponse') { |
$expression.=';my $type="float";'; |
$expression.=';my $type="float";'; |
} |
} |
$expression.="');"; |
$expression.="');"; |
Line 177 sub end_numericalresponse {
|
Line 180 sub end_numericalresponse {
|
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 />".&mt('The correct answer is')." "; |
} |
} |
for (my $i=0; $i <= $#answers; $i++) { |
for (my $i=0; $i <= $#answers; $i++) { |
my $answer=$answers[$i]; |
my $answer=$answers[$i]; |
Line 211 sub end_numericalresponse {
|
Line 214 sub end_numericalresponse {
|
my $partid=$Apache::inputtags::part; |
my $partid=$Apache::inputtags::part; |
my $id=$Apache::inputtags::response[-1]; |
my $id=$Apache::inputtags::response[-1]; |
my $number_of_bubbles = &Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.numbubbles'); |
my $number_of_bubbles = &Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.numbubbles'); |
|
if ($Apache::inputtags::params{'numbubbles'}) { |
|
$number_of_bubbles = $Apache::inputtags::params{'numbubbles'}; |
|
} |
if (!$number_of_bubbles) { $number_of_bubbles=8; } |
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, |
Line 222 sub end_numericalresponse {
|
Line 229 sub end_numericalresponse {
|
$formats[0],\@incorrect); |
$formats[0],\@incorrect); |
my @alphabet=('A'..'Z'); |
my @alphabet=('A'..'Z'); |
if ($target eq 'web') { |
if ($target eq 'web') { |
if ($$tagstack[-1] eq 'numericalresponse') { |
if ($tag 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"}; |
my $previous=$Apache::lonhomework::history{"resource.$Apache::inputtags::part.$id.submission"}; |
Line 237 sub end_numericalresponse {
|
Line 244 sub end_numericalresponse {
|
$bubble_values[$ind].'</td>'; |
$bubble_values[$ind].'</td>'; |
} |
} |
$result.='</tr></table>'; |
$result.='</tr></table>'; |
} elsif ($$tagstack[-1] eq 'formularesponse') { |
} elsif ($tag eq 'formularesponse') { |
$result.= '<br /><br /><font color="red"> |
$result.= '<br /><br /><font color="red"> |
<textarea name="HWVAL_'.$id.'" rows="4" cols="50"> |
<textarea name="HWVAL_'.$id.'" rows="4" cols="50"> |
</textarea></font> <br /><br />'; |
</textarea></font> <br /><br />'; |
Line 246 sub end_numericalresponse {
|
Line 253 sub end_numericalresponse {
|
if ((defined $unit) and ($unit=~/\S/) 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 ($tag eq 'numericalresponse') { |
my ($celllength,$number_of_tables,@table_range)= |
my ($celllength,$number_of_tables,@table_range)= |
&get_table_sizes($formats[0],$number_of_bubbles); |
&get_table_sizes($number_of_bubbles,\@bubble_values); |
my $j=0; |
my $j=0; |
my $cou=0; |
my $cou=0; |
$result.='\vskip -1 mm \noindent \begin{enumerate}\item[\textbf{'.$Apache::lonxml::counter.'}.]'; |
$result.='\vskip -1 mm \noindent \begin{enumerate}\item[\textbf{'.$Apache::lonxml::counter.'}.]'; |
for (my $i=0;$i<$number_of_tables;$i++) { |
for (my $i=0;$i<$number_of_tables;$i++) { |
$result.='\vskip -1 mm \noindent \begin{tabular}{'; |
$result.='\vskip -1 mm \noindent \begin{tabular}{'; |
for (my $ind=0;$ind<$table_range[$j];$ind++) { |
for (my $ind=0;$ind<$table_range[$j];$ind++) { |
$result.='lp{'.$celllength.' mm}'; |
$result.='p{3 mm}p{'.$celllength.' mm}'; |
} |
} |
$result.='}'; |
$result.='}'; |
for (my $ind=$cou;$ind<$cou+$table_range[$j];$ind++) { |
for (my $ind=$cou;$ind<$cou+$table_range[$j];$ind++) { |
$result.='\hskip -3 mm {\small \textbf{'.$alphabet[$ind].'}}$\bigcirc$\hskip -2 mm & {\small '.$bubble_values[$ind].'} '; |
$result.='\hskip -4 mm {\small \textbf{'.$alphabet[$ind].'}}$\bigcirc$ & \hskip -3 mm {\small '.$bubble_values[$ind].'} '; |
if ($ind != $cou+$table_range[$j]-1) {$result.=' & ';} |
if ($ind != $cou+$table_range[$j]-1) {$result.=' & ';} |
} |
} |
$cou += $table_range[$j]; |
$cou += $table_range[$j]; |
Line 286 sub end_numericalresponse {
|
Line 293 sub end_numericalresponse {
|
my $part_id="$Apache::inputtags::part.$Apache::inputtags::response[-1]"; |
my $part_id="$Apache::inputtags::part.$Apache::inputtags::response[-1]"; |
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"} = $tag; |
my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,$safeeval); |
my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,$safeeval); |
push (@{ $Apache::lonhomework::analyze{"$part_id.incorrect"} }, @incorrect); |
push (@{ $Apache::lonhomework::analyze{"$part_id.incorrect"} }, @incorrect); |
} |
} |
&Apache::response::setup_params($$tagstack[-1]); |
if (scalar(@$tagstack)) { |
|
&Apache::response::setup_params($tag); |
|
} |
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval); |
my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval); |
my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval); |
my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval); |
my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval); |
my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval); |
my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval); |
my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval); |
|
|
if ($target eq 'answer') { |
if ($target eq 'answer') { |
$result.=&Apache::response::answer_header($$tagstack[-1]); |
$result.=&Apache::response::answer_header($tag); |
} |
} |
for(my $i=0;$i<=$#answers;$i++) { |
for(my $i=0;$i<=$#answers;$i++) { |
my $ans=$answers[$i]; |
my $ans=$answers[$i]; |
Line 311 sub end_numericalresponse {
|
Line 320 sub end_numericalresponse {
|
if ($Apache::inputtags::params{'sig'}) { |
if ($Apache::inputtags::params{'sig'}) { |
($sighigh,$siglow)=&get_sigrange($Apache::inputtags::params{'sig'}); |
($sighigh,$siglow)=&get_sigrange($Apache::inputtags::params{'sig'}); |
} |
} |
if ($fmt && $$tagstack[-1] eq 'numericalresponse') { |
if ($fmt && $tag eq 'numericalresponse') { |
$fmt=~s/e/E/g; |
$fmt=~s/e/E/g; |
$ans = sprintf('%.'.$fmt,$ans); |
$ans = sprintf('%.'.$fmt,$ans); |
if ($high) { |
if ($high) { |
Line 320 sub end_numericalresponse {
|
Line 329 sub end_numericalresponse {
|
} |
} |
} |
} |
if ($target eq 'answer') { |
if ($target eq 'answer') { |
if ($high && $$tagstack[-1] eq 'numericalresponse') { $ans.=' ['.$low.','.$high.']'; } |
if ($high && $tag eq 'numericalresponse') { $ans.=' ['.$low.','.$high.']'; } |
if ($sighigh && $$tagstack[-1] eq 'numericalresponse') { |
if ($sighigh && $tag eq 'numericalresponse') { |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
$ans.= " Sig $siglow - $sighigh"; |
$ans.= " Sig $siglow - $sighigh"; |
} else { |
} else { |
$ans.= " Sig <i>$siglow - $sighigh</i>"; |
$ans.= " Sig <i>$siglow - $sighigh</i>"; |
} |
} |
} |
} |
$result.=&Apache::response::answer_part($$tagstack[-1],$ans); |
$result.=&Apache::response::answer_part($tag,$ans); |
} elsif ($target eq 'analyze') { |
} elsif ($target eq 'analyze') { |
push (@{ $Apache::lonhomework::analyze{"$part_id.answer"} }, $ans); |
push (@{ $Apache::lonhomework::analyze{"$part_id.answer"} }, $ans); |
if ($high) { |
if ($high) { |
Line 338 sub end_numericalresponse {
|
Line 347 sub end_numericalresponse {
|
} |
} |
} |
} |
if (defined($unit) and ($unit ne '') and |
if (defined($unit) and ($unit ne '') and |
$$tagstack[-1] eq 'numericalresponse') { |
$tag eq '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($tag, |
" Unit: $unit "); |
" Unit: $unit "); |
} else { |
} else { |
$result.=&Apache::response::answer_part($$tagstack[-1], |
$result.=&Apache::response::answer_part($tag, |
"Unit: <b>$unit</b>"); |
"Unit: <b>$unit</b>"); |
} |
} |
} elsif ($target eq 'analyze') { |
} elsif ($target eq 'analyze') { |
push (@{ $Apache::lonhomework::analyze{"$part_id.unit"} }, $unit); |
push (@{ $Apache::lonhomework::analyze{"$part_id.unit"} }, $unit); |
} |
} |
} |
} |
if ($$tagstack[-1] eq 'formularesponse' && $target eq 'answer') { |
if ($tag eq 'formularesponse' && $target eq 'answer') { |
my $samples=&Apache::lonxml::get_param('samples',$parstack,$safeeval); |
my $samples=&Apache::lonxml::get_param('samples',$parstack,$safeeval); |
$result.=&Apache::response::answer_part($$tagstack[-1],$samples); |
$result.=&Apache::response::answer_part($tag,$samples); |
} |
} |
if ($target eq 'answer') { |
if ($target eq 'answer') { |
$result.=&Apache::response::answer_footer($$tagstack[-1]); |
$result.=&Apache::response::answer_footer($tag); |
} |
} |
} |
} |
if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || |
if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || |
Line 368 sub end_numericalresponse {
|
Line 377 sub end_numericalresponse {
|
} |
} |
|
|
sub get_table_sizes { |
sub get_table_sizes { |
my ($format,$number_of_bubbles)=@_; |
my ($number_of_bubbles,$rbubble_values)=@_; |
my $max_val = 0; |
my $scale=2; #mm for one digit |
if ($format=~m/^(\d+)E([^\d]*)(\d*)$/) { |
my $cell_width=0; |
$max_val=$1+$2+4; |
foreach my $member (@$rbubble_values) { |
|
my $cell_width_real=0; |
|
if ($member=~/(\+|-)?(\d*)\.?(\d*)\s*\$\\times\s*10\^{(\+|-)?(\d+)}\$/) { |
|
$cell_width_real=(length($2)+length($3)+length($5)+7)*$scale; |
|
} elsif ($member=~/(\d*)\.?(\d*)(E|e)(\+|-)?(\d*)/) { |
|
$cell_width_real=(length($1)+length($2)+length($5)+9)*$scale; |
|
} elsif ($member=~/(\d*)\.(\d*)/) { |
|
$cell_width_real=(length($1)+length($2)+3)*$scale; |
|
} else { |
|
$cell_width_real=(length($member)+1)*$scale*0.9; |
|
} |
|
if ($cell_width_real>$cell_width) {$cell_width=$cell_width_real;} |
|
} |
|
$cell_width+=8; |
|
my $textwidth; |
|
if ($ENV{'form.textwidth'} ne '') { |
|
$ENV{'form.textwidth'}=~/(\d*)\.?(\d*)/; |
|
$textwidth=$1.'.'.$2; |
} else { |
} else { |
$max_val=4; |
$ENV{'textwidth'}=~/(\d+)\.?(\d*)/; |
|
$textwidth=$1.'.'.$2; |
} |
} |
$max_val = int(0.9*$ENV{'form.textwidth'}/(($max_val+6)*2)); |
my $bubbles_per_line=int($textwidth/$cell_width); |
my $celllength = 0.9*$ENV{'form.textwidth'}/$max_val-10; |
if (($bubbles_per_line > $number_of_bubbles/2) && ($number_of_bubbles % 2==0)) {$bubbles_per_line=$number_of_bubbles/2;} |
|
my $number_of_tables = int($number_of_bubbles/$bubbles_per_line); |
my @table_range = (); |
my @table_range = (); |
my $number_of_tables = int($number_of_bubbles/$max_val); |
for (my $i=0;$i<$number_of_tables;$i++) {push @table_range,$bubbles_per_line;} |
for (my $i=0;$i<$number_of_tables;$i++) {push @table_range,$max_val;} |
if ($number_of_bubbles % $bubbles_per_line) { |
if ($number_of_bubbles % $max_val != 0) { |
|
$number_of_tables++; |
$number_of_tables++; |
push @table_range,($number_of_bubbles % $max_val); |
push @table_range,($number_of_bubbles % $bubbles_per_line); |
} |
} |
return ($celllength,$number_of_tables,@table_range); |
$cell_width-=8; |
|
$cell_width=$cell_width*3/4; |
|
return ($cell_width,$number_of_tables,@table_range); |
} |
} |
|
|
sub format_number { |
sub format_number { |
Line 410 sub format_number {
|
Line 439 sub format_number {
|
my $number = $1; |
my $number = $1; |
my $power = $2; |
my $power = $2; |
$power=~s/^\+//; |
$power=~s/^\+//; |
$power=~s/^(-?)0+(\d+)//; |
$power=~s/^(-?)0+(\d+)/$1$2/; |
$ans=$number.'$\times 10^{'.$1.$2.'}$'; #'stupidemacs |
$ans=$number.'$\times 10^{'.$power.'}$'; #'stupidemacs |
} |
} |
} |
} |
return $ans; |
return $ans; |
Line 424 sub make_numerical_bubbles {
|
Line 453 sub make_numerical_bubbles {
|
my @oldseed=&Math::Random::random_get_seed(); |
my @oldseed=&Math::Random::random_get_seed(); |
if (defined($incorrect) && ref($incorrect)) { |
if (defined($incorrect) && ref($incorrect)) { |
&Apache::lonxml::debug("inside ".(scalar(@$incorrect)+1 gt $number_of_bubbles)); |
&Apache::lonxml::debug("inside ".(scalar(@$incorrect)+1 gt $number_of_bubbles)); |
if (scalar(@$incorrect)+1 >= $number_of_bubbles) { |
if (defined($$incorrect[0]) && |
|
scalar(@$incorrect)+1 >= $number_of_bubbles) { |
&Apache::lonxml::debug("inside ".(scalar(@$incorrect)+1).":$number_of_bubbles"); |
&Apache::lonxml::debug("inside ".(scalar(@$incorrect)+1).":$number_of_bubbles"); |
&Apache::response::setrandomnumber(); |
&Apache::response::setrandomnumber(); |
my @rand_inc=&Math::Random::random_permutation(@$incorrect); |
my @rand_inc=&Math::Random::random_permutation(@$incorrect); |
Line 432 sub make_numerical_bubbles {
|
Line 462 sub make_numerical_bubbles {
|
@bubble_values=sort {$a <=> $b} (@bubble_values,$answer); |
@bubble_values=sort {$a <=> $b} (@bubble_values,$answer); |
&Apache::lonxml::debug("Answer was :$answer: returning :".$#bubble_values.": whih are :".join(':',@bubble_values)); |
&Apache::lonxml::debug("Answer was :$answer: returning :".$#bubble_values.": whih are :".join(':',@bubble_values)); |
&Math::Random::random_set_seed(@oldseed); |
&Math::Random::random_set_seed(@oldseed); |
|
if (defined($format) && $format ne '') { |
|
foreach my $value (@bubble_values) { |
|
$value=&format_number($value,$format,$target); |
|
} |
|
} |
return @bubble_values; |
return @bubble_values; |
} |
} |
#FIXME what to do when not enough incorrects specified? |
if (defined($$incorrect[0]) && |
|
scalar(@$incorrect)+1 < $number_of_bubbles) { |
|
&Apache::lonxml::warning("Not enough incorrect answers were specified in the incorrect array, ignoring the specified incorrect answers and instead generating them."); |
|
} |
} |
} |
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..$number_of_bubbles); |
&Apache::response::setrandomnumber(); |
&Apache::response::setrandomnumber(); |
my $ind=&Math::Random::random_uniform_integer(1,0,$#powers); |
my $ind=&Math::Random::random_uniform_integer(1,0,$#powers); |
my $power = $powers[$ind]; |
my $power = $powers[$ind]; |
Line 484 sub get_sigrange {
|
Line 522 sub get_sigrange {
|
} |
} |
if (!$sig_ubound) { $sig_ubound=$sig_lbound; } |
if (!$sig_ubound) { $sig_ubound=$sig_lbound; } |
} |
} |
|
if (($sig_ubound<$sig_lbound) || |
|
($sig_lbound > 15) || |
|
($sig =~/(\+|-)/ ) ) { |
|
my $errormsg=&mt("Invalid Significant figures detected")." ($sig)"; |
|
if ($ENV{'request.state'} eq 'construct') { |
|
$errormsg.= |
|
&Apache::loncommon::help_open_topic('Significant_Figures'); |
|
} |
|
&Apache::lonxml::error($errormsg); |
|
} |
return ($sig_ubound,$sig_lbound); |
return ($sig_ubound,$sig_lbound); |
} |
} |
|
|
Line 502 sub start_stringresponse {
|
Line 550 sub start_stringresponse {
|
[['cs','Case Sensitive'],['ci','Case Insensitive'], |
[['cs','Case Sensitive'],['ci','Case Insensitive'], |
['mc','Case Insensitive, Any Order'], |
['mc','Case Insensitive, Any Order'], |
['re','Regular Expression']],$token); |
['re','Regular Expression']],$token); |
|
$result.=&Apache::edit::checked_arg('Answer Display:','answerdisplay', |
|
[['inline','Inline']],$token); |
$result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row(); |
$result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row(); |
} elsif ($target eq 'modified') { |
} elsif ($target eq 'modified') { |
my $constructtag; |
my $constructtag; |
$constructtag=&Apache::edit::get_new_args($token,$parstack, |
$constructtag=&Apache::edit::get_new_args($token,$parstack, |
$safeeval,'answer', |
$safeeval,'answer', |
'type'); |
'type','answerdisplay'); |
if ($constructtag) { |
if ($constructtag) { |
$result = &Apache::edit::rebuild_tag($token); |
$result = &Apache::edit::rebuild_tag($token); |
$result.=&Apache::edit::handle_insert(); |
$result.=&Apache::edit::handle_insert(); |
} |
} |
} elsif ($target eq 'answer' || $target eq 'grade') { |
} elsif ($target eq 'answer' || $target eq 'grade') { |
&Apache::response::reset_params(); |
&Apache::response::reset_params(); |
} |
} |
Line 526 sub end_stringresponse {
|
Line 576 sub end_stringresponse {
|
my $id=$Apache::inputtags::response[-1]; |
my $id=$Apache::inputtags::response[-1]; |
my $answer=&Apache::lonxml::get_param('answer',$parstack,$safeeval); |
my $answer=&Apache::lonxml::get_param('answer',$parstack,$safeeval); |
my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval); |
my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval); |
|
my $answerdisplay=&Apache::lonxml::get_param('answerdisplay',$parstack,$safeeval); |
&Apache::lonxml::debug("current $answer ".$token->[2]); |
&Apache::lonxml::debug("current $answer ".$token->[2]); |
if (!$Apache::lonxml::default_homework_loaded) { |
if (!$Apache::lonxml::default_homework_loaded) { |
&Apache::lonxml::default_homework_load($safeeval); |
&Apache::lonxml::default_homework_load($safeeval); |
} |
} |
if ( $target eq 'grade' && defined($ENV{'form.submitted'})) { |
if ( $target eq 'grade' && defined($ENV{'form.submitted'})) { |
&Apache::response::setup_params($$tagstack[-1]); |
&Apache::response::setup_params('stringresponse'); |
$safeeval->share_from('capa',['&caparesponse_capa_check_answer']); |
$safeeval->share_from('capa',['&caparesponse_capa_check_answer']); |
if ($Apache::lonhomework::type eq 'exam' || |
if ($Apache::lonhomework::type eq 'exam' || |
$ENV{'form.submitted'} eq 'scantron') { |
$ENV{'form.submitted'} eq 'scantron') { |
Line 588 sub end_stringresponse {
|
Line 639 sub end_stringresponse {
|
my $status = $Apache::inputtags::status['-1']; |
my $status = $Apache::inputtags::status['-1']; |
if ( &Apache::response::show_answer() ) { |
if ( &Apache::response::show_answer() ) { |
if ($target eq 'web') { |
if ($target eq 'web') { |
$result="<br />The correct answer is ".$answer; |
$result=($answerdisplay eq 'inline'?'':"<br />".&mt('The correct answer is')." ") |
|
.$answer; |
# join(', ',@answers).".<br />"; |
# join(', ',@answers).".<br />"; |
} |
} |
} |
} |
Line 605 sub end_stringresponse {
|
Line 657 sub end_stringresponse {
|
} elsif ($target eq 'answer' || $target eq 'analyze') { |
} elsif ($target eq 'answer' || $target eq 'analyze') { |
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"} = 'stringresponse'; |
} |
} |
&Apache::response::setup_params($$tagstack[-1]); |
&Apache::response::setup_params('stringresponse'); |
if ($target eq 'answer') { |
if ($target eq 'answer') { |
$result.=&Apache::response::answer_header($$tagstack[-1]); |
$result.=&Apache::response::answer_header('stringresponse'); |
} |
} |
# foreach my $ans (@answers) { |
# foreach my $ans (@answers) { |
if ($target eq 'answer') { |
if ($target eq 'answer') { |
$result.=&Apache::response::answer_part($$tagstack[-1],$answer); |
$result.=&Apache::response::answer_part('stringresponse',$answer); |
} elsif ($target eq 'analyze') { |
} elsif ($target eq 'analyze') { |
push (@{ $Apache::lonhomework::analyze{"$part.$id.answer"} }, |
push (@{ $Apache::lonhomework::analyze{"$part.$id.answer"} }, |
$answer); |
$answer); |
Line 631 sub end_stringresponse {
|
Line 683 sub end_stringresponse {
|
} |
} |
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('stringresponse', |
"$string"); |
"$string"); |
} else { |
} else { |
$result.=&Apache::response::answer_part($$tagstack[-1], |
$result.=&Apache::response::answer_part('stringresponse', |
"<b>$string</b>"); |
"<b>$string</b>"); |
} |
} |
} elsif ($target eq 'analyze') { |
} elsif ($target eq 'analyze') { |
Line 642 sub end_stringresponse {
|
Line 694 sub end_stringresponse {
|
$type); |
$type); |
} |
} |
if ($target eq 'answer') { |
if ($target eq 'answer') { |
$result.=&Apache::response::answer_footer($$tagstack[-1]); |
$result.=&Apache::response::answer_footer('stringresponse'); |
} |
} |
} elsif ($target eq 'edit') { |
} elsif ($target eq 'edit') { |
$result.='</td></tr>'.&Apache::edit::end_table; |
$result.='</td></tr>'.&Apache::edit::end_table; |