version 1.227, 2008/07/26 15:06:43
|
version 1.228, 2008/09/04 13:49:19
|
Line 312 sub start_numericalresponse {
|
Line 312 sub start_numericalresponse {
|
} |
} |
if (($token->[1] eq 'formularesponse') && |
if (($token->[1] eq 'formularesponse') && |
($Apache::inputtags::status['-1'] eq 'CAN_ANSWER')) { |
($Apache::inputtags::status['-1'] eq 'CAN_ANSWER')) { |
$result.=&edit_formula_button($id,"HWVAL_$id"); |
|
} |
} |
if ( &Apache::response::show_answer() ) { |
if ( &Apache::response::show_answer() ) { |
&set_answertext($tag_internal_answer_name,$target,$token,$tagstack, |
&set_answertext($tag_internal_answer_name,$target,$token,$tagstack, |
Line 322 sub start_numericalresponse {
|
Line 321 sub start_numericalresponse {
|
return $result; |
return $result; |
} |
} |
|
|
sub edit_formula_button { |
|
my ($id,$field)=@_; |
|
my $button=&mt('Edit Answer'); |
|
my $helplink=&Apache::loncommon::help_open_topic('Formula_Editor'); |
|
return(<<ENDFORMULABUTTON); |
|
<script language="JavaScript"> |
|
function edit_${id}_${field} (textarea) { |
|
thenumber = textarea; |
|
thedata = document.forms['lonhomework'].elements[textarea].value; |
|
newwin = window.open("/adm/dragmath/applet/MaximaPopup.html","","width=565,height=400,resizable"); |
|
} |
|
</script> |
|
<input type='button' value='$button' onclick="javascript:edit_${id}_${field}('${field}');void(0);" />$helplink |
|
ENDFORMULABUTTON |
|
} |
|
|
|
sub set_answertext { |
sub set_answertext { |
my ($name,$target,$token,$tagstack,$parstack,$parser,$safeeval, |
my ($name,$target,$token,$tagstack,$parstack,$parser,$safeeval, |
$response_level) = @_; |
$response_level) = @_; |
Line 530 sub end_numericalresponse {
|
Line 513 sub end_numericalresponse {
|
&Apache::lonxml::debug($$parstack[-1] . "\n<br>"); |
&Apache::lonxml::debug($$parstack[-1] . "\n<br>"); |
|
|
if ( &Apache::response::submitted('scantron')) { |
if ( &Apache::response::submitted('scantron')) { |
&add_in_tag_answer($parstack,$safeeval); |
&add_in_tag_answer($parstack,$safeeval); |
my ($values,$display)=&make_numerical_bubbles($partid,$id, |
my ($values,$display)=&make_numerical_bubbles($partid,$id, |
$target,$parstack,$safeeval); |
$target,$parstack,$safeeval); |
$response=$values->[$response]; |
$response=$values->[$response]; |
} |
} |
$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response; |
$Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response; |
my ($ad,$msg,$name)=&check_submission($response,$partid,$id, |
my ($ad,$msg,$name)=&check_submission($response,$partid,$id, |
$tag,$parstack, |
$tag,$parstack, |
$safeeval); |
$safeeval); |
Line 622 sub end_numericalresponse {
|
Line 605 sub end_numericalresponse {
|
} |
} |
} |
} |
} |
} |
|
if (($target eq 'web') && ($tag eq 'formularesponse') |
|
&& ($Apache::lonhomework::type ne 'exam')) { |
|
$result.=&Apache::response::edit_mathresponse_button($id,"HWVAL_$id"); |
|
} |
|
|
&Apache::response::setup_prior_tries_hash(\&format_prior_response_numerical); |
&Apache::response::setup_prior_tries_hash(\&format_prior_response_numerical); |
} elsif ($target eq 'edit') { |
} elsif ($target eq 'edit') { |
$result.='</td></tr>'.&Apache::edit::end_table; |
$result.='</td></tr>'.&Apache::edit::end_table; |