version 1.222, 2008/03/06 02:48:23
|
version 1.223, 2008/03/06 16:28:22
|
Line 678 sub end_numericalresponse {
|
Line 678 sub end_numericalresponse {
|
#} |
#} |
} |
} |
if ($high && $tag eq 'numericalresponse') { |
if ($high && $tag eq 'numericalresponse') { |
$element.=' ['.$low.','.$high.']'; |
$element.=': ['.$low.','.$high.']'; |
$tolline .= "[$low, $high]"; |
$tolline .= "[$low, $high]"; |
} |
} |
if (defined($sighigh) && $tag eq 'numericalresponse') { |
if (defined($sighigh) && $tag eq 'numericalresponse') { |
if ($env{'form.answer_output_mode'} eq 'tex') { |
if ($env{'form.answer_output_mode'} eq 'tex') { |
$element.= " Sig $siglow - $sighigh"; |
$element.= ": Sig $siglow - $sighigh"; |
} else { |
} else { |
$element.= " Sig <i>$siglow - $sighigh</i>"; |
$element.= " Sig <i>$siglow - $sighigh</i>"; |
$sigline .= "[$siglow, $sighigh]"; |
$sigline .= "[$siglow, $sighigh]"; |
Line 703 sub end_numericalresponse {
|
Line 703 sub end_numericalresponse {
|
} |
} |
} |
} |
if ($target eq 'answer') { |
if ($target eq 'answer') { |
$result.= &Apache::response::answer_part($tag,join(', ',@all_answer_info)); |
$result.= &Apache::response::answer_part($tag,join('; ',@all_answer_info)); |
} |
} |
} |
} |
|
|