Diff for /loncom/homework/matchresponse.pm between versions 1.4 and 1.7

version 1.4, 2003/02/20 09:55:07 version 1.7, 2003/03/19 18:36:37
Line 31  package Apache::matchresponse; Line 31  package Apache::matchresponse;
 use strict;  use strict;
 use HTML::Entities();  use HTML::Entities();
 use Math::Random();  use Math::Random();
   use Apache::optionresponse;
   
   my @Items;
   
 BEGIN {  BEGIN {
     &Apache::lonxml::register('Apache::matchresponse',('matchresponse'));      &Apache::lonxml::register('Apache::matchresponse',('matchresponse'));
Line 125  sub end_itemgroup { Line 128  sub end_itemgroup {
     foreach my $name (@names) {      foreach my $name (@names) {
  $letter_name_map{$alphabet[$i]}=$name;   $letter_name_map{$alphabet[$i]}=$name;
  $name_letter_map{$name}=$alphabet[$i];   $name_letter_map{$name}=$alphabet[$i];
    push @Items, $alphabet[$i];
  $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;      $Apache::response::itemgroup{'name_letter_map'}=\%name_letter_map;
     if ($target eq 'web') {      if ($target eq 'web') {
  my $table='<table>';   my $table='<table>';
Line 140  sub end_itemgroup { Line 144  sub end_itemgroup {
  }   }
  $table.='</table>';   $table.='</table>';
  $Apache::matchresponse::itemtable{'display'}=$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(); }      } elsif ($target eq 'edit') { $result=&Apache::edit::end_table(); }
     return $result;      return $result;
 }  }
Line 147  sub end_itemgroup { Line 162  sub end_itemgroup {
 sub start_item {  sub start_item {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $result='';      my $result='';
     if ($target eq 'web' ) {      if ($target eq 'web' || $target eq 'tex') {
  &Apache::lonxml::startredirection;   &Apache::lonxml::startredirection;
     } elsif ($target eq 'edit') {      } elsif ($target eq 'edit') {
  my $randomize=&Apache::lonxml::get_param('randomize',$parstack,   my $randomize=&Apache::lonxml::get_param('randomize',$parstack,
Line 173  sub end_item { Line 188  sub end_item {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $text ='';      my $text ='';
     my $result = '';      my $result = '';
     if ($target eq 'web') {      if ($target eq 'web' || $target eq 'tex') {
  $text=&Apache::lonxml::endredirection;   $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 'edit') {   $target eq 'edit' || $target eq 'tex') {
  my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);   my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
  my $location=&Apache::lonxml::get_param('location',$parstack,   my $location=&Apache::lonxml::get_param('location',$parstack,
  $safeeval);   $safeeval);
Line 222  sub start_foilgroup { Line 237  sub start_foilgroup {
 sub end_foilgroup {  sub end_foilgroup {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $result;      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 $max = &Apache::lonxml::get_param('max',$parstack,$safeeval,'-2');
  my $randomize = &Apache::lonxml::get_param('randomize',$parstack,   my $randomize = &Apache::lonxml::get_param('randomize',$parstack,
    $safeeval,'-2');     $safeeval,'-2');
  if ($target eq 'web') {   if ($target eq 'web' || $target eq 'tex') {
     $result=&displayfoils($target,$max,$randomize);      $result=&displayfoils($target,$max,$randomize);
  } elsif ($target eq 'answer' ) {   } elsif ($target eq 'answer' ) {
     $result=&displayanswers($max,$randomize);      $result=&displayanswers($max,$randomize);
Line 356  sub displayfoils { Line 371  sub displayfoils {
     my $text=$Apache::response::foilgroup{$name.'.text'};      my $text=$Apache::response::foilgroup{$name.'.text'};
     my $value=$Apache::response::foilgroup{$name.'.value'};      my $value=$Apache::response::foilgroup{$name.'.value'};
     my $letter=$name_letter_map{$value};      my $letter=$name_letter_map{$value};
     $question.='<br />'.$letter.':'.$text;      if ($target eq 'tex') {
    $question.=' \\\\ '.$letter.':'.$text;
       } else {
    $question.='<br />'.$letter.':'.$text;
       }
  }   }
     } else {      } else {
  my $i = 0;   my $i = 0;
Line 368  sub displayfoils { Line 387  sub displayfoils {
  foreach my $name (@whichfoils) {   foreach my $name (@whichfoils) {
     my $lastopt=$lastresponse{$name};      my $lastopt=$lastresponse{$name};
     my $last_letter=$name_letter_map{$lastopt};      my $last_letter=$name_letter_map{$lastopt};
     my $optionlist="<option></option>\n";      my $optionlist = '';
       if ($target ne 'tex') {
    $optionlist="<option></option>\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;      my $option;
     foreach $option (sort(keys(%letter_name_map))) {      foreach $option (sort(keys(%letter_name_map))) {
  if ($option eq $last_letter) {   if ($option eq $last_letter) {
     $optionlist.="<option selected=\"on\">$option</option>\n";      if ($target ne 'tex') {$optionlist.="<option selected=\"on\">$option</option>\n";}
  } else {   } else {
     $optionlist.="<option>$option</option>\n";      if ($target ne 'tex') {$optionlist.="<option>$option</option>\n";}
  }   }
     }      }
     $optionlist='<select name="HWVAL_'.      if ($target ne 'tex') {
  $Apache::inputtags::response[-1].':'.$temp.'">'.          $optionlist='<select name="HWVAL_'.
     $optionlist."</select>\n";      $Apache::inputtags::response[-1].':'.$temp.'">'.
           $optionlist."</select>\n";
       } else {
    $optionlist=$optionlist;
       }
     my $text=$Apache::response::foilgroup{$name.'.text'};      my $text=$Apache::response::foilgroup{$name.'.text'};
     $question.='<br />'.$optionlist.$text."\n";      if ($target ne 'tex') {
    $question.='<br />'.$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++;      $temp++;
  }   }
     }      }
Line 396  sub displayfoils { Line 441  sub displayfoils {
  $result='<table><tr><td>'.$result.'</td><td>'.$question.   $result='<table><tr><td>'.$result.'</td><td>'.$question.
     '</td></tr></table>';      '</td></tr></table>';
     }      }
     $result.="<br />";      if ($target ne 'tex') {$result.="<br />";} else {$result.=' \\\\ ';}
     return $result;      return $result;
 }  }
   
Line 519  sub insert_conceptgroup { Line 564  sub insert_conceptgroup {
 sub start_foil {  sub start_foil {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $result='';      my $result='';
     if ($target eq 'web' ) {      if ($target eq 'web' || $target eq 'tex') {
  &Apache::lonxml::startredirection;   &Apache::lonxml::startredirection;
     } elsif ($target eq 'edit') {      } elsif ($target eq 'edit') {
  $result=&Apache::edit::tag_start($target,$token,"Foil");   $result=&Apache::edit::tag_start($target,$token,"Foil");
Line 551  sub end_foil { Line 596  sub end_foil {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $text ='';      my $text ='';
     my $result = '';      my $result = '';
     if ($target eq 'web') {      if ($target eq 'web' || $target eq 'tex') {
  $text=&Apache::lonxml::endredirection;   $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);   my $value = &Apache::lonxml::get_param('value',$parstack,$safeeval);
  if ($value ne 'unused') {   if ($value ne 'unused') {
     my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);      my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);

Removed from v.1.4  
changed lines
  Added in v.1.7


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>