Diff for /loncom/homework/matchresponse.pm between versions 1.5 and 1.11

version 1.5, 2003/03/17 19:54:20 version 1.11, 2003/03/20 18:26:34
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];
    $Items[$i] = $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 144  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 379  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 $localcount = 1;   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};
     my $optionlist = '';      my $optionlist = '';
     if ($target ne 'tex') {$optionlist="<option></option>\n";} else {$optionlist=' '.$localcount.'. '; $localcount++;}      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) {
     if ($target ne 'tex') {      if ($target ne 'tex') {$optionlist.="<option selected=\"on\">$option</option>\n";}
  $optionlist.="<option selected=\"on\">$option</option>\n";  
     }  
  } else {   } else {
     if ($target ne 'tex') {      if ($target ne 'tex') {$optionlist.="<option>$option</option>\n";}
  $optionlist.="<option>$option</option>\n";  
     }  
  }   }
     }      }
     if ($target ne 'tex') {      if ($target ne 'tex') {
Line 408  sub displayfoils { Line 418  sub displayfoils {
     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";
     } else {   if ($Apache::lonhomework::type eq 'exam') {
  $question.=' \\\\ '.$optionlist.$text."\n";      $question.=&Apache::optionresponse::webbubbles(\@Items_letter,\@Items);
    }
       } else {
    if ($Apache::lonhomework::type eq 'exam') {
       $question.=' '.$optionlist.$text."\n";
       $question.=&Apache::optionresponse::bubbles(\@Items_letter,\@Items).'\end{enumerate} \vskip -7 mm \strut ';
           } else {
       $question.=' \\\\ '.$optionlist.$text."\n";
    }
             }               } 
     $temp++;      $temp++;
  }   }

Removed from v.1.5  
changed lines
  Added in v.1.11


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