version 1.187, 2006/02/06 23:02:50
|
version 1.188, 2006/03/09 00:41:13
|
Line 362 sub end_numericalresponse {
|
Line 362 sub end_numericalresponse {
|
$bubble_display->[$ind].'</td>'; |
$bubble_display->[$ind].'</td>'; |
} |
} |
$result.='</tr></table>'; |
$result.='</tr></table>'; |
} elsif ($tag eq 'formularesponse') { |
|
$result.= '<br /><br /><font color="red"> |
|
<textarea name="HWVAL_'.$id.'" rows="4" cols="50"> |
|
</textarea></font> <br /><br />'; |
|
} |
} |
} elsif ($target eq 'tex') { |
} elsif ($target eq 'tex') { |
if ((defined $unit) and ($unit=~/\S/) and ($Apache::lonhomework::type eq 'exam')) { |
if ((defined $unit) and ($unit=~/\S/) and ($Apache::lonhomework::type eq 'exam')) { |
Line 393 sub end_numericalresponse {
|
Line 389 sub end_numericalresponse {
|
} |
} |
$result.='\end{enumerate}'; |
$result.='\end{enumerate}'; |
} else { |
} else { |
$result.='\fbox{\fbox{\parbox{\textwidth-5mm}{\strut\\\\\strut\\\\\strut\\\\\strut\\\\}}}'; |
$increment = &Apache::response::repetition(); |
my $repetition = &Apache::response::repetition(); |
|
$result.='\begin{enumerate}'; |
|
for (my $i=0;$i<$repetition;$i++) { |
|
$result.='\item[\textbf{'.($Apache::lonxml::counter+$i).'}.]\textit{Leave blank on scoring form}\vskip 0 mm'; |
|
} |
|
$increment=$repetition; |
|
$result.= '\end{enumerate}'; |
|
} |
} |
} |
} |
} |
} |
Line 856 sub end_stringresponse {
|
Line 845 sub end_stringresponse {
|
$Apache::lonhomework::results{"resource.$part.$id.awardmsg"}=$msg; |
$Apache::lonhomework::results{"resource.$part.$id.awardmsg"}=$msg; |
} |
} |
} |
} |
} elsif ($target eq 'web' || $target eq 'tex') { |
|
my $award = $Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"}; |
|
my $status = $Apache::inputtags::status['-1']; |
|
if ($Apache::lonhomework::type eq 'exam' && $target eq 'tex') { |
|
$result.='\fbox{\fbox{\parbox{\textwidth-5mm}{\strut\\\\\strut\\\\\strut\\\\\strut\\\\}}}'; |
|
$increment = &Apache::response::repetition(); |
|
$result.='\begin{enumerate}'; |
|
for (my $i=0;$i<$increment;$i++) { |
|
$result.='\item[\textbf{'.($Apache::lonxml::counter+$i). |
|
'}.]\textit{Leave blank on scoring form}\vskip 0 mm'; |
|
} |
|
$result.= '\end{enumerate}'; |
|
} |
|
} 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"); |