Annotation of loncom/homework/imageresponse.pm, revision 1.30

1.12      albertel    1: # The LearningOnline Network with CAPA
1.14      albertel    2: # image click response style
                      3: #
1.30    ! albertel    4: # $Id: imageresponse.pm,v 1.29 2003/06/09 22:29:45 albertel Exp $
1.14      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.1       albertel   28: 
1.25      www        29: #FIXME LATER assumes multiple possible submissions but only one is possible 
                     30: #currently
1.3       albertel   31: 
1.1       albertel   32: package Apache::imageresponse;
                     33: use strict;
1.21      harris41   34: use Image::Magick;
1.1       albertel   35: 
1.16      harris41   36: BEGIN {
1.12      albertel   37:   &Apache::lonxml::register('Apache::imageresponse',('imageresponse'));
1.1       albertel   38: }
                     39: 
                     40: sub start_imageresponse {
1.12      albertel   41:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.13      albertel   42:   my $result;
1.12      albertel   43:   #when in a radiobutton response use these
                     44:   &Apache::lonxml::register('Apache::imageresponse',('foilgroup','foil','text','image','rectangle','conceptgroup'));
                     45:   push (@Apache::lonxml::namespace,'imageresponse');
                     46:   my $id = &Apache::response::start_response($parstack,$safeeval);
1.13      albertel   47:   if ($target eq 'meta') {
                     48:     $result=&Apache::response::meta_package_write('imageresponse');
                     49:   }
                     50:   return $result;
1.1       albertel   51: }
                     52: 
                     53: sub end_imageresponse {
1.30    ! albertel   54:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
        !            55:     &Apache::response::end_response;
        !            56:     pop @Apache::lonxml::namespace;
        !            57:     &Apache::lonxml::deregister('Apache::imageresponse',('foilgroup','foil','text','image','rectangle','conceptgroup'));
        !            58:     my $result;
        !            59:     if ($target eq 'edit') { $result=&Apache::edit::end_table(); }
        !            60:     return $result;
1.1       albertel   61: }
                     62: 
1.20      albertel   63: %Apache::response::foilgroup=();
1.1       albertel   64: sub start_foilgroup {
1.20      albertel   65:   %Apache::response::foilgroup=();
1.12      albertel   66:   $Apache::imageresponse::conceptgroup=0;
                     67:   &Apache::response::setrandomnumber();
                     68:   return '';
1.1       albertel   69: }
                     70: 
1.2       albertel   71: sub getfoilcounts {
1.12      albertel   72:   my ($parstack,$safeeval)=@_;
                     73: 
                     74:   my $max = &Apache::lonxml::get_param('max',$parstack,$safeeval,'-2');
                     75:   # +1 since instructors will count from 1
                     76:   my $count = $#{ $Apache::response::foilgroup{'names'} }+1;
1.18      albertel   77:   if (&Apache::response::showallfoils()) { $max=$count; }
1.12      albertel   78:   return ($count,$max);
1.2       albertel   79: }
                     80: 
                     81: sub whichfoils {
1.12      albertel   82:   my ($max)=@_;
                     83:   if (!defined(@{ $Apache::response::foilgroup{'names'} })) { return; }
                     84:   my @names = @{ $Apache::response::foilgroup{'names'} };
                     85:   my @whichopt =();
                     86:   while ((($#whichopt+1) < $max) && ($#names > -1)) {
                     87:     &Apache::lonxml::debug("Have $#whichopt max is $max");
1.18      albertel   88:     my $aopt;
                     89:     if (&Apache::response::showallfoils()) {
                     90:       $aopt=0;
                     91:     } else {
1.22      albertel   92:       $aopt=int(&Math::Random::random_uniform() * ($#names+1));
1.18      albertel   93:     }
1.12      albertel   94:     &Apache::lonxml::debug("From $#names elms, picking $aopt");
                     95:     $aopt=splice(@names,$aopt,1);
                     96:     &Apache::lonxml::debug("Picked $aopt");
                     97:     push (@whichopt,$aopt);
                     98:   }
                     99:   return @whichopt;
1.2       albertel  100: }
                    101: 
                    102: sub displayfoils {
1.24      sakharuk  103:   my ($target,@whichopt) = @_;
1.12      albertel  104:   my $result ='';
                    105:   my $name;
                    106:   my $temp=1;
                    107:   foreach $name (@whichopt) {
1.24      sakharuk  108:     $result.=$Apache::response::foilgroup{"$name.text"};
1.28      albertel  109:     &Apache::lonxml::debug("Text is $result");
1.24      sakharuk  110:     if ($target eq 'tex') {$result.="\\vskip 0 mm \n";} else {$result.="<br />\n";}
1.12      albertel  111:     my $image=$Apache::response::foilgroup{"$name.image"};
1.28      albertel  112:     &Apache::lonxml::debug("image is $image");
1.12      albertel  113:     if ($Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"} =~ /^correct/ ) {
1.24      sakharuk  114:       if ($target eq 'tex') {
                    115: 	$result.=$Apache::response::foilgroup{"$name.image"}."\\vskip 0 mm \n";
                    116:       } else {
                    117:         $result.="<img src=\"$image\"/> <br />\n";
                    118:       }
1.12      albertel  119:     } else {
1.24      sakharuk  120:       if ($target eq 'tex') {
                    121: 	$result.=$Apache::response::foilgroup{"$name.image"}."\\vskip 0 mm \n";
                    122:       } else {
                    123:         $result.="<input type=\"image\" name=\"HWVAL_$Apache::inputtags::response['-1']:$temp\" src=\"$image\"/> <br />\n";
                    124:       }
1.12      albertel  125:     }
                    126:     $temp++;
                    127:   }
                    128:   return $result;
1.2       albertel  129: }
                    130: 
1.3       albertel  131: sub gradefoils {
1.12      albertel  132:   my (@whichopt) = @_;
                    133:   my $x;
                    134:   my $y;
                    135:   my $result;
                    136:   my $id=$Apache::inputtags::response['-1'];
                    137:   my $temp=1;
                    138:   foreach my $name (@whichopt) {
                    139:     $x=$ENV{"form.HWVAL_$id:$temp.x"};
                    140:     $y=$ENV{"form.HWVAL_$id:$temp.y"};
                    141:     &Apache::lonxml::debug("Got a x of $x and a y of $y for $name");
1.29      albertel  142:     if (defined($x) && defined($y) &&
                    143: 	defined(@{ $Apache::response::foilgroup{"$name.area"} })) {
1.12      albertel  144:       my @areas = @{ $Apache::response::foilgroup{"$name.area"} };
                    145:       my $grade="INCORRECT";
                    146:       foreach my $area (@areas) {
                    147: 	&Apache::lonxml::debug("Area is $area for $name");
                    148: 	$area =~ m/([a-z]*):/;
                    149: 	&Apache::lonxml::debug("Area of type $1");
                    150: 	if ($1 eq 'rectangle') {
                    151: 	  $grade=&grade_rectangle($area,$x,$y);
                    152: 	} else {
                    153: 	  &Apache::lonxml::error("Unknown area style $area");
1.9       albertel  154: 	}
1.12      albertel  155: 	&Apache::lonxml::debug("Area said $grade");
                    156: 	if ($grade eq 'APPROX_ANS') { last; }
                    157:       }
                    158:       &Apache::lonxml::debug("Foil was $grade");
                    159:       if ($grade eq 'INCORRECT') { $result= 'INCORRECT'; }
                    160:       if (($grade eq 'APPROX_ANS') && ($result ne 'APPROX_ANS')) { $result=$grade; }
                    161:       &Apache::lonxml::debug("Question is $result");
                    162:       $temp++;
                    163:     }
                    164:   }
                    165:   $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.submission"}="$x:$y";
                    166:   $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.awarddetail"}=$result;
                    167:   return '';
1.3       albertel  168: }
                    169: 
1.1       albertel  170: sub end_foilgroup {
1.12      albertel  171:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    172:   my $result='';
                    173:   my @whichopt;
1.24      sakharuk  174:   if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
1.12      albertel  175:     my ($count,$max) = &getfoilcounts($parstack,$safeeval);
                    176:     if ($count>$max) { $count=$max }
                    177:     &Apache::lonxml::debug("Count is $count from $max");
                    178:     @whichopt = &whichfoils($max);
1.28      albertel  179:     if ($target eq 'web' || $target eq 'tex') {
                    180: 	$result=&displayfoils($target,@whichopt);
                    181:     } elsif ($target eq 'grade') {
                    182: 	if ( defined $ENV{'form.submitted'}) { &gradefoils(@whichopt); }
                    183:     } 
1.26      albertel  184:   } elsif ($target eq 'edit') {
                    185:       $result=&Apache::edit::end_table();
1.12      albertel  186:   }
                    187:   return $result;
1.1       albertel  188: }
                    189: 
                    190: sub start_conceptgroup {
1.12      albertel  191:   $Apache::imageresponse::conceptgroup=1;
1.20      albertel  192:   %Apache::response::conceptgroup=();
1.12      albertel  193:   return '';
1.1       albertel  194: }
                    195: 
                    196: sub end_conceptgroup {
1.12      albertel  197:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.26      albertel  198:   $Apache::imageresponse::conceptgroup=0;
                    199:   my $result;
1.24      sakharuk  200:   if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
1.12      albertel  201:     if (defined(@{ $Apache::response::conceptgroup{'names'} })) {
                    202:       my @names = @{ $Apache::response::conceptgroup{'names'} };
1.22      albertel  203:       my $pick=int(&Math::Random::random_uniform() * ($#names+1));
1.12      albertel  204:       my $name=$names[$pick];
                    205:       if (defined(@{ $Apache::response::conceptgroup{"$name.area"} })) {
                    206: 	push @{ $Apache::response::foilgroup{'names'} }, $name;
                    207: 	$Apache::response::foilgroup{"$name.text"} = $Apache::response::conceptgroup{"$name.text"};
                    208: 	$Apache::response::foilgroup{"$name.image"} = $Apache::response::conceptgroup{"$name.image"};
                    209: 	push(@{ $Apache::response::foilgroup{"$name.area"} }, @{ $Apache::response::conceptgroup{"$name.area"} });
                    210: 	my $concept = &Apache::lonxml::get_param('concept',$parstack,$safeeval);
                    211: 	$Apache::response::foilgroup{"$name.concept"} = $concept;
                    212: 	&Apache::lonxml::debug("Selecting $name in $concept");
                    213:       }
1.9       albertel  214:     }
1.26      albertel  215:   } elsif ($target eq 'edit') {
                    216:       $result=&Apache::edit::end_table();
1.12      albertel  217:   }
1.26      albertel  218:   return $result;
1.1       albertel  219: }
                    220: 
1.12      albertel  221: $Apache::imageresponse::curname='';
1.1       albertel  222: sub start_foil {
1.12      albertel  223:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.24      sakharuk  224:   if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
1.12      albertel  225:     my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
                    226:     if ($name eq '') { $name=$Apache::lonxml::curdepth; }
1.18      albertel  227:     if ( $Apache::imageresponse::conceptgroup
                    228: 	 && !&Apache::response::showallfoils()) {
1.12      albertel  229:       push(@{ $Apache::response::conceptgroup{'names'} }, $name);
                    230:     } else {
                    231:       push(@{ $Apache::response::foilgroup{'names'} }, $name);
                    232:     }
                    233:     $Apache::imageresponse::curname=$name;
                    234:   }
                    235:   return '';
1.1       albertel  236: }
                    237: 
                    238: sub end_foil {
1.26      albertel  239:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    240:     my $result;
                    241:     if ($target eq 'edit') {
                    242: 	$result=&Apache::edit::end_table();
                    243:     }
                    244:     return $result;
1.1       albertel  245: }
                    246: 
                    247: sub start_text {
1.12      albertel  248:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.25      www       249:   my $result='';
                    250:   if ($target eq 'web' || $target eq 'tex') { 
                    251:      &Apache::lonxml::startredirection; 
                    252:   } elsif ($target eq 'edit') {
1.26      albertel  253:     my $descr=&Apache::lonxml::get_all_text('/text',$parser);
1.25      www       254:     $result=&Apache::edit::tag_start($target,$token,'Task Description').
                    255: 	&Apache::edit::editfield($token->[1],$descr,'Text',60,2).
1.26      albertel  256:         &Apache::edit::end_row();
1.25      www       257:   } elsif ($target eq "modified") {
1.26      albertel  258:     my $descr=&Apache::lonxml::get_all_text('/text',$parser);
1.25      www       259:     $result=$token->[4].&Apache::edit::modifiedfield($token);
                    260:     &Apache::lonxml::debug($result);
                    261:   }
                    262:   return $result;
1.1       albertel  263: }
                    264: 
                    265: sub end_text {
1.12      albertel  266:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.26      albertel  267:   my $result;
1.24      sakharuk  268:   if ($target eq 'web' || $target eq 'tex') {
1.12      albertel  269:     my $name = $Apache::imageresponse::curname;
1.18      albertel  270:     if ( $Apache::imageresponse::conceptgroup
                    271:        && !&Apache::response::showallfoils() ) {
1.12      albertel  272:       $Apache::response::conceptgroup{"$name.text"} = &Apache::lonxml::endredirection;
                    273:     } else {
                    274:       $Apache::response::foilgroup{"$name.text"} = &Apache::lonxml::endredirection;
1.7       albertel  275:     }
1.26      albertel  276:   } elsif ($target eq 'edit') {
                    277:       $result=&Apache::edit::end_table();
1.12      albertel  278:   }
1.26      albertel  279:   return $result;
1.1       albertel  280: }
                    281: 
                    282: sub start_image {
1.12      albertel  283:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.25      www       284:   my $result='';
                    285:   if ($target eq 'web' || $target eq 'tex') { 
                    286:       &Apache::lonxml::startredirection; 
                    287:   } elsif ($target eq 'edit') {
1.26      albertel  288:     my $bgimg=&Apache::lonxml::get_all_text('/image',$parser);
1.27      www       289:     $Apache::edit::bgimgsrc=$bgimg;
                    290:     $Apache::edit::bgimgsrcdepth=$Apache::lonxml::curdepth;
                    291: 
1.25      www       292:     $result=&Apache::edit::tag_start($target,$token,'Clickable Image').
                    293: 	&Apache::edit::editline($token->[1],$bgimg,'Image Source File',40);
                    294:     $result.=&Apache::edit::browse(undef,'textnode').' ';
                    295:     $result.=&Apache::edit::search(undef,'textnode').
1.26      albertel  296:         &Apache::edit::end_row();
1.25      www       297:   } elsif ($target eq "modified") {
1.26      albertel  298:     my $bgimg=&Apache::lonxml::get_all_text('/image',$parser);
1.25      www       299:     $result=$token->[4].&Apache::edit::modifiedfield($token);
                    300:     &Apache::lonxml::debug($result);
                    301:   }
                    302:   return $result;
1.1       albertel  303: }
                    304: 
                    305: sub end_image {
1.26      albertel  306:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    307:   my $result;
1.24      sakharuk  308:   my $name = $Apache::imageresponse::curname;
1.12      albertel  309:   if ($target eq 'web') {
                    310:     my $image = &Apache::lonxml::endredirection;
                    311:     &Apache::lonxml::debug("out is $image");
1.18      albertel  312:     if ( $Apache::imageresponse::conceptgroup
                    313: 	 && !&Apache::response::showallfoils()) {
1.12      albertel  314:       $Apache::response::conceptgroup{"$name.image"} = $image;
                    315:     } else {
                    316:       $Apache::response::foilgroup{"$name.image"} = $image;
1.7       albertel  317:     }
1.26      albertel  318:   } elsif ($target eq 'edit') {
                    319:       $result=&Apache::edit::end_table();
1.19      sakharuk  320:   } elsif ($target eq 'tex') {
                    321:     my $src = &Apache::lonxml::endredirection;
                    322:     $src=&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$src);
                    323:     my $width_param = '';
                    324:     my $height_param = '';
                    325:     my $scaling = .3;
                    326:     my $image = Image::Magick->new;
                    327:     my $current_figure = $image->Read($src);
                    328:     $width_param = $image->Get('width') * $scaling;;
                    329:     $height_param = $image->Get('height') * $scaling;;
                    330:     undef $image;
                    331:     my $epssrc = $src;
                    332:     $epssrc =~ s/(\.gif|\.jpg)$/\.eps/i;
                    333:     if (not -e $epssrc) {
                    334: 	my $localfile = $epssrc;
                    335: 	$localfile =~ s/.*(\/res)/$1/;	
                    336: 	my $file;
                    337: 	my $path;	
                    338: 	if ($localfile =~ m!(.*)/([^/]*)$!) {
                    339: 	    $file = $2;
                    340: 	    $path = $1.'/'; 
                    341: 	}	
                    342: 	my $signal_eps = 0;
                    343: 	my @content_directory = &Apache::lonnet::dirlist($path);
                    344: 	for (my $iy=0;$iy<=$#content_directory;$iy++) {
                    345: 	    my @tempo_array = split(/&/,$content_directory[$iy]);
                    346: 	    $content_directory[$iy] = $tempo_array[0];
                    347: 	    if ($file eq $tempo_array[0]) {
                    348: 		$signal_eps = 1;
                    349: 		last;
                    350: 	    }
                    351: 	}
                    352: 	if ($signal_eps) {
                    353: 	    my $eps_file = &Apache::lonnet::getfile($localfile);
                    354: 	} else {
                    355: 	    $localfile = $src;
                    356: 	    $localfile =~ s/.*(\/res)/$1/;	
                    357: 	    my $as = &Apache::lonnet::getfile($src);		      
                    358: 	}
                    359:     }
                    360:     my $file;
                    361:     my $path;	
                    362:     if ($src =~ m!(.*)/([^/]*)$!) {
                    363: 	$file = $2;
                    364: 	$path = $1.'/'; 
                    365:     }
                    366:     my $newsrc = $src;
1.27      www       367:     $newsrc =~ s/(\.gif|\.jpg|\.jpeg)$/\.eps/i;
                    368:     $file=~s/(\.gif|\.jpg|\.jpeg)$/\.eps/i;
1.19      sakharuk  369:     #do we have any specified size of the picture?
                    370:     my $TeXwidth = &Apache::lonxml::get_param('TeXwidth',$parstack,$safeeval); 
                    371:     my $TeXheight = &Apache::lonxml::get_param('TeXheight',$parstack,$safeeval); 
                    372:     my $width = &Apache::lonxml::get_param('width',$parstack,$safeeval);
                    373:     if ($TeXwidth ne '') { 
                    374: 	$width_param = $TeXwidth; 
                    375:     } elsif ($TeXheight ne '') { 
                    376: 	$width_param = $TeXheight/$height_param*$width_param;
                    377:     } elsif ($width ne '') {
                    378: 	$width_param = $width*$scaling;      
                    379:     }
                    380:     #where can we find the picture?
                    381:     if (-e $newsrc) {
                    382: 	if ($path) {
1.24      sakharuk  383: 	  $Apache::response::foilgroup{"$name.image"} ='\vskip 0 mm \noindent\graphicspath{{'.$path.'}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
1.19      sakharuk  384: 	}
                    385:     } else {
                    386: 	my $temp_file;
                    387: 	my $filename = "/home/httpd/prtspool/$ENV{'user.name'}_$ENV{'user.domain'}_printout.dat";
                    388: 	$temp_file = Apache::File->new('>>'.$filename); 
                    389: 	print $temp_file "$src\n";
1.24      sakharuk  390: $Apache::response::foilgroup{"$name.image"} ='\vskip 0 mm \graphicspath{{/home/httpd/prtspool/}}\includegraphics[width='.$width_param.' mm]{'.$file.'} ';
1.19      sakharuk  391:     }
1.24      sakharuk  392:   } 
1.26      albertel  393:   return $result;
1.1       albertel  394: }
                    395: 
                    396: sub start_rectangle {
1.12      albertel  397:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.25      www       398:   my $result='';
                    399:   if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') { 
                    400:      &Apache::lonxml::startredirection; 
                    401:   } elsif ($target eq 'edit') {
1.26      albertel  402:     my $coords=&Apache::lonxml::get_all_text('/rectangle',$parser);
1.25      www       403:     $result=&Apache::edit::tag_start($target,$token,'Rectangle').
                    404: 	&Apache::edit::editline($token->[1],$coords,'Coordinate Pairs',40).
1.27      www       405:         &Apache::edit::entercoordpair(undef,'textnode').
1.26      albertel  406:         &Apache::edit::end_row();
1.25      www       407:   } elsif ($target eq "modified") {
1.26      albertel  408:     my $coords=&Apache::lonxml::get_all_text('/rectangle',$parser);
1.25      www       409:     $result=$token->[4].&Apache::edit::modifiedfield($token);
                    410:     &Apache::lonxml::debug($result);
                    411:   }
                    412:   return $result;
1.1       albertel  413: }
                    414: 
1.3       albertel  415: sub grade_rectangle {
1.12      albertel  416:   my ($spec,$x,$y) = @_;
                    417:   &Apache::lonxml::debug("Spec is $spec");
                    418:   $spec=~m/rectangle:\(([0-9]+),([0-9]+)\)\-\(([0-9]+),([0-9]+)\)/;
                    419:   my $x1=$1;
                    420:   my $y1=$2;
                    421:   my $x2=$3;
                    422:   my $y2=$4;
                    423:   &Apache::lonxml::debug("Point $x1,$y1,$x2,$y2");
                    424:   if ($x1 > $x2) { my $temp=$x1;$x1=$x2;$x2=$temp; }
                    425:   if ($y1 > $y2) { my $temp=$y1;$y1=$y2;$y2=$temp; }
1.17      albertel  426:   if (($x >= $x1) && ($x <= $x2) && ($y >= $y1) && ($y <= $y2)) {
                    427:     return 'APPROX_ANS';
                    428:   }
1.12      albertel  429:   return 'INCORRECT';
1.3       albertel  430: }
                    431: 
1.1       albertel  432: sub end_rectangle {
1.12      albertel  433:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.26      albertel  434:   my $result;
1.24      sakharuk  435:   if ($target eq 'web' || $target eq 'grade' || $target eq 'tex') {
1.12      albertel  436:     my $name = $Apache::imageresponse::curname;
                    437:     my $area = &Apache::lonxml::endredirection;
                    438:     &Apache::lonxml::debug("out is $area for $name");
1.18      albertel  439:     if ( $Apache::imageresponse::conceptgroup
                    440: 	 && !&Apache::response::showallfoils()) {
1.12      albertel  441:       push @{ $Apache::response::conceptgroup{"$name.area"} },"rectangle:$area";
                    442:     } else {
                    443:       push @{ $Apache::response::foilgroup{"$name.area"} },"rectangle:$area";
1.7       albertel  444:     }
1.26      albertel  445:   } elsif ($target eq 'edit') {
                    446:       $result=&Apache::edit::end_table();
1.12      albertel  447:   }
1.26      albertel  448:   return $result;
1.1       albertel  449: }
                    450: 1;
                    451: __END__
                    452:  

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