--- loncom/homework/radiobuttonresponse.pm 2007/08/29 10:07:42 1.126 +++ loncom/homework/radiobuttonresponse.pm 2007/10/15 09:47:29 1.129 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # mutliple choice style responses # -# $Id: radiobuttonresponse.pm,v 1.126 2007/08/29 10:07:42 foxr Exp $ +# $Id: radiobuttonresponse.pm,v 1.129 2007/10/15 09:47:29 foxr Exp $ # # Copyright Michigan State University Board of Trustees # @@ -56,8 +56,6 @@ sub start_radiobuttonresponse { my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; my $result; - - #when in a radiobutton response use these &Apache::lonxml::register('Apache::radiobuttonresponse',('foilgroup','foil','conceptgroup')); push (@Apache::lonxml::namespace,'radiobuttonresponse'); @@ -202,7 +200,8 @@ sub end_foilgroup { my $bubble_lines; my $bubbles_per_line; my $answer_count; - my $id = $Apache::inputtags::response['-1']; + my $id = $Apache::inputtags::response['-1']; + my $part = $Apache::inputtags::part; $bubbles_per_line = &Apache::response::get_response_param($Apache::inputtags::part."_$id", 'numbubbles', @@ -248,13 +247,11 @@ sub end_foilgroup { $bubbles_per_line); &Apache::response::analyze_store_foilgroup(\@shown, ['text','value','location']); - my $part_id="$Apache::inputtags::part.$Apache::inputtags::response[-1]"; + my $part_id="$part.$id"; push (@{ $Apache::lonhomework::analyze{"$part_id.options"} }, ('true','false')); push (@{ $Apache::lonhomework::analyze{"$part_id.bubble_lines"} }, $bubble_lines); - my $hash_value = $Apache::lonhomework::analyze{"$part_id.bubble_lines"}[0]; - } } $Apache::lonxml::post_evaluate=0; @@ -263,9 +260,13 @@ sub end_foilgroup { &Apache::response::setup_prior_tries_hash(\&format_prior_answer, [\%Apache::response::foilgroup]); } - $bubble_lines = &bubble_line_count($answer_count, $bubbles_per_line); &Apache::response::poprandomnumber(); - &Apache::lonxml::increment_counter($bubble_lines); + $bubble_lines = &bubble_line_count($answer_count, $bubbles_per_line); + &Apache::lonxml::increment_counter($bubble_lines, + "$part.$id"); + if ($target eq 'analyze') { + &Apache::lonhomework::set_bubble_lines(); + } return $result; }