--- loncom/homework/inputtags.pm 2000/12/12 20:38:22 1.16 +++ loncom/homework/inputtags.pm 2001/01/05 01:14:49 1.21 @@ -16,6 +16,7 @@ sub initialize_inputtags { @Apache::inputtags::responselist=(); @Apache::inputtags::answergroup=(); $Apache::inputtags::part=''; + @Apache::inputtags::status=(); %Apache::inputtags::params=(); } @@ -162,7 +163,7 @@ sub decideoutput { my $message=''; my $button=0; if ($award eq 'EXACT_ANS' || $award eq 'APPROX_ANS' ) { - $message = "Correct computer gets %s"; + $message = "You are correct. You receipt is ".&Apache::lonnet::receipt; $button=0; } elsif ($award eq 'NO_RESPONSE') { $message = ''; @@ -174,13 +175,13 @@ sub decideoutput { $message = "This question expects a numeric answer"; $button=1; } elsif ($award eq 'SIG_FAIL') { - $message = "Please adjust significant figures, you provided %s significant figures"; + $message = "Please adjust significant figures.";# you provided %s significant figures"; $button=1; } elsif ($award eq 'UNIT_FAIL') { - $message = "Units incorrect, Computer reads units as %s"; + $message = "Units incorrect."; #Computer reads units as %s"; $button=1; } elsif ($award eq 'UNIT_NOTNEEDED') { - $message = "Only a number required, Computer reads units of %s"; + $message = "Only a number required.";# Computer reads units of %s"; $button=1; } elsif ($award eq 'NO_UNIT') { $message = "Units required"; @@ -221,7 +222,7 @@ sub setgradedata { sub grade { my ($target) = @_; my $id = $Apache::inputtags::part; - my $result=''; +# my $result=''; my $response=''; if ( $target == 'web' ) { if ( defined $ENV{'form.submit'}) { @@ -242,32 +243,38 @@ sub grade { &setgradedata($finalaward,$id); } } - return $result; + return ''; } sub gradestatus { my ($id) = @_; my $showbutton = 1; my $message = ''; - my $award = $Apache::lonhomework::history{"resource.$id.award"}; - &Apache::lonxml::debug("Found Award |$award|"); - if ( $award ne '' ) { - &Apache::lonxml::debug('Getting message'); - ($showbutton,$message) = &decideoutput($award); - } - my $button=''; - my $tries = $Apache::lonhomework::history{"resource.$id.tries"}; - my $maxtries = &Apache::lonnet::EXT("resource.$id.maxtries"); - &Apache::lonxml::debug("goit maxtries of :$maxtries:"); - if ( $tries eq '' ) { $tries = '0'; } - if ( $maxtries eq '' ) { $maxtries = '2'; } my $trystr=''; - if ( $showbutton ) { - $trystr = "

Tries $tries/$maxtries"; - } - if ( $tries >= $maxtries ) { $showbutton = 0; } - if ( $showbutton ) { - $button = '

'; + my $button=''; + + my $status = $Apache::inputtags::status['-1']; + &Apache::lonxml::debug("gradestatus has :$status:"); + if ( $status eq 'CAN_ANSWER' || $status eq 'SHOW_ANSWER' ) { + my $award = $Apache::lonhomework::history{"resource.$id.award"}; + &Apache::lonxml::debug("Found Award |$award|"); + if ( $award ne '' ) { + &Apache::lonxml::debug('Getting message'); + ($showbutton,$message) = &decideoutput($award); + } + my $tries = $Apache::lonhomework::history{"resource.$id.tries"}; + my $maxtries = &Apache::lonnet::EXT("resource.$id.maxtries"); + &Apache::lonxml::debug("got maxtries of :$maxtries:"); + if ( $tries eq '' ) { $tries = '0'; } + if ( $maxtries eq '' ) { $maxtries = '2'; } + if ( $showbutton ) { + $trystr = "

Tries $tries/$maxtries"; + } + if ( $tries >= $maxtries ) { $showbutton = 0; } + if ( $status eq 'SHOW_ANSWER' ) { $showbutton = 0; } + if ( $showbutton ) { + $button = '



'; + } } return $button.$message.$trystr; }