Diff for /loncom/homework/matchresponse.pm between versions 1.8 and 1.13

version 1.8, 2003/03/19 19:10:16 version 1.13, 2003/03/25 22:21:20
Line 128  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];   $Items[$i] = $alphabet[$i];
  $i++;   $i++;
     }      }
      $Apache::response::itemgroup{'letter_name_map'}=\%letter_name_map;       $Apache::response::itemgroup{'letter_name_map'}=\%letter_name_map;
Line 148  sub end_itemgroup { Line 148  sub end_itemgroup {
  my $table=' \\\\\\\\ \begin{tabular}{ll} ';   my $table=' \\\\\\\\ \begin{tabular}{ll} ';
  my $i=0;   my $i=0;
  foreach my $name (@names) {   foreach my $name (@names) {
       $Apache::response::itemgroup{$name.'.text'}=~s/\$\$/\$/g;
     $table.=' '.$alphabet[$i].' & '.      $table.=' '.$alphabet[$i].' & '.
  $Apache::response::itemgroup{$name.'.text'}.   $Apache::response::itemgroup{$name.'.text'}.
     ' \\\\ ';      ' \\\\ ';
Line 383  sub displayfoils { Line 384  sub displayfoils {
  my $id=$Apache::inputtags::response[-1];   my $id=$Apache::inputtags::response[-1];
  my $part=$Apache::inputtags::part;   my $part=$Apache::inputtags::part;
  my $lastresponse=$Apache::lonhomework::history{"resource.$part.$id.submission"};   my $lastresponse=$Apache::lonhomework::history{"resource.$part.$id.submission"};
  my %lastresponse=&Apache::lonnet::str2hash($lastresponse);   my %lastresponse=&Apache::lonnet::str2hash($lastresponse);    
    my @alphabet=('A'..'Z');
           my @Items_letter = splice @alphabet, 0, $#Items + 1;
  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};
Line 393  sub displayfoils { Line 396  sub displayfoils {
     } else {      } else {
  if ($Apache::lonhomework::type ne 'exam') {   if ($Apache::lonhomework::type ne 'exam') {
     $optionlist='\framebox[5 mm][s]{\tiny\strut}';      $optionlist='\framebox[5 mm][s]{\tiny\strut}';
  } else {  
     $optionlist='\begin{enumerate}\item[\textbf{'.$Apache::lonxml::counter.'}.]';  
  }   }
     }      }
     my $option;      my $option;
Line 409  sub displayfoils { Line 410  sub displayfoils {
         $optionlist='<select name="HWVAL_'.          $optionlist='<select name="HWVAL_'.
     $Apache::inputtags::response[-1].':'.$temp.'">'.      $Apache::inputtags::response[-1].':'.$temp.'">'.
         $optionlist."</select>\n";          $optionlist."</select>\n";
     } else {  
  $optionlist=$optionlist;  
     }      }
     my $text=$Apache::response::foilgroup{$name.'.text'};      my $text=$Apache::response::foilgroup{$name.'.text'};
     if ($target ne 'tex') {      if ($target ne 'tex') {
  $question.='<br />'.$optionlist.$text."\n";   $question.='<br />'.$optionlist.$text."\n";
  if ($Apache::lonhomework::type eq 'exam') {   if ($Apache::lonhomework::type eq 'exam') {
     $question.=&Apache::optionresponse::webbubbles(\@Items,\@Items);      $question.=&Apache::optionresponse::webbubbles(\@Items_letter,\@Items);
  }   }
     } else {      } else {
  if ($Apache::lonhomework::type eq 'exam') {   if ($Apache::lonhomework::type eq 'exam') {
     $question.=' '.$optionlist.$text."\n";      $question.=' '.$optionlist.$text."\n";
     $question.=&Apache::optionresponse::bubbles(\@Items,\@Items).'\end{enumerate} \vskip -7 mm \strut ';      my @emptyItems = ();
     &Apache::lonxml::increment_counter();      for (my $i=0;$i<=$#Items;$i++) {push @emptyItems, ' ';}
       $question.='\vskip -2 mm\parbox{\textwidth}{\begin{enumerate}\item[\textbf{'.$Apache::lonxml::counter.'}.]\parbox{\textwidth - 5 mm}{'.&Apache::optionresponse::bubbles(\@Items_letter,\@emptyItems).'}\end{enumerate}} \vskip -3 mm \strut ';
         } else {          } else {
     $question.=' \\\\ '.$optionlist.$text."\n";      $question.=' \\\\ '.$optionlist.$text."\n";
  }   }

Removed from v.1.8  
changed lines
  Added in v.1.13


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