version 1.98, 2003/05/13 15:27:45
|
version 1.103, 2003/05/19 21:40:04
|
Line 309 sub end_numericalresponse {
|
Line 309 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) { |
if ($fmt && $$tagstack[-1] eq 'numericalresponse') { |
$ans = sprintf('%.'.$fmt,$ans); |
$ans = sprintf('%.'.$fmt,$ans); |
if ($high) { |
if ($high) { |
$high=sprintf('%.'.$fmt,$high); |
$high=sprintf('%.'.$fmt,$high); |
Line 317 sub end_numericalresponse {
|
Line 317 sub end_numericalresponse {
|
} |
} |
} |
} |
if ($target eq 'answer') { |
if ($target eq 'answer') { |
if ($high) { $ans.=' ['.$low.','.$high.']'; } |
if ($high && $$tagstack[-1] eq 'numericalresponse') { $ans.=' ['.$low.','.$high.']'; } |
if ($sighigh) { |
if ($sighigh && $$tagstack[-1] eq 'numericalresponse') { |
if ($ENV{'form.print_answer'} eq 'yes') { |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
$ans.= " Sig \\textit{$siglow - $sighigh}"; |
$ans.= " Sig \\textit{$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($$tagstack[-1],$ans); |
Line 334 sub end_numericalresponse {
|
Line 334 sub end_numericalresponse {
|
} |
} |
} |
} |
} |
} |
if ($unit) { |
if (defined($unit) and ($unit ne '') and |
|
$$tagstack[-1] eq 'numericalresponse') { |
if ($target eq 'answer') { |
if ($target eq 'answer') { |
if ($ENV{'form.print_answer'} eq 'yes') { |
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: \\verb|$unit|"); |
} else { |
} else { |
Line 344 sub end_numericalresponse {
|
Line 345 sub end_numericalresponse {
|
"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 360 sub end_numericalresponse {
|
Line 360 sub end_numericalresponse {
|
$string='Formula'; |
$string='Formula'; |
} |
} |
if ($target eq 'answer') { |
if ($target eq 'answer') { |
$result.=&Apache::response::answer_part($$tagstack[-1], |
if ($ENV{'form.answer_output_mode'} eq 'tex') { |
'<b>'.$string.'</b>'); |
$result.=&Apache::response::answer_part($$tagstack[-1], |
|
"\\textbf{$string}"); |
|
} else { |
|
$result.=&Apache::response::answer_part($$tagstack[-1], |
|
"<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); |
} |
} |
} |
} |