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