--- loncom/homework/matchresponse.pm 2003/02/20 09:55:07 1.4 +++ loncom/homework/matchresponse.pm 2003/03/19 19:10:16 1.8 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Full matching style response # -# $Id: matchresponse.pm,v 1.4 2003/02/20 09:55:07 albertel Exp $ +# $Id: matchresponse.pm,v 1.8 2003/03/19 19:10:16 sakharuk Exp $ # # Copyright Michigan State University Board of Trustees # @@ -31,6 +31,9 @@ package Apache::matchresponse; use strict; use HTML::Entities(); use Math::Random(); +use Apache::optionresponse; + +my @Items = (); BEGIN { &Apache::lonxml::register('Apache::matchresponse',('matchresponse')); @@ -125,9 +128,10 @@ sub end_itemgroup { foreach my $name (@names) { $letter_name_map{$alphabet[$i]}=$name; $name_letter_map{$name}=$alphabet[$i]; + push @Items, $alphabet[$i]; $i++; } - $Apache::response::itemgroup{'letter_name_map'}=\%letter_name_map; + $Apache::response::itemgroup{'letter_name_map'}=\%letter_name_map; $Apache::response::itemgroup{'name_letter_map'}=\%name_letter_map; if ($target eq 'web') { my $table=''; @@ -140,6 +144,17 @@ sub end_itemgroup { } $table.='
'; $Apache::matchresponse::itemtable{'display'}=$table; + } elsif ($target eq 'tex') { + my $table=' \\\\\\\\ \begin{tabular}{ll} '; + my $i=0; + foreach my $name (@names) { + $table.=' '.$alphabet[$i].' & '. + $Apache::response::itemgroup{$name.'.text'}. + ' \\\\ '; + $i++; + } + $table.=' \end{tabular} \\\\ '; + $Apache::matchresponse::itemtable{'display'}=$table; } elsif ($target eq 'edit') { $result=&Apache::edit::end_table(); } return $result; } @@ -147,7 +162,7 @@ sub end_itemgroup { sub start_item { my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; my $result=''; - if ($target eq 'web' ) { + if ($target eq 'web' || $target eq 'tex') { &Apache::lonxml::startredirection; } elsif ($target eq 'edit') { my $randomize=&Apache::lonxml::get_param('randomize',$parstack, @@ -173,11 +188,11 @@ sub end_item { my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; my $text =''; my $result = ''; - if ($target eq 'web') { + if ($target eq 'web' || $target eq 'tex') { $text=&Apache::lonxml::endredirection; } if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || - $target eq 'edit') { + $target eq 'edit' || $target eq 'tex') { my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval); my $location=&Apache::lonxml::get_param('location',$parstack, $safeeval); @@ -222,11 +237,11 @@ sub start_foilgroup { sub end_foilgroup { my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; my $result; - if ($target eq 'grade' || $target eq 'web' || $target eq 'answer') { + if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || $target eq 'tex') { my $max = &Apache::lonxml::get_param('max',$parstack,$safeeval,'-2'); my $randomize = &Apache::lonxml::get_param('randomize',$parstack, $safeeval,'-2'); - if ($target eq 'web') { + if ($target eq 'web' || $target eq 'tex') { $result=&displayfoils($target,$max,$randomize); } elsif ($target eq 'answer' ) { $result=&displayanswers($max,$randomize); @@ -356,7 +371,11 @@ sub displayfoils { my $text=$Apache::response::foilgroup{$name.'.text'}; my $value=$Apache::response::foilgroup{$name.'.value'}; my $letter=$name_letter_map{$value}; - $question.='
'.$letter.':'.$text; + if ($target eq 'tex') { + $question.=' \\\\ '.$letter.':'.$text; + } else { + $question.='
'.$letter.':'.$text; + } } } else { my $i = 0; @@ -368,20 +387,46 @@ sub displayfoils { foreach my $name (@whichfoils) { my $lastopt=$lastresponse{$name}; my $last_letter=$name_letter_map{$lastopt}; - my $optionlist="\n"; + my $optionlist = ''; + if ($target ne 'tex') { + $optionlist="\n"; + } else { + if ($Apache::lonhomework::type ne 'exam') { + $optionlist='\framebox[5 mm][s]{\tiny\strut}'; + } else { + $optionlist='\begin{enumerate}\item[\textbf{'.$Apache::lonxml::counter.'}.]'; + } + } my $option; foreach $option (sort(keys(%letter_name_map))) { if ($option eq $last_letter) { - $optionlist.="\n"; + if ($target ne 'tex') {$optionlist.="\n";} } else { - $optionlist.="\n"; + if ($target ne 'tex') {$optionlist.="\n";} } } - $optionlist='\n"; + if ($target ne 'tex') { + $optionlist='\n"; + } else { + $optionlist=$optionlist; + } my $text=$Apache::response::foilgroup{$name.'.text'}; - $question.='
'.$optionlist.$text."\n"; + if ($target ne 'tex') { + $question.='
'.$optionlist.$text."\n"; + if ($Apache::lonhomework::type eq 'exam') { + $question.=&Apache::optionresponse::webbubbles(\@Items,\@Items); + } + } else { + if ($Apache::lonhomework::type eq 'exam') { + $question.=' '.$optionlist.$text."\n"; + $question.=&Apache::optionresponse::bubbles(\@Items,\@Items).'\end{enumerate} \vskip -7 mm \strut '; + &Apache::lonxml::increment_counter(); + } else { + $question.=' \\\\ '.$optionlist.$text."\n"; + } + } $temp++; } } @@ -396,7 +441,7 @@ sub displayfoils { $result='
'.$result.''.$question. '
'; } - $result.="
"; + if ($target ne 'tex') {$result.="
";} else {$result.=' \\\\ ';} return $result; } @@ -519,7 +564,7 @@ sub insert_conceptgroup { sub start_foil { my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; my $result=''; - if ($target eq 'web' ) { + if ($target eq 'web' || $target eq 'tex') { &Apache::lonxml::startredirection; } elsif ($target eq 'edit') { $result=&Apache::edit::tag_start($target,$token,"Foil"); @@ -551,10 +596,10 @@ sub end_foil { my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; my $text =''; my $result = ''; - if ($target eq 'web') { + if ($target eq 'web' || $target eq 'tex') { $text=&Apache::lonxml::endredirection; } - if ($target eq 'web' || $target eq 'grade' || $target eq 'answer') { + if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') { my $value = &Apache::lonxml::get_param('value',$parstack,$safeeval); if ($value ne 'unused') { my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);