File:  [LON-CAPA] / loncom / homework / optionresponse.pm
Revision 1.188: download - view: text, annotated - select for diffs
Fri Nov 30 11:45:50 2012 UTC (11 years, 5 months ago) by foxr
Branches: MAIN
CVS tags: HEAD
BZ 6626 - Don't strip variable optinos for foilgroups.

    1: # LearningOnline Network with CAPA
    2: # option list style responses
    3: #
    4: # $Id: optionresponse.pm,v 1.188 2012/11/30 11:45:50 foxr Exp $
    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: #
   28: 
   29: 
   30: 
   31: 
   32: 
   33: package Apache::optionresponse;
   34: use strict;
   35: use Apache::response();
   36: use Apache::lonlocal;
   37: use Apache::lonnet;
   38: 
   39: BEGIN {
   40:   &Apache::lonxml::register('Apache::optionresponse',('optionresponse'));
   41: }
   42: 
   43: sub start_optionresponse {
   44:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
   45:   my $result='';
   46:   #when in a option response use these
   47:   &Apache::lonxml::register('Apache::optionresponse',('foilgroup','foil','conceptgroup','drawoptionlist'));
   48:   push (@Apache::lonxml::namespace,'optionresponse');
   49:   my $id = &Apache::response::start_response($parstack,$safeeval);
   50:   %Apache::hint::option=();
   51:   undef(%Apache::response::foilnames);
   52:   if ($target eq 'edit') {
   53:     $result.=&Apache::edit::start_table($token)
   54:        .'<tr><td><span class="LC_nobreak">'.&mt('Multiple Option Response Question').'</span> '
   55:        .&Apache::loncommon::help_open_topic('Option_Response_Problems')."</td>"
   56:        .'<td><span class="LC_nobreak">'.&mt('Delete?').' '
   57:        .&Apache::edit::deletelist($target,$token)
   58:        .'</span></td>'
   59:        ."<td>&nbsp;"
   60:        .&Apache::edit::end_row()
   61:        .&Apache::edit::start_spanning_row()
   62:        ."\n";
   63:     $result.=&Apache::edit::text_arg('Max Number Of Shown Foils:','max',
   64: 				     $token,'4').
   65:         &Apache::edit::select_arg('Randomize Foil Order:','randomize',
   66: 				  ['yes','no'],$token).
   67:         &Apache::edit::select_arg(&mt('Display of options when printed'),'TeXlayout',
   68: 				  [['horizontal','Normal list'],
   69: 				   ['vertical','Listed in a vertical column']],$token).
   70:         &Apache::edit::end_row().&Apache::edit::start_spanning_row();
   71:   } elsif ($target eq 'modified') {
   72:     my $constructtag=&Apache::edit::get_new_args($token,$parstack,
   73: 						 $safeeval,'max','randomize',
   74: 						 'TeXlayout');
   75:     if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
   76:   } elsif ($target eq 'meta') {
   77:     $result=&Apache::response::meta_package_write('optionresponse');
   78:   } elsif ($target eq 'analyze') {
   79:     my $part_id="$Apache::inputtags::part.$id";
   80:     $Apache::lonhomework::analyze{"$part_id.type"} = 'optionresponse';
   81:     push (@{ $Apache::lonhomework::analyze{"parts"} },$part_id);
   82:     push (@{ $Apache::lonhomework::analyze{"$part_id.bubble_lines"} }, 1);
   83: 
   84:   }
   85:   return $result;
   86: }
   87: 
   88: sub end_optionresponse {
   89:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
   90:   &Apache::response::end_response;
   91:   pop @Apache::lonxml::namespace;
   92:   &Apache::lonxml::deregister('Apache::optionresponse',('foilgroup','foil','conceptgroup','drawoptionlist'));
   93:   my $result;
   94:   if ($target eq 'edit') { $result=&Apache::edit::end_table(); }
   95:   undef(%Apache::response::foilnames);
   96:   return $result;
   97: }
   98: 
   99: %Apache::response::foilgroup=();
  100: sub start_foilgroup {
  101:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  102: 
  103:   my $result='';
  104:   %Apache::response::foilgroup=();
  105:   $Apache::optionresponse::conceptgroup=0;
  106:   &Apache::response::pushrandomnumber(undef,$target);
  107:   if ($target eq 'edit') {
  108:     my $optionlist="<option></option>\n";
  109:     my $option;
  110:     my @opt;
  111:     my @raw_options = &Apache::lonxml::get_param('options', $parstack, $safeeval, 0,  0, 1);
  112: 
  113: 
  114:     eval '@opt ='. &Apache::lonxml::get_param('options',$parstack,$safeeval, 0, 0, 1);
  115: 
  116:     my $count=1;
  117:     foreach $option (@opt) {
  118:       $optionlist.="<option value=\"$count\">$option</option>\n";
  119:       $count++;
  120:     }
  121:     my $insertlist=&Apache::edit::insertlist($target,$token);
  122:     $result.=&Apache::edit::start_table($token);
  123:     $result.= (<<ENDTABLE);
  124:       <tr><td>Select Options</td>
  125:         <td>
  126: 	  Add new Option: <input type="text" name="$Apache::lonxml::curdepth.options" />
  127:         </td>
  128:         <td>Delete an Option:
  129: 	  <select name="$Apache::lonxml::curdepth.deleteopt">$optionlist</select>
  130:         </td>
  131: ENDTABLE
  132:     $result.= '<td>'.&Apache::edit::checked_arg('Print options:','texoptions',
  133: 					 [ ['nochoice','Don\'t show option list'] ]
  134: 					 ,$token).'</td>';
  135:     $result.= '<td><label>'.&mt('Two-option checkboxes for:').
  136:               '<select name="checkboxvalue_'.$Apache::lonxml::curdepth.'">';
  137:     foreach $option (('',@opt)) {
  138:        $result.='<option value="'.$option.'"';
  139:        if ($option eq &Apache::lonxml::get_param('checkboxvalue',$parstack,$safeeval)) {
  140:           $result.=' selected="selected"';
  141:        }
  142:        $result.='>'.$option.'</option>';
  143:     }
  144:     $result.='</select></label>';
  145:     $result.=&Apache::edit::checked_arg('Checkbox options:','checkboxoptions',
  146:                                          [ ['nochoice','Don\'t show option list'] ]
  147:                                          ,$token).'</td>';
  148:     $result.= &Apache::edit::end_row();
  149:     $result.= &Apache::edit::start_spanning_row();
  150:     $result.= $insertlist.'<br />';
  151:   }
  152:   if ($target eq 'modified') {
  153:     my @options;
  154:     my $optchanged=0;
  155: 
  156: 
  157:     eval '@options ='.&Apache::lonxml::get_param('options',$parstack,$safeeval, 0, 0, 1);
  158: 
  159:     if ($env{"form.$Apache::lonxml::curdepth.deleteopt"}) {
  160:       my $delopt=$env{"form.$Apache::lonxml::curdepth.deleteopt"};
  161:       &Apache::lonxml::debug("Deleting :$delopt:");
  162:       splice(@options,$delopt-1,1);
  163:       $optchanged=1;
  164:     }
  165:     if ($env{"form.$Apache::lonxml::curdepth.options"} ne '') {
  166:       my $newopt = $env{"form.$Apache::lonxml::curdepth.options"};
  167:       push(@options,$newopt);
  168:       $optchanged=1;
  169:     }
  170:     my $rebuildtag = &Apache::edit::get_new_args($token,$parstack,$safeeval,
  171: 						 'texoptions','checkboxvalue','checkboxoptions');
  172:     if ($optchanged || $rebuildtag ) {
  173:       $result = "<foilgroup options=\"(";
  174:       foreach my $option (@options) {
  175: 	$option=~s/\'/\\\'/g;
  176: 	&Apache::lonxml::debug("adding option :$option:");
  177: 	$result .="'".$option."',";
  178:       }
  179:       chop $result;
  180:       $result.=')" ';
  181:       $result .= 'texoptions="'.$token->[2]{'texoptions'}.'" ';
  182:       $result .= 'checkboxoptions="'.$token->[2]{'checkboxoptions'}.'" ';
  183:       $result .= 'checkboxvalue="'.$token->[2]{'checkboxvalue'}.'"';
  184:       $result .= '>';
  185:     } # else nothing changed so just use the default mechanism
  186:   }
  187:   if ($target eq 'tex' and $Apache::lonhomework::type ne 'exam') {
  188:     if($env{'form.pdfFormFields'} ne 'yes') {
  189:       $result .= ' \begin{itemize} ';
  190:     } else {
  191:       $result .= "\\\\";
  192:     }
  193:   }
  194:   return $result;
  195: }
  196: 
  197: sub end_foilgroup {
  198:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  199:   
  200:   my $result;
  201:   if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
  202:       $target eq 'tex' || $target eq 'analyze') {
  203:     my $tex_option_switch=&Apache::lonxml::get_param('texoptions',$parstack,$safeeval);
  204:     my $name;
  205:     my @opt;
  206:     eval '@opt ='.&Apache::lonxml::get_param('options',$parstack,$safeeval);
  207:     &Apache::lonxml::debug("options:".join(':',@opt));
  208: 
  209:     my $TeXlayout=&Apache::lonxml::get_param('TeXlayout',$parstack,$safeeval,
  210: 					     -2,0);
  211:     my $checkboxvalue=&Apache::lonxml::get_param('checkboxvalue',$parstack,$safeeval);
  212:     my $checkboxchoices=(&Apache::lonxml::get_param('checkboxoptions',$parstack,$safeeval) ne 'nochoice');
  213:     my $noprompt       =&Apache::lonxml::get_param('noprompt', $parstack, $safeeval);
  214: 
  215:     if ($target eq 'tex' && $tex_option_switch eq 'nochoice') {@opt=();}
  216:     &Apache::lonxml::debug("Options are $#opt");
  217:     my $max = &Apache::lonxml::get_param('max',$parstack,$safeeval,'-2');
  218:     my $randomize = &Apache::lonxml::get_param('randomize',$parstack,
  219: 					       $safeeval,'-2');
  220:     if ($target eq 'web' || $target eq 'tex') {
  221:       $result.=&displayfoils($target,$max,$randomize,$TeXlayout,$checkboxvalue,$checkboxchoices,$tex_option_switch, $noprompt, @opt);
  222:       $Apache::lonxml::post_evaluate=0;
  223:     } elsif ( $target eq 'answer') {
  224:       $result.=&displayanswers($max,$randomize,@opt);
  225:       
  226:     } elsif ( $target eq 'analyze') {
  227: 	my @shown = &whichfoils($max,$randomize);
  228: 	&Apache::response::analyze_store_foilgroup(\@shown,
  229: 						  ['text','value','location']);
  230: 	my $part_id="$Apache::inputtags::part.$Apache::inputtags::response[-1]";
  231: 	push (@{ $Apache::lonhomework::analyze{"$part_id.options"} },@opt);
  232:     } elsif ( $target eq 'grade') {
  233: 
  234:       if ( &Apache::response::submitted()) {
  235: 
  236: 	my @whichopt = &whichfoils($max,$randomize);
  237: 	my $temp=1;my $name;
  238: 	my %responsehash;
  239: 	my %grade;
  240: 	my $right=0;
  241: 	my $wrong=0;
  242: 	my $ignored=0;
  243:         my ($numrows,$bubbles_per_row);
  244:         if ($Apache::lonhomework::scantronmode) {
  245:             my $numitems = scalar(@opt);
  246:             ($numrows,$bubbles_per_row) =
  247:                 &Apache::optionresponse::getnumrows($numitems);
  248:         }
  249:         if ($numrows < 1) {
  250:             $numrows = 1;
  251:         }
  252: 	foreach $name (@whichopt) {
  253: 	  my $response;
  254:           if ($env{'form.submitted'} eq 'scantron') {
  255:               if ($numrows > 1) {
  256:                   my $num = $temp;
  257:                   my $totalnum;
  258:                   for (my $i=0; $i<$numrows; $i++) {
  259:                       my $item = &Apache::response::getresponse($num);
  260:                       if ($item =~ /^\d+$/) {
  261:                           $totalnum = $i*$bubbles_per_row + $item;
  262:                       }
  263:                       $num ++;
  264:                   }
  265:                   if ($totalnum =~ /^\d+$/) {
  266:                       $response = $opt[$totalnum];
  267:                   }
  268:                   $temp += $numrows;
  269:               } else {
  270:                   $response=&Apache::response::getresponse($temp);
  271:                   if ($response=~/\S/) {
  272:                       $response = $opt[$response];
  273:                   }
  274:                   $temp ++;
  275:               }
  276: 	  } else {
  277:               $response=&Apache::response::getresponse($temp);
  278:               $temp ++;
  279:           }
  280: 	  if ( $response =~ /[^\s]/) {
  281: 	    $responsehash{$name}=$response;
  282: 	    my $value=$Apache::response::foilgroup{$name.'.value'};
  283: 	    &Apache::lonxml::debug("submitted a $response for $value<br />\n");
  284: 	    if ($value eq $response) {
  285: 		$grade{$name}='1'; $right++;
  286: 	    } else {
  287: 		$grade{$name}='0'; $wrong++;
  288: 	    }
  289: 	  } else {
  290: 	    $ignored++;
  291: 	  }
  292: 	}
  293: 	my $part=$Apache::inputtags::part;
  294:         my $nonlenient=&grading_is_nonlenient($part);
  295: 	my $id = $Apache::inputtags::response['-1'];
  296: 	my $responsestr=&Apache::lonnet::hash2str(%responsehash);
  297: 	my $gradestr   =&Apache::lonnet::hash2str(%grade);
  298: 	my %previous=&Apache::response::check_for_previous($responsestr,
  299: 							   $part,$id);
  300: 	&Apache::lonxml::debug("Got $right right and $wrong wrong, and $ignored were ignored");
  301: 	$Apache::lonhomework::results{"resource.$part.$id.submission"}=
  302: 	    $responsestr;
  303: 	$Apache::lonhomework::results{"resource.$part.$id.submissiongrading"}=$gradestr;
  304:         if ($Apache::lonhomework::type eq 'randomizetry') {
  305:             $Apache::lonhomework::results{"resource.$part.$id.foilorder"} = &Apache::lonnet::array2str(@whichopt);
  306:         }
  307: 	if (($Apache::lonhomework::type eq 'survey') ||
  308:             ($Apache::lonhomework::type eq 'surveycred') ||
  309:             ($Apache::lonhomework::type eq 'anonsurvey') ||
  310:             ($Apache::lonhomework::type eq 'anonsurveycred')) {
  311: 	    if ($ignored == 0) {
  312:                 my $ad;
  313:                 if ($Apache::lonhomework::type eq 'anonsurveycred') {
  314:                     $ad=$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}='ANONYMOUS_CREDIT';
  315:                 } elsif ($Apache::lonhomework::type eq 'anonsurvey') {
  316:                     $ad=$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}='ANONYMOUS';
  317:                 } elsif ($Apache::lonhomework::type eq 'surveycred') {
  318:                     $ad=$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}='SUBMITTED_CREDIT';
  319:                 } else {
  320: 		    $ad=$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}='SUBMITTED';
  321:                 }
  322: 		&Apache::response::handle_previous(\%previous,$ad);
  323: 	    } elsif ($wrong==0 && $right==0) {
  324: 	    } else {
  325: 		my $ad=$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}='MISSING_ANSWER';
  326: 		&Apache::response::handle_previous(\%previous,$ad);
  327: 	    }
  328: 	} elsif ($nonlenient) {
  329: #
  330: # Non-lenient mode. All right or all wrong
  331: #
  332: 	    my $ad;
  333: 	    if ($wrong==0 && $ignored==0) {
  334: 		$ad='EXACT_ANS';
  335: 	    } elsif ($wrong==0 && $right==0) {
  336: 		#nothing submitted
  337: 	    } else {
  338: 		if ($ignored==0) {
  339: 		    $ad='INCORRECT';
  340: 		} else {
  341: 		    $ad='MISSING_ANSWER';
  342: 		}
  343: 	    }
  344: 	    $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$ad;
  345: 	    &Apache::response::handle_previous(\%previous,$ad);
  346: 	} else {
  347: #
  348: # This is lenient mode
  349: #
  350: 	    my $ad;
  351: 	    if ($wrong==0 && $right==0) {
  352: 		#nothing submitted only assign a score if we 
  353: 		#need to override a previous grade
  354: 		if (defined($Apache::lonhomework::history{"resource.$part.$id.awarddetail"})) {
  355: 		    $ad='ASSIGNED_SCORE';
  356: 		}
  357: 	    } else {
  358: 		$ad='ASSIGNED_SCORE';
  359: 	    }
  360: 	    $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$ad;
  361: 	    $Apache::lonhomework::results{"resource.$part.$id.awarded"}=
  362: 		$right/(scalar(@whichopt));
  363: 	    $Apache::lonhomework::results{"resource.$part.$id.numfoils"}=
  364: 		scalar(@whichopt);
  365: 	}
  366:       }
  367:     }
  368:     my $part_id     = $Apache::inputtags::part;
  369:     my $response_id = $Apache::inputtags::response[-1];
  370:     my ($numrows,$bubbles_per_row);
  371:     if (($target eq 'tex') && ($Apache::lonhomework::type eq 'exam')) {
  372:         ($numrows,$bubbles_per_row) =
  373:             &Apache::optionresponse::getnumrows(scalar(@opt));
  374:     }
  375:     if ($numrows < 1) {
  376:         $numrows = 1;
  377:     }
  378:     my $increment = &getfoilcounts($max) * $numrows;
  379:     &Apache::lonxml::increment_counter($increment,"$part_id.$response_id");
  380:     if ($target eq 'analyze') {
  381: 	&Apache::lonhomework::set_bubble_lines();
  382:     }
  383: 
  384:   } elsif ($target eq 'edit') {
  385:     $result.=&Apache::edit::end_table();
  386:   }
  387:   if ($target eq 'tex' and $Apache::lonhomework::type ne 'exam') {
  388:     if($env{'form.pdfFormFields'} ne 'yes') {
  389:       $result .= '\end{itemize}'; 
  390:     } else {
  391:       $result .= "\\\\";
  392:     }
  393:   }
  394:   &Apache::response::poprandomnumber();
  395:   return $result;
  396: }
  397: 
  398: sub grading_is_nonlenient {
  399:     my ($part) = @_;
  400: # Web mode: we are non-lenient unless told otherwise
  401:     my $defaultparm = 'off';
  402:     my $nonlenient = 0;
  403: # Grading a bubblesheet exam: we are grading lenient unless told otherwise
  404:     if ($Apache::lonhomework::scantronmode) {
  405:         $defaultparm = 'on';
  406:         $nonlenient = 1;
  407:     }
  408:     my $lenientparm =
  409:         &Apache::response::get_response_param($part,'lenient',$defaultparm);
  410:     if ($lenientparm=~/^0|off|no$/i) {
  411:         $nonlenient = 1;
  412:     } elsif ($lenientparm=~/^1|on|yes$/i) {
  413:         $nonlenient = 0;
  414:     }
  415:     return $nonlenient;
  416: }
  417: 
  418: sub getfoilcounts {
  419:   my ($max)=@_;
  420:   # +1 since instructors will count from 1
  421:   my $count = $#{ $Apache::response::foilgroup{'names'} }+1;
  422:   if (&Apache::response::showallfoils()) { $max=$count; }
  423:   if ($count>$max) { $count=$max } 
  424:   &Apache::lonxml::debug("Count is $count from $max");
  425:   return $count;
  426: }
  427: 
  428: sub whichfoils {
  429:     my ($max,$randomize)=@_;
  430:     return &Apache::response::whichorder($max,$randomize,
  431: 					 &Apache::response::showallfoils(),
  432: 					 \%Apache::response::foilgroup);
  433: }
  434: 
  435: sub displayanswers {
  436:     my ($max,$randomize,@opt)=@_;
  437:     my @names;
  438:     if (ref($Apache::response::foilgroup{'names'}) eq 'ARRAY') {
  439:         @names = @{ $Apache::response::foilgroup{'names'} };
  440:     }
  441:     return if (!@names);
  442:     my @whichopt = &whichfoils($max,$randomize);
  443:     my $result;
  444:     if ($Apache::lonhomework::type eq 'exam') {
  445: 	my $i = 0;
  446: 	my %opt = map { ($_,$i++) } @opt;
  447: 	
  448: 	$i = 0;
  449: 	my @alphabet = ('A'..'Z');
  450: 	foreach my $name (@whichopt) {
  451: 	    $result.=&Apache::response::answer_header('optionresponse',$i++);
  452: 	    $result.=&Apache::response::answer_part('optionresponse',
  453: 						    $alphabet[$opt{$Apache::response::foilgroup{$name.'.value'}}]);
  454: 	    $result.=&Apache::response::answer_part('optionresponse',
  455: 						    $Apache::response::foilgroup{$name.'.value'});
  456: 	    $result.=&Apache::response::answer_footer('optionresponse');
  457: 	}
  458:     } else {
  459: 	$result=&Apache::response::answer_header('optionresponse');
  460: 	foreach my $name (@whichopt) {
  461: 	    $result.=&Apache::response::answer_part('optionresponse',
  462: 						    $Apache::response::foilgroup{$name.'.value'});
  463: 	}
  464: 	$result.=&Apache::response::answer_footer('optionresponse');
  465:     }
  466:     return $result;
  467: }
  468: 
  469: sub check_box_opt {
  470:     my ($target,$checkboxvalue,@opt)=@_;
  471: # Check if we are in checkbox mode: checkboxvalue specified, on web, only two options.
  472: # If so, return "checked" value
  473:     if ($#opt!=1) { return ''; }
  474:     if ($target ne 'web') { return ''; }
  475:     return $checkboxvalue;
  476: }
  477: 
  478: sub check_for_invalid {
  479:     my ($names,$options) = @_;
  480:     my %bad_names;
  481:     foreach my $name (@{ $names }) {
  482: 	my $value=$Apache::response::foilgroup{$name.'.value'};
  483: 	my $found=0;
  484: 	foreach my $option (@{ $options }) {
  485: 	    if ($value eq $option) { $found=1; }
  486: 	}
  487: 	if (!$found) { $bad_names{$name}=$value; }
  488:     }
  489:     if (%bad_names) {
  490: 	my $error=&mt('The question can not be gotten correct, '.
  491: 	    'the following foils in the &lt;optionresponse&gt; '.
  492: 	    'have invalid correct options').' <br /><tt>'.
  493: 	    join('<br />',(map { $_=&mt("[_1] with value [_2]",$_,$bad_names{$_}) } (keys(%bad_names)))).
  494: 	    "</tt>";
  495: 	&Apache::lonxml::error($error);
  496:     }
  497: }
  498: 
  499: sub displayfoils {
  500:   my ($target,$max,$randomize,$TeXlayout,$checkboxvalue,$checkboxchoices,
  501:       $tex_option_switch, $no_tfprompt, @opt)=@_;
  502:   if (!defined(@{ $Apache::response::foilgroup{'names'} })) {return;}
  503:   my @names = @{ $Apache::response::foilgroup{'names'} };
  504:   my @truelist;
  505:   my @falselist;
  506:   my $result;  
  507:   my $name;
  508:   my $displayoptionintex=1;
  509:   my @alphabet = ('A'..'Z');
  510:   my @whichopt = &whichfoils($max,$randomize);
  511:   unless (($target eq 'tex') && ($tex_option_switch eq 'nochoice')) {
  512:       &check_for_invalid(\@whichopt,\@opt);
  513:   }
  514:   my $part=$Apache::inputtags::part;
  515:   my $id=$Apache::inputtags::response[-1];
  516:   my $break;
  517:   if ( ($target ne 'tex') &&
  518:        &Apache::response::show_answer() ) {
  519:     my $temp=1;
  520:     foreach $name (@whichopt) {
  521: 	my $text=$Apache::response::foilgroup{$name.'.text'};
  522:         my $lastresp;
  523:         unless ((($Apache::lonhomework::history{"resource.$part.type"} eq 'anonsurvey') || ($Apache::lonhomework::history{"resource.$part.type"} eq 'anonsurveycred')) && (defined($env{'form.grade_symb'}))) {
  524:             $lastresp = $Apache::lonhomework::history{"resource.$part.$id.submission"};
  525:         }
  526: 	my %lastresponse=&Apache::lonnet::str2hash($lastresp);
  527: 	my $lastopt=$lastresponse{$name};
  528: 	if ($text!~/^\s*$/) { $break='<br />'; }
  529: 	$result.=$break;
  530: 	if ($target eq 'web') {
  531: 	    my $value=$Apache::response::foilgroup{$name.'.value'};
  532: 	    if (!($text=~s|<drawoptionlist\s*/>|$value|)) {
  533: 		if ($text=~/^\s*$/) {
  534: 		    $text=$value.$text;
  535: 		} else {
  536: 		    $text='<b>'.$value.':</b> '.$text;
  537: 		}
  538: 	    } else {
  539:                 if (@whichopt > 1) {
  540:                     $text='&#149;'.$text;
  541:                 }
  542: 	    }
  543: 	    $result.=$text."\n";
  544: 	}
  545:       if ($Apache::lonhomework::type eq 'exam') {
  546: 	  $result.=&webbubbles(\@opt,\@alphabet,$temp,$lastopt);
  547:       }
  548:       $temp++;
  549:     }
  550:   } else {
  551:     my $temp=1;
  552:     my %lastresponse;
  553:     my $newvariation;
  554:     if ((($Apache::lonhomework::history{"resource.$part.type"} eq 'randomizetry') ||
  555:         ($Apache::lonhomework::type eq 'randomizetry')) &&
  556:         ($Apache::inputtags::status[-1] eq 'CAN_ANSWER')) {
  557:         if ($env{'form.'.$part.'.rndseed'} ne
  558:             $Apache::lonhomework::history{"resource.$part.rndseed"}) {
  559:             $newvariation = 1;
  560:         }
  561:     }
  562:     unless ($newvariation) {
  563:         %lastresponse=&Apache::lonnet::str2hash($Apache::lonhomework::history{"resource.$part.$id.submission"});
  564:     }
  565:     my $internal_counter=$Apache::lonxml::counter;
  566:     my $checkboxopt=&check_box_opt($target,$checkboxvalue,@opt);
  567:     if ($checkboxopt && (!$no_tfprompt)) {
  568:        $result.='<br />'.
  569:                 ($checkboxchoices?&mt('Choices: ').'<b>'.$opt[0].','.$opt[1].'</b>. ':'').
  570:                  &mt('Select all that are <b>[_1]</b>.',$checkboxopt);
  571:     }
  572:     foreach $name (@whichopt) {
  573:       my $text=$Apache::response::foilgroup{$name.'.text'};
  574:       if ($text!~/^\s*$/) {
  575: 	  if ($target eq 'tex') {
  576: 	      $break='\vskip 0 mm ';
  577: 	  } elsif ($target eq 'web') {
  578: 	      $break='<br />';
  579: 	  }
  580:       }
  581:       my $lastopt=$lastresponse{$name};
  582:       my $optionlist="<option></option>\n";
  583: 
  584:       if($target eq 'tex' and $env{'form.pdfFormFields'} eq 'yes'
  585:          && $Apache::inputtags::status[-1] eq 'CAN_ANSWER') {
  586:           my $fieldname = $env{'request.symb'}.'&part_'.$Apache::inputtags::part.'&optionresponse'.'&HWVAL_'.$Apache::inputtags::response['-1'].':'.$temp;
  587:           $optionlist =  &Apache::lonxml::print_pdf_start_combobox($fieldname);
  588:       }
  589: 
  590:       foreach my $option (@opt) {
  591: 	  my $escopt=&HTML::Entities::encode($option,'\'"&<>');
  592:           if ($option eq $lastopt) {
  593:               if ($target eq 'tex' && $env{'form.pdfFormFields'} eq 'yes'
  594:                   && $Apache::inputtags::status[-1] eq 'CAN_ANSWER'
  595:                   && $Apache::lonhomework::type ne 'exam') {
  596:                   $optionlist .= &Apache::lonxml::print_pdf_add_combobox_option($option);
  597:               } else {
  598:                   $optionlist.="<option value='".$escopt."' selected=\"selected\">$option</option>\n";
  599:               }
  600:           } else {
  601:               if ($target eq 'tex' && $env{'form.pdfFormFields'} eq 'yes'
  602:                   && $Apache::inputtags::status[-1] eq 'CAN_ANSWER'
  603:                   && $Apache::lonhomework::type ne 'exam') {
  604:                   $optionlist .= &Apache::lonxml::print_pdf_add_combobox_option($option);
  605:               } else {
  606:                   $optionlist.="<option value='".$escopt."'>$option</option>\n";
  607:               }
  608:           }
  609:       }
  610:       if ($target ne 'tex') {
  611: 	  if ($Apache::lonhomework::type ne 'exam') {
  612: # we are on the web, this is not an exam, and the problem can be answered
  613:               if ($checkboxopt) {
  614: # generate checkboxes
  615:                   my $fieldname=$Apache::inputtags::response['-1'].':'.$temp;
  616:                   my $altopt=$opt[0];
  617:                   if ($opt[0] eq $checkboxopt) {
  618:                      $altopt=$opt[1];
  619:                   }
  620:                   my $defopt=$lastopt;
  621:                   unless ($defopt) { $defopt=$altopt; }
  622:                   my $escdefopt=&HTML::Entities::encode($defopt,'\'"&<>');
  623:                   my $esccheckboxopt=&HTML::Entities::encode($checkboxopt,'\'"&<>');
  624:                   my $escaltopt=&HTML::Entities::encode($altopt,'\'"&<>');
  625: # checkboxopt is how the box is labelled
  626: # altopt is the alternative option
  627: # lastopt is what the user submitted before
  628: # defopt is what the field is going to start out with: either previous choice or altopt
  629: # fieldname is this input field's name after HWVAL_
  630:                   $optionlist='<input type="hidden" name="HWVAL_'.$fieldname.'" value="'.$escdefopt.'" />'.
  631:                   '<input type="checkbox" name="HWCHK_'.$fieldname.'" onclick="javascript:if (this.form.elements[\'HWCHK_'.
  632:                   $fieldname.'\'].checked) { this.form.elements[\'HWVAL_'.$fieldname.'\'].value=\''.$esccheckboxopt.'\'; } else { this.form.elements[\'HWVAL_'.$fieldname.'\'].value=\''.$escaltopt.'\'; };setSubmittedPart(\''.$part.'\');"'.($defopt eq $checkboxopt?' checked="checked"':'')." />\n";
  633:               } else {
  634: # classic selection list
  635: 	          $optionlist='<select onchange="javascript:setSubmittedPart(\''.
  636: 		  $part.'\');" name="HWVAL_'.
  637: 		  $Apache::inputtags::response['-1'].':'.$temp.'">'.
  638: 		  $optionlist."</select>\n";
  639:               }
  640: 	  } else {
  641: 	      $optionlist='<u>'.('&nbsp;'x10).'</u>';
  642: 	  }
  643: 	  if ($text=~s|<drawoptionlist\s*/>|$optionlist|) {
  644: 	      if ($Apache::lonhomework::type ne 'exam') {
  645:                   if (@whichopt > 1) {  
  646:                       $text='&#149;'.$text;
  647:                   }
  648: 	      }
  649: 	  } else {
  650: 	      if ($Apache::lonhomework::type ne 'exam') {
  651: 		  $text=$optionlist.$text;
  652: 	      }
  653: 	  }
  654: 	  $result.=$break.$text."\n";
  655: 	  if ($Apache::lonhomework::type eq 'exam') {
  656: 	      $result.=&webbubbles(\@opt,\@alphabet,$temp,$lastopt);
  657: 	  }
  658: 	  $temp++;
  659:       } else {
  660: 	  my $texoptionlist='';
  661: 	  if ($displayoptionintex &&
  662: 	      $Apache::lonhomework::type ne 'exam') {
  663: 	      $texoptionlist = &optionlist_correction($TeXlayout,@opt);
  664: 	  }
  665: 	  if ($text=~/<drawoptionlist\s*\/>/) {
  666: 	      $text=~s|<drawoptionlist\s*\/>| \\makebox\[0\.3in\]\[b\]\{\\hrulefill\} |g;
  667: 	  }
  668: 
  669: 	  if ($text=~m/\\item /) {
  670: 	      if ($Apache::lonhomework::type eq 'exam') {
  671: 	          $text=~s/\\item/\\vskip 2 mm/;
  672: 	      } elsif ($env{'form.pdfFormFields'} ne 'yes') {
  673:                   $result.= $texoptionlist.$text;
  674:               }
  675:           } else {
  676: 	      if ($Apache::lonhomework::type eq 'exam') {
  677: 		  $result.= $texoptionlist.'  '.$text;
  678: 	      } elsif ($env{'form.pdfFormFields'} ne 'yes') {
  679: 		  if ($text=~/\S/) {
  680:                       $result.= $texoptionlist.'\vspace*{-2 mm}\item '.$text;
  681:                   } else {
  682:                       $result.= $texoptionlist;
  683:                   }
  684: 	      }
  685: 	  }
  686: 	  if ($Apache::lonhomework::type eq 'exam') {
  687: 	      $result.='\vskip -1 mm\noindent';
  688:               my ($numrows,$bubbles_per_row) = &getnumrows(scalar(@opt)); 
  689:               if ($numrows == 1) {  
  690:                   $result .= '\textbf{'.$internal_counter.'}. \vskip -3mm';
  691:               } else {
  692:                   my $linetext;
  693:                   for (my $i=0; $i<$numrows; $i++) {
  694:                       $linetext .= $internal_counter+$i.', ';
  695:                   }
  696:                   $linetext =~ s/,\s$//;
  697:                   $result .= '\small {\textbf{'.$linetext.'}} '.
  698:                              '\hskip 2 mm {\footnotesize '.
  699:                              &mt('(Bubble once in [_1] lines)',$numrows).
  700:                              '} \vskip 1 mm';
  701:               }
  702:               $result.= &bubbles(\@alphabet,\@opt,undef,undef,$numrows,
  703:                                  $bubbles_per_row,$internal_counter).
  704:                         ' \strut ';
  705: 	      $internal_counter += $numrows;
  706: 	  }
  707:           if ($target eq 'tex' && $env{'form.pdfFormFields'} eq 'yes'
  708:               && $Apache::inputtags::status[-1] eq 'CAN_ANSWER'
  709:               && $Apache::lonhomework::type ne 'exam') {
  710:               $text =~ s/\\item//m;
  711:               $result .= " $optionlist ". &Apache::lonxml::print_pdf_end_combobox($text).'\strut \\\\';
  712:               $temp++;
  713:           }
  714: 	  $displayoptionintex=0;
  715:       }
  716:     }
  717:   }
  718: 
  719:   if ($target eq 'web') {
  720:       my $data = [\@whichopt,'submissiongrading'];
  721:       my $questiontype;
  722:       if ($Apache::lonhomework::type eq 'randomizetry') {
  723:           $questiontype = $Apache::lonhomework::type,
  724:       }
  725:       &Apache::response::setup_prior_tries_hash(\&Apache::rankresponse::format_prior_answer,$data,$questiontype);
  726:   }
  727: 
  728:   if ($target ne 'tex') {
  729:       return $result.$break;
  730:   } else {
  731:       return $result;
  732:   }
  733: }
  734: 
  735: 
  736: sub optionlist_correction {
  737:     my ($TeXlayout,@options) = @_;
  738:     my $texoptionlist='\\item [] '.&mt('Choices:').' ';
  739:     if ($TeXlayout eq 'vertical') {$texoptionlist='\\item []';}
  740:     if (scalar(@options) > 0) {
  741: 	foreach my $option (@options) {
  742: 	    $texoptionlist.='{\bf '.
  743: 		&Apache::lonxml::latex_special_symbols($option).
  744: 		'}';
  745: 	    if ($TeXlayout eq 'vertical') {
  746: 		$texoptionlist.=' \vskip 0 mm ',
  747: 	    } else {
  748: 		$texoptionlist.=', ';
  749: 	    }
  750: 	}
  751: 	$texoptionlist=~s/, $//;
  752: 	if ($TeXlayout ne 'vertical') {$texoptionlist.='.';}
  753:     } else {
  754: 	if ($TeXlayout ne 'vertical') {$texoptionlist='\\item [] \\vskip -5 mm';}
  755:     }
  756:     return $texoptionlist;
  757: }
  758: 
  759: 
  760: sub webbubbles {
  761:     my ($ropt,$ralphabet,$temp,$lastopt)=@_;
  762:     my @opt=@$ropt; 
  763:     my @alphabet=@$ralphabet;
  764:     my $result='';
  765:     my $number_of_bubbles = $#opt + 1;
  766:     $result.= '<table border="1"><tr>';
  767:     for (my $ind=0;$ind<$number_of_bubbles;$ind++) {
  768: 	my $checked='';
  769: 	if ($lastopt eq $opt[$ind]) {
  770: 	    $checked=' checked="on" ';
  771: 	}
  772: 	$result.='<td><input type="radio" name="HWVAL_'.
  773: 	    $Apache::inputtags::response['-1'].':'.$temp.
  774: 	    '" value="'.$opt[$ind].'" '.$checked.' />';
  775: 	if ($alphabet[$ind]) {
  776: 	    $result.=$alphabet[$ind].': ';
  777: 	}
  778: 	$result.=$opt[$ind].'</td>';
  779:     }
  780:     $result.='</tr></table>';
  781:     return $result;
  782: }
  783: 
  784: 
  785: sub bubbles {
  786:     my ($ralphabet,$ropt,$response,$max_width,$numrows,$bubbles_per_row,
  787:         $internal_counter) = @_;
  788:     my @alphabet = @$ralphabet;
  789:     my @opt = @$ropt;
  790:     my ($result,$head,$line) =('','','');
  791:     my $number_of_bubbles = $#opt + 1;
  792:     my $current_length = 0;
  793:     my $textwidth;
  794:     if (defined($max_width)) {
  795: 	$textwidth=$max_width;
  796: 	&Apache::lonxml::debug("Max width passed in: $max_width");
  797:     } elsif ($env{'form.textwidth'} ne '') {
  798: 	$env{'form.textwidth'}=~/(\d+)/;
  799: 	$textwidth=$1;
  800: 	&Apache::lonxml::debug("Max width from form: $textwidth");
  801:     } else {
  802: 	$env{'form.textwidth'}=~/(\d*)\.?(\d*)/;
  803: 	$textwidth=$1.'.'.$2;
  804: 	&Apache::lonxml::debug("Max width defaults? $textwidth");
  805:     }
  806:     &Apache::lonxml::debug("Final maxwidth: $textwidth");
  807:     for (my $ind=0;$ind<=$number_of_bubbles;$ind++) {
  808:         my $item;
  809:         if ($numrows > 1) {
  810:             my $num = $internal_counter+int($ind/$bubbles_per_row);
  811:             my $idx = int($ind % $bubbles_per_row);
  812:             $item = $num.$alphabet[$idx];
  813:         } else {
  814:             $item = $alphabet[$ind];
  815:         }
  816: 	my $leftmargin;
  817: 	$opt[$ind]=&Apache::lonxml::latex_special_symbols($opt[$ind]);
  818: 	if ($response eq 'rankresponse') {$opt[$ind]='Rank '.$opt[$ind];}
  819: 	if ($ind==0) {$leftmargin=6;} else {$leftmargin=10;}
  820: 
  821: 	$current_length += (length($opt[$ind])+length($item)+5)*2;
  822:         
  823: 	if ($current_length<($textwidth-$leftmargin) and $ind!=$number_of_bubbles) {
  824:             
  825: 	    $line.='\hskip 4 mm {\small \textbf{'.$item.'}}$\bigcirc$\hskip -1 mm & \hskip -3 mm {\small '.$opt[$ind].'} & ';
  826: 	    $head.='lr';
  827: 	} else {
  828: 	    $line=~s/\&\s*$//;
  829: 	    $result.='\vskip -1 mm\noindent\setlength{\tabcolsep}{2 mm}\renewcommand{\arraystretch}{1.25}\begin{tabular}{'.$head.'}'.$line.'\\\\\end{tabular}\vskip 0 mm';
  830: 	    $line = '\hskip 4 mm {\small \textbf{'.$item.'}}$\bigcirc$\hskip -1 mm & \hskip -3 mm {\small '.$opt[$ind].'} & ';
  831: 	    $head ='lr';
  832: 	    $current_length = (length($opt[$ind])+length($item))*2;
  833: 	}
  834: 
  835:     }
  836:     return $result;
  837: }
  838: 
  839: sub start_conceptgroup {
  840:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  841:   $Apache::optionresponse::conceptgroup=1;
  842:   %Apache::response::conceptgroup=();
  843:   my $result;
  844:   if ($target eq 'edit') {
  845:     $result.=&Apache::edit::tag_start($target,$token,"Concept Grouped Foils");
  846:     $result.=&Apache::edit::text_arg('Concept:','concept',$token,'50').
  847:         &Apache::edit::end_row().&Apache::edit::start_spanning_row();
  848:   }
  849:   if ($target eq 'modified') {
  850:     my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,'concept');
  851:     if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
  852:   }
  853:   return $result;
  854: }
  855: 
  856: sub end_conceptgroup {
  857:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  858:   $Apache::optionresponse::conceptgroup=0;
  859:   my $result='';
  860:   if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' ||
  861:       $target eq 'tex' || $target eq 'analyze') {
  862:     #if not there aren't any foils to display and thus no question
  863:       &Apache::response::pick_foil_for_concept($target,
  864: 					       ['value','text','location'],
  865: 					       \%Apache::hint::option,
  866: 					       $parstack,$safeeval);
  867:   } elsif ($target eq 'edit') {
  868:     $result=&Apache::edit::end_table();
  869:   }
  870:   return $result;
  871: }
  872: 
  873: sub insert_conceptgroup {
  874:   my $result="\n\t\t<conceptgroup concept=\"\">".&insert_foil()."\n\t\t</conceptgroup>\n";
  875:   return $result;
  876: }
  877: 
  878: sub start_foil {
  879:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  880:   my $result='';
  881:   if ($target eq 'web' || $target eq 'tex' || $target eq 'analyze' ) {
  882:       &Apache::lonxml::startredirection;
  883:       if ($target eq 'analyze') {
  884: 	  &Apache::response::check_if_computed($token,$parstack,$safeeval,'value');
  885:       }
  886:   } elsif ($target eq 'edit') {
  887:     $result=&Apache::edit::tag_start($target,$token,"Foil");
  888:     my $level='-2';
  889:     if ($$tagstack['-2'] eq 'conceptgroup') { $level = '-3'; }
  890:     my @opt;
  891:     eval '@opt ='.&Apache::lonxml::get_param('options',$parstack,$safeeval,$level);
  892:     $result.=&Apache::edit::text_arg('Name:','name',$token);
  893:     $result.= &Apache::edit::select_or_text_arg('Correct Option:','value',
  894: 					       ['unused',(@opt)],$token,'15');
  895:     my $randomize=&Apache::lonxml::get_param('randomize',$parstack,
  896: 					     $safeeval,'-3');
  897:     if ($randomize ne 'no') {
  898: 	$result.=&Apache::edit::select_arg('Location:','location',
  899: 					   ['random','top','bottom'],$token);
  900:     }
  901:     $result .=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
  902:   } elsif ($target eq 'modified') {
  903:     my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
  904: 						 'value','name','location');
  905:     if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
  906:   } 
  907:   return $result;
  908: }
  909: 
  910: sub end_foil {
  911:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  912:   my $text ='';
  913:   my $result = '';
  914:   if ($target eq 'web' || $target eq 'tex' || $target eq 'analyze') { 
  915:       $text=&Apache::lonxml::endredirection;
  916:       if ($target eq 'tex') {$text=~s/\\strut\s*\\\\\s*\\strut/\\vskip 0 mm/;}
  917:       if (($target eq 'tex') and ($Apache::lonhomework::type ne 'exam') and ($text=~/\S/)) {$text = '\vspace*{-2 mm}\item '.$text;} 
  918:   }
  919:   if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' 
  920:       || $target eq 'tex' || $target eq 'analyze') {
  921:     my $value = &Apache::lonxml::get_param('value',$parstack,$safeeval);
  922:     if ($target eq 'tex' && $Apache::lonhomework::type eq 'exam') {
  923: 	$text='\vskip 5mm $\triangleright$ '.$text;
  924:     }
  925:     if ($value ne 'unused') {
  926:       my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
  927:       &Apache::lonxml::debug("Got a name of :$name:");
  928:       if ($name eq "") {
  929: 	  &Apache::lonxml::warning(&mt('Foils without names exist. This can cause problems to malfunction.'));
  930: 	  $name=$Apache::lonxml::curdepth;
  931:       }
  932:       &Apache::lonxml::debug("Using a name of :$name:");
  933:       if (defined($Apache::response::foilnames{$name})) {
  934: 	  &Apache::lonxml::error(&mt("Foil name [_1] appears more than once. Foil names need to be unique.",'<b><tt>'.$name.'</tt></b>'));
  935:       }
  936:       $Apache::response::foilnames{$name}++;
  937:       my $location =&Apache::lonxml::get_param('location',$parstack,$safeeval);
  938:       if ( $Apache::optionresponse::conceptgroup
  939: 	   && !&Apache::response::showallfoils() ) {
  940: 	push @{ $Apache::response::conceptgroup{'names'} }, $name;
  941: 	$Apache::response::conceptgroup{"$name.value"} = $value;
  942: 	$Apache::response::conceptgroup{"$name.text"} = $text;
  943: 	$Apache::response::conceptgroup{"$name.location"} = $location;
  944:       } else {
  945: 	push @{ $Apache::response::foilgroup{'names'} }, $name;
  946: 	$Apache::response::foilgroup{"$name.value"} = $value;
  947: 	$Apache::response::foilgroup{"$name.text"} = $text;
  948: 	$Apache::response::foilgroup{"$name.location"} = $location;
  949:       }
  950:     }
  951:   }
  952:   if ($target eq 'edit') {
  953:     $result.= &Apache::edit::tag_end($target,$token,'');
  954:   }
  955:   return $result;
  956: }
  957: 
  958: sub start_drawoptionlist {
  959:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  960:     if ($target !~ /^(?:meta|answer|modified|edit)$/) {
  961: 	return $token->[4];
  962:     }
  963: }
  964: 
  965: sub end_drawoptionlist {
  966:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  967:     if ($target !~ /^(?:meta|answer|modified|edit)$/) {
  968: 	return $token->[2];
  969:     }
  970: }
  971: 
  972: sub insert_foil {
  973:     return '
  974: <foil name="" value="unused">
  975: <startouttext />
  976: <endouttext />
  977: </foil>';
  978: }
  979: 
  980: sub insert_drawoptionlist {
  981:     return '<drawoptionlist />';
  982: }
  983: 
  984: sub getnumrows {
  985:     my ($numitems) = @_;
  986:     my $bubbles_per_row;
  987:     my $default_numbubbles = 10;
  988:     if (($env{'form.bubbles_per_row'} =~ /^\d+$/) &&
  989:         ($env{'form.bubbles_per_row'} > 0)) {
  990:         $bubbles_per_row = $env{'form.bubbles_per_row'};
  991:     } else {
  992:         $bubbles_per_row = $default_numbubbles;
  993:     }
  994:     my $numrows = int ($numitems/$bubbles_per_row);
  995:     if (($numitems % $bubbles_per_row) != 0) {
  996:         $numrows ++;
  997:     }
  998:     return ($numrows,$bubbles_per_row);
  999: }
 1000: 
 1001: 1;
 1002: __END__
 1003:  
 1004: =head1 NAME
 1005: 
 1006: Apache::optionresponse.pm;
 1007: 
 1008: =head1 SYNOPSIS
 1009: 
 1010: Handles tags associated with showing a list of
 1011: options.
 1012: 
 1013: This is part of the LearningOnline Network with CAPA project
 1014: described at http://www.lon-capa.org.
 1015: 
 1016: =head1 HANDLER SUBROUTINE
 1017: 
 1018: start_optionresponse()
 1019: 
 1020: =head1 OTHER SUBROUTINES
 1021: 
 1022: =over
 1023: 
 1024: =item end_optionresponse()
 1025: 
 1026: =item start_foilgroup()
 1027: 
 1028: =item end_foilgroup()
 1029: 
 1030: =item getfoilcounts()
 1031: 
 1032: =item displayanswers()
 1033: 
 1034: =item check_for_invalid()
 1035: 
 1036: =item displayfoils()
 1037: 
 1038: =item optionlist_correction()
 1039: 
 1040: =item webbubbles()
 1041: 
 1042: =item bubbles()
 1043: 
 1044: =item start_conceptgroup()
 1045: 
 1046: =item end_conceptgroup()
 1047: 
 1048: =item insert_conceptgroup()
 1049: 
 1050: =item start_foil()
 1051: 
 1052: =item end_foil()
 1053: 
 1054: =item start_drawoptionlist()
 1055: 
 1056: =item end_drawoptionlist()
 1057: 
 1058: =item insert_foil()
 1059: 
 1060: =item insert_drawoptionlist()
 1061: 
 1062: =back
 1063: 
 1064: =cut

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