Annotation of loncom/homework/caparesponse/caparesponse.pm, revision 1.251
1.3 albertel 1: # The LearningOnline Network with CAPA
2: # caparesponse definition
1.47 albertel 3: #
1.251 ! foxr 4: # $Id: caparesponse.pm,v 1.249.8.2 2012/02/04 20:40:15 foxr
1.47 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.3 albertel 28:
29: package Apache::caparesponse;
30: use strict;
1.4 albertel 31: use capa;
1.190 albertel 32: use Safe::Hole;
33: use Apache::lonmaxima();
1.129 www 34: use Apache::lonlocal;
1.166 albertel 35: use Apache::lonnet;
1.241 raeburn 36: use Apache::lonmsg();
1.202 www 37: use Apache::response();
1.194 albertel 38: use Storable qw(dclone);
1.251 ! foxr 39: use Apache::lonnet;
1.3 albertel 40:
1.50 harris41 41: BEGIN {
1.194 albertel 42: &Apache::lonxml::register('Apache::caparesponse',('numericalresponse','stringresponse','formularesponse'));
1.3 albertel 43: }
44:
1.181 albertel 45: my %answer;
1.204 albertel 46: my @answers;
1.251 ! foxr 47: my @alphabet=('A'..'Z');
! 48:
1.203 albertel 49: sub get_answer { return %answer; };
1.204 albertel 50: sub push_answer{ push(@answers,dclone(\%answer)); undef(%answer) }
51: sub pop_answer { %answer = %{pop(@answers)}; };
1.203 albertel 52:
1.181 albertel 53: my $cur_name;
1.195 albertel 54: my $tag_internal_answer_name = 'INTERNAL';
55:
1.181 albertel 56: sub start_answer {
57: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
58: my $result;
59: $cur_name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
60: if ($cur_name =~ /^\s*$/) { $cur_name = $Apache::lonxml::curdepth; }
61: my $type = &Apache::lonxml::get_param('type',$parstack,$safeeval);
62: if (!defined($type) && $tagstack->[-2] eq 'answergroup') {
63: $type = &Apache::lonxml::get_param('type',$parstack,$safeeval,-2);
64: }
65: if (!defined($type)) { $type = 'ordered' };
66: $answer{$cur_name}= { 'type' => $type,
67: 'answers' => [] };
1.208 albertel 68: if ($target eq 'edit') {
69: $result.=&Apache::edit::tag_start($target,$token);
70: $result.=&Apache::edit::text_arg('Name:','name',$token);
71: $result.=&Apache::edit::select_arg('Type:','type',
72: [['ordered', 'Ordered' ],
73: ['unordered','Unordered'],],
74: $token);
75: $result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
76: } elsif ($target eq 'modified') {
77: my $constructtag = &Apache::edit::get_new_args($token,$parstack,
78: $safeeval,'name',
79: 'type');
80: if ($constructtag) {
81: $result = &Apache::edit::rebuild_tag($token);
82: $result.= &Apache::edit::handle_insert();
83: }
84: }
1.181 albertel 85: return $result;
86: }
87:
88: sub end_answer {
89: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
90: my $result;
1.208 albertel 91: if ($target eq 'edit') {
92: $result .= &Apache::edit::tag_end();
93: }
94:
1.181 albertel 95: undef($cur_name);
96: return $result;
97: }
98:
1.208 albertel 99: sub insert_answer {
100: return '
101: <answer>
102: <value></value>
103: </answer>';
104: }
105:
1.181 albertel 106: sub start_answergroup {
107: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
108: my $result;
1.208 albertel 109: if ($target eq 'edit') {
110: $result.=&Apache::edit::tag_start($target,$token);
111: $result.=&Apache::edit::select_arg('Type:','type',
112: [['ordered', 'Ordered' ],
113: ['unordered','Unordered'],],
114: $token);
115: $result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
116: } elsif ($target eq 'modified') {
117: my $constructtag = &Apache::edit::get_new_args($token,$parstack,
118: $safeeval,'name',
119: 'type');
120: if ($constructtag) {
121: $result = &Apache::edit::rebuild_tag($token);
122: $result.= &Apache::edit::handle_insert();
123: }
124: }
1.181 albertel 125: return $result;
126: }
127:
128: sub end_answergroup {
129: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
130: my $result;
1.194 albertel 131: if ($target eq 'web') {
132: if ( &Apache::response::show_answer() ) {
133: my $partid = $Apache::inputtags::part;
134: my $id = $Apache::inputtags::response[-1];
135: &set_answertext($Apache::lonhomework::history{"resource.$partid.$id.answername"},
136: $target,$token,$tagstack,$parstack,$parser,
137: $safeeval,-2);
138: }
1.208 albertel 139: } elsif ($target eq 'edit') {
140: $result .= &Apache::edit::tag_end();
1.194 albertel 141: }
1.181 albertel 142: return $result;
143: }
144:
1.208 albertel 145: sub insert_answergroup {
146: return '
147: <answergroup>
148: <answer>
149: <value></value>
150: </answer>
151: </answergroup>';
152: }
153:
1.181 albertel 154: sub start_value {
1.182 albertel 155: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.181 albertel 156: my $result;
157: if ( $target eq 'web' || $target eq 'tex' ||
158: $target eq 'grade' || $target eq 'webgrade' ||
159: $target eq 'answer' || $target eq 'analyze' ) {
1.182 albertel 160: my $bodytext = &Apache::lonxml::get_all_text("/value",$parser,$style);
1.181 albertel 161: $bodytext = &Apache::run::evaluate($bodytext,$safeeval,
162: $$parstack[-1]);
1.195 albertel 163:
164: push(@{ $answer{$cur_name}{'answers'} },[$bodytext]);
165:
1.208 albertel 166: } elsif ($target eq 'edit') {
167: $result.=&Apache::edit::tag_start($target,$token);
168: my $bodytext = &Apache::lonxml::get_all_text("/value",$parser,$style);
169: $result.=&Apache::edit::editline($token->[1],$bodytext,undef,40).
170: &Apache::edit::end_row();
171: } elsif ($target eq 'modified') {
172: $result=$token->[4].&Apache::edit::modifiedfield('/value',$parser);
1.181 albertel 173: }
174: return $result;
175: }
176:
177: sub end_value {
178: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
179: my $result;
1.208 albertel 180: if ($target eq 'edit') {
181: $result = &Apache::edit::end_table();
182: }
1.181 albertel 183: return $result;
184: }
185:
1.208 albertel 186: sub insert_value {
187: return '
188: <value></value>';
189: }
190:
1.195 albertel 191: sub start_vector {
192: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
193: my $result;
194: if ( $target eq 'web' || $target eq 'tex' ||
195: $target eq 'grade' || $target eq 'webgrade' ||
196: $target eq 'answer' || $target eq 'analyze' ) {
197: my $bodytext = &Apache::lonxml::get_all_text("/vector",$parser,$style);
198: my @values = &Apache::run::run($bodytext,$safeeval,$$parstack[-1]);
199: if (@values == 1) {
200: @values = split(',',$values[0]);
201: }
202: push(@{ $answer{$cur_name}{'answers'} },\@values);
1.208 albertel 203: } elsif ($target eq 'edit') {
204: $result.=&Apache::edit::tag_start($target,$token);
205: my $bodytext = &Apache::lonxml::get_all_text("/vector",$parser,$style);
206: $result.=&Apache::edit::editline($token->[1],$bodytext,undef,40).
207: &Apache::edit::end_row();
208: } elsif ($target eq 'modified') {
209: $result=$token->[4].&Apache::edit::modifiedfield('/vector',$parser);
1.195 albertel 210: }
211: return $result;
212: }
213:
214: sub end_vector {
215: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
216: my $result;
1.208 albertel 217: if ($target eq 'edit') {
218: $result = &Apache::edit::end_table();
219: }
1.195 albertel 220: return $result;
221: }
222:
1.208 albertel 223: sub insert_vector {
224: return '
225: <value></value>';
226: }
227:
1.181 albertel 228: sub start_array {
1.182 albertel 229: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.181 albertel 230: my $result;
231: if ( $target eq 'web' || $target eq 'tex' ||
232: $target eq 'grade' || $target eq 'webgrade' ||
233: $target eq 'answer' || $target eq 'analyze' ) {
1.182 albertel 234: my $bodytext = &Apache::lonxml::get_all_text("/array",$parser,$style);
1.181 albertel 235: my @values = &Apache::run::evaluate($bodytext,$safeeval,
236: $$parstack[-1]);
237: push(@{ $answer{$cur_name}{'answers'} },@values);
238: }
239: return $result;
240: }
241:
242: sub end_array {
243: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
244: my $result;
245: return $result;
246: }
247:
248: sub start_unit {
249: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
250: my $result;
251: return $result;
252: }
253:
254: sub end_unit {
255: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
256: my $result;
257: return $result;
258: }
259:
1.89 albertel 260: sub start_numericalresponse {
261: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.195 albertel 262: &Apache::lonxml::register('Apache::caparesponse',
263: ('answer','answergroup','value','array','unit',
264: 'vector'));
1.208 albertel 265: push(@Apache::lonxml::namespace,'caparesponse');
1.89 albertel 266: my $id = &Apache::response::start_response($parstack,$safeeval);
267: my $result;
1.181 albertel 268: undef(%answer);
269: undef(%{$safeeval->varglob('LONCAPA::CAPAresponse_args')});
1.89 albertel 270: if ($target eq 'edit') {
271: $result.=&Apache::edit::tag_start($target,$token);
272: $result.=&Apache::edit::text_arg('Answer:','answer',$token);
273: if ($token->[1] eq 'numericalresponse') {
1.122 albertel 274: $result.=&Apache::edit::text_arg('Incorrect Answers:','incorrect',
1.149 www 275: $token).
276: &Apache::loncommon::help_open_topic('numerical_wrong_answers');
1.89 albertel 277: $result.=&Apache::edit::text_arg('Unit:','unit',$token,5).
278: &Apache::loncommon::help_open_topic('Physical_Units');
279: $result.=&Apache::edit::text_arg('Format:','format',$token,4).
280: &Apache::loncommon::help_open_topic('Numerical_Response_Format');
281: } elsif ($token->[1] eq 'formularesponse') {
282: $result.=&Apache::edit::text_arg('Sample Points:','samples',
283: $token,40).
284: &Apache::loncommon::help_open_topic('Formula_Response_Sampling');
285: }
1.248 www 286: $result.=&Apache::edit::text_arg('Pre-Processor Subroutine:','preprocess',
287: $token,10);
1.89 albertel 288: $result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
289: } elsif ($target eq 'modified') {
290: my $constructtag;
291: if ($token->[1] eq 'numericalresponse') {
292: $constructtag=&Apache::edit::get_new_args($token,$parstack,
293: $safeeval,'answer',
1.156 albertel 294: 'incorrect','unit',
1.248 www 295: 'format','preprocess');
1.89 albertel 296: } elsif ($token->[1] eq 'formularesponse') {
297: $constructtag=&Apache::edit::get_new_args($token,$parstack,
298: $safeeval,'answer',
1.250 www 299: 'samples','preprocess');
1.89 albertel 300: }
301: if ($constructtag) {
302: $result = &Apache::edit::rebuild_tag($token);
303: $result.=&Apache::edit::handle_insert();
1.22 albertel 304: }
1.89 albertel 305: } elsif ($target eq 'meta') {
306: $result=&Apache::response::meta_package_write('numericalresponse');
307: } elsif ($target eq 'answer' || $target eq 'grade') {
308: &Apache::response::reset_params();
1.96 albertel 309: } elsif ($target eq 'web') {
310: my $partid = $Apache::inputtags::part;
311: my $hideunit=&Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.turnoffunit');
312: &Apache::lonxml::debug("Got unit $hideunit for $partid $id");
313: #no way to enter units, with radio buttons
1.238 www 314: if ((lc($hideunit) eq "yes") && ($Apache::lonhomework::type ne 'exam')) {
1.96 albertel 315: my $unit=&Apache::lonxml::get_param_var('unit',$parstack,
316: $safeeval);
317: if ($unit =~ /\S/) { $result.=" (in $unit) "; }
318: }
1.146 albertel 319: if ( &Apache::response::show_answer() ) {
1.195 albertel 320: &set_answertext($tag_internal_answer_name,$target,$token,$tagstack,
321: $parstack,$parser,$safeeval,-1);
1.194 albertel 322: }
323: }
324: return $result;
325: }
326:
327: sub set_answertext {
328: my ($name,$target,$token,$tagstack,$parstack,$parser,$safeeval,
329: $response_level) = @_;
330: &add_in_tag_answer($parstack,$safeeval,$response_level);
331:
1.206 albertel 332: if ($name eq '' || !ref($answer{$name})) {
333: if (ref($answer{$tag_internal_answer_name})) {
334: $name = $tag_internal_answer_name;
335: } else {
336: $name = (sort(keys(%answer)))[0];
337: }
338: }
1.194 albertel 339: return if ($name eq '' || !ref($answer{$name}));
340:
341: my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,
342: $safeeval,$response_level);
343: my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval,
344: $response_level);
345:
346: &Apache::lonxml::debug("answer looks to be $name");
1.195 albertel 347: my @answertxt;
1.194 albertel 348: for (my $i=0; $i < scalar(@{$answer{$name}{'answers'}}); $i++) {
1.195 albertel 349: my $answertxt;
1.194 albertel 350: my $answer=$answer{$name}{'answers'}[$i];
1.195 albertel 351: foreach my $element (@$answer) {
352: if ( scalar(@$tagstack)
353: && $tagstack->[$response_level] ne 'numericalresponse') {
354: $answertxt.=$element.',';
1.194 albertel 355: } else {
1.195 albertel 356: my $format;
357: if ($#formats > 0) {
358: $format=$formats[$i];
359: } else {
360: $format=$formats[0];
361: }
362: if ($unit=~/\$/) { $format="\$".$format; $unit=~s/\$//g; }
363: if ($unit=~/\,/) { $format="\,".$format; $unit=~s/\,//g; }
364: my $formatted=&format_number($element,$format,$target,
365: $safeeval);
366: $answertxt.=' '.$formatted.',';
1.146 albertel 367: }
1.195 albertel 368:
369: }
370: chop($answertxt);
371: if ($target eq 'web') {
372: $answertxt.=" $unit ";
1.146 albertel 373: }
1.195 albertel 374:
375: push(@answertxt,$answertxt)
1.16 albertel 376: }
1.194 albertel 377:
378: my $id = $Apache::inputtags::response[-1];
1.195 albertel 379: $Apache::inputtags::answertxt{$id}=\@answertxt;
1.21 albertel 380: }
381:
1.195 albertel 382: sub setup_capa_args {
383: my ($safeeval,$parstack,$args,$response) = @_;
1.167 albertel 384: my $args_ref= \%{$safeeval->varglob('LONCAPA::CAPAresponse_args')};
1.195 albertel 385: undef(%{ $args_ref });
386:
387: foreach my $arg (@{$args}) {
1.167 albertel 388: $$args_ref{$arg}=
389: &Apache::lonxml::get_param($arg,$parstack,$safeeval);
390: }
391: foreach my $key (keys(%Apache::inputtags::params)) {
392: $$args_ref{$key}=$Apache::inputtags::params{$key};
393: }
1.195 albertel 394: &setup_capa_response($args_ref,$response);
395: return $args_ref;
396: }
397:
398: sub setup_capa_response {
399: my ($args_ref,$response) = @_;
400:
401: if (ref($response)) {
402: $$args_ref{'response'}=dclone($response);
403: } else {
404: $$args_ref{'response'}=dclone([$response]);
405: }
406: }
407:
408: sub check_submission {
409: my ($response,$partid,$id,$tag,$parstack,$safeeval,$ignore_sig)=@_;
1.247 www 410: my @args = ('type','tol','sig','format','unit','calc','samples','preprocess');
1.195 albertel 411: my $args_ref = &setup_capa_args($safeeval,$parstack,\@args,$response);
412:
413: my $hideunit=
414: &Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.turnoffunit');
415: #no way to enter units, with radio buttons
1.167 albertel 416: if ($Apache::lonhomework::type eq 'exam' ||
417: lc($hideunit) eq "yes") {
418: delete($$args_ref{'unit'});
419: }
420: #sig fig don't make much sense either
421: if (($Apache::lonhomework::type eq 'exam' ||
1.171 albertel 422: &Apache::response::submitted('scantron') ||
423: $ignore_sig) &&
1.167 albertel 424: $tag eq 'numericalresponse') {
425: delete($$args_ref{'sig'});
426: }
427:
428: if ($tag eq 'formularesponse') {
1.199 www 429: if ($$args_ref{'samples'}) {
1.191 www 430: $$args_ref{'type'}='fml';
1.199 www 431: } else {
432: $$args_ref{'type'}='math';
433: }
1.167 albertel 434: } elsif ($tag eq 'numericalresponse') {
435: $$args_ref{'type'}='float';
1.233 raeburn 436: } elsif ($tag eq 'stringresponse') {
437: if ($$args_ref{'type'} eq '') {
438: $$args_ref{'type'} = 'ci';
439: }
1.167 albertel 440: }
1.233 raeburn 441:
1.194 albertel 442: &add_in_tag_answer($parstack,$safeeval);
443:
1.218 albertel 444: if (!%answer) {
445: &Apache::lonxml::error("No answers are defined");
446: }
447:
1.195 albertel 448: my (@final_awards,@final_msgs,@names);
1.181 albertel 449: foreach my $name (keys(%answer)) {
450: &Apache::lonxml::debug(" doing $name with ".join(':',@{ $answer{$name}{'answers'} }));
1.194 albertel 451:
452: ${$safeeval->varglob('LONCAPA::CAPAresponse_answer')}=dclone($answer{$name});
1.195 albertel 453: &setup_capa_response($args_ref,$response);
454: use Time::HiRes;
455: my $t0 = [Time::HiRes::gettimeofday()];
1.181 albertel 456: my ($result,@msgs) =
1.233 raeburn 457: &Apache::run::run("&caparesponse_check_list()",$safeeval);
1.195 albertel 458: &Apache::lonxml::debug("checking $name $result with $response took ".&Time::HiRes::tv_interval($t0));
1.243 raeburn 459:
1.181 albertel 460: &Apache::lonxml::debug('msgs are '.join(':',@msgs));
461: my ($awards)=split(/:/,$result);
462: my @awards= split(/,/,$awards);
463: my ($ad, $msg) = &Apache::inputtags::finalizeawards(\@awards,\@msgs);
464: push(@final_awards,$ad);
465: push(@final_msgs,$msg);
466: push(@names,$name);
467: }
468: my ($ad, $msg, $name) = &Apache::inputtags::finalizeawards(\@final_awards,
469: \@final_msgs,
470: \@names,1);
1.194 albertel 471: &Apache::lonxml::debug(" name of picked award is $name from ".join(', ',@names));
472: return($ad,$msg, $name);
473: }
474:
1.241 raeburn 475: sub stringresponse_gradechange {
476: my ($part,$id,$previous,$caller,$response,$ad,$type) = @_;
477: return unless (ref($previous) eq 'HASH');
478: my ($prevarray,$prevaward);
479: my %typenames = (
480: cs => 'Case sensitive',
481: ci => 'Case insensitive',
482: );
483: if ($caller eq 'cs') {
484: return unless (ref($previous->{'version'}) eq 'ARRAY');
485: $prevarray = $previous->{'version'};
486: $prevaward = $previous->{'award'};
487: } elsif ($caller eq 'ci') {
488: return unless (ref($previous->{'versionci'}) eq 'ARRAY');
489: $prevarray = $previous->{'versionci'};
490: $prevaward = $previous->{'awardci'};
491: } else {
492: return;
493: }
494: my $count=0;
495: my %count_lookup;
496: foreach my $i (1..$Apache::lonhomework::history{'version'}) {
497: my $prefix = $i.":resource.$part";
498: next if (!exists($Apache::lonhomework::history{"$prefix.award"}));
499: $count++;
500: $count_lookup{$i} = $count;
501: }
502: my ($symb,$courseid,$domain,$name) = &Apache::lonnet::whichuser();
503: my %coursedesc = &Apache::lonnet::coursedescription($courseid);
504: my $cdom = $coursedesc{'domain'};
505: my $versions = ' (submissions: '.join(', ',map {$count_lookup{$_} } @{$prevarray}).')';
506: my $warning = "String Response ($typenames{$type}) grading discrepancy: award for response of $response changed from $prevaward".$versions." to $ad; user: $name:$domain in course: $courseid for part: $part response: $id for symb: $symb";
507: &Apache::lonnet::logthis($warning);
508: my $origmail = $Apache::lonnet::perlvar{'lonAdmEMail'};
509: my $recipients = &Apache::loncommon::build_recipient_list(undef,'errormail',
510: $cdom,$origmail);
511: if ($recipients ne '') {
512: &Apache::lonmsg::sendemail($recipients,'Stringresponse Grading Discrepancy',$warning);
513: }
514: return;
515: }
516:
1.194 albertel 517: sub add_in_tag_answer {
518: my ($parstack,$safeeval,$response_level) = @_;
519: my @answer=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval,
520: $response_level);
521: &Apache::lonxml::debug('answer is'.join(':',@answer));
1.213 albertel 522: if (@answer && $answer[0] =~ /\S/) {
1.195 albertel 523: $answer{$tag_internal_answer_name}= {'type' => 'ordered',
524: 'answers' => [\@answer] };
1.194 albertel 525: }
1.167 albertel 526: }
527:
1.202 www 528: sub capa_formula_fix {
529: my ($expression)=@_;
530: return &Apache::response::implicit_multiplication($expression);
531: }
532:
1.89 albertel 533: sub end_numericalresponse {
534: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.208 albertel 535:
536: &Apache::lonxml::deregister('Apache::caparesponse',
537: ('answer','answergroup','value','array','unit',
538: 'vector'));
539: pop(@Apache::lonxml::namespace);
540:
1.90 albertel 541: my $increment=1;
1.89 albertel 542: my $result = '';
543: if (!$Apache::lonxml::default_homework_loaded) {
544: &Apache::lonxml::default_homework_load($safeeval);
1.34 albertel 545: }
1.167 albertel 546: my $partid = $Apache::inputtags::part;
547: my $id = $Apache::inputtags::response[-1];
1.125 albertel 548: my $tag;
1.190 albertel 549: my $safehole = new Safe::Hole;
1.168 albertel 550: $safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
1.190 albertel 551:
1.125 albertel 552: if (scalar(@$tagstack)) { $tag=$$tagstack[-1]; }
1.162 albertel 553: if ( $target eq 'grade' && &Apache::response::submitted() ) {
1.140 albertel 554: &Apache::response::setup_params($tag,$safeeval);
1.95 albertel 555: if ($Apache::lonhomework::type eq 'exam' &&
1.190 albertel 556: (($tag eq 'formularesponse') || ($tag eq 'mathresponse'))) {
1.95 albertel 557: $increment=&Apache::response::scored_response($partid,$id);
558: } else {
559: my $response = &Apache::response::getresponse();
560: if ( $response =~ /[^\s]/) {
561: my %previous = &Apache::response::check_for_previous($response,$partid,$id);
562: &Apache::lonxml::debug("submitted a $response<br>\n");
563: &Apache::lonxml::debug($$parstack[-1] . "\n<br>");
564:
1.162 albertel 565: if ( &Apache::response::submitted('scantron')) {
1.228 riegler 566: &add_in_tag_answer($parstack,$safeeval);
567: my ($values,$display)=&make_numerical_bubbles($partid,$id,
568: $target,$parstack,$safeeval);
569: $response=$values->[$response];
570: }
571: $Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response;
1.194 albertel 572: my ($ad,$msg,$name)=&check_submission($response,$partid,$id,
573: $tag,$parstack,
574: $safeeval);
1.167 albertel 575:
1.142 albertel 576: &Apache::lonxml::debug('ad is'.$ad);
577: if ($ad eq 'SIG_FAIL') {
578: my ($sig_u,$sig_l)=
579: &get_sigrange($Apache::inputtags::params{'sig'});
580: $msg=join(':',$msg,$sig_l,$sig_u);
581: &Apache::lonxml::debug("sigs bad $sig_u $sig_l ".
582: $Apache::inputtags::params{'sig'});
583: }
1.95 albertel 584: &Apache::lonxml::debug("\n<br>result:$result:$Apache::lonxml::curdepth<br>\n");
1.237 raeburn 585: if (($ad eq 'INCORRECT' || $ad eq 'APPROX_ANS' ||
586: $ad eq 'EXACT_ANS')) {
587: if ($Apache::lonhomework::type eq 'survey') {
588: $ad='SUBMITTED';
589: } elsif ($Apache::lonhomework::type eq 'surveycred') {
590: $ad='SUBMITTED_CREDIT';
591: } elsif ($Apache::lonhomework::type eq 'anonsurvey') {
592: $ad='ANONYMOUS';
593: } elsif ($Apache::lonhomework::type eq 'anonsurveycred') {
594: $ad='ANONYMOUS_CREDIT';
595: }
596: }
1.95 albertel 597: &Apache::response::handle_previous(\%previous,$ad);
598: $Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}=$ad;
1.142 albertel 599: $Apache::lonhomework::results{"resource.$partid.$id.awardmsg"}=$msg;
1.194 albertel 600: $Apache::lonhomework::results{"resource.$partid.$id.answername"}=$name;
1.95 albertel 601: $result='';
1.90 albertel 602: }
1.89 albertel 603: }
604: } elsif ($target eq 'web' || $target eq 'tex') {
1.196 albertel 605: &check_for_answer_errors($parstack,$safeeval);
1.89 albertel 606: my $award = $Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"};
607: my $status = $Apache::inputtags::status['-1'];
608: if ($Apache::lonhomework::type eq 'exam') {
1.194 albertel 609: # FIXME support multi dimensional numerical problems
610: # in exam bubbles
1.184 albertel 611: my ($bubble_values,$bubble_display)=
612: &make_numerical_bubbles($partid,$id,$target,$parstack,
613: $safeeval);
614: my $number_of_bubbles = scalar(@{ $bubble_values });
1.89 albertel 615: my $unit=&Apache::lonxml::get_param_var('unit',$parstack,
616: $safeeval);
617: if ($target eq 'web') {
1.125 albertel 618: if ($tag eq 'numericalresponse') {
1.89 albertel 619: if ($unit=~/\S/) {$result.=' (in '.$unit.')<br /><br />';}
620: $result.= '<table border="1"><tr>';
1.116 albertel 621: my $previous=$Apache::lonhomework::history{"resource.$Apache::inputtags::part.$id.submission"};
1.90 albertel 622: for (my $ind=0;$ind<$number_of_bubbles;$ind++) {
1.116 albertel 623: my $checked='';
1.158 albertel 624: if ($previous eq $bubble_values->[$ind]) {
1.116 albertel 625: $checked=" checked='on' ";
626: }
1.90 albertel 627: $result.='<td><input type="radio" name="HWVAL_'.$id.
1.158 albertel 628: '" value="'.$bubble_values->[$ind].'" '.$checked
1.116 albertel 629: .' /><b>'.$alphabet[$ind].'</b>: '.
1.158 albertel 630: $bubble_display->[$ind].'</td>';
1.89 albertel 631: }
632: $result.='</tr></table>';
633: }
634: } elsif ($target eq 'tex') {
1.107 sakharuk 635: if ((defined $unit) and ($unit=~/\S/) and ($Apache::lonhomework::type eq 'exam')) {
1.89 albertel 636: $result.=' \textit{(in} \verb|'.$unit.'|\textit{)} ';
637: }
1.125 albertel 638: if ($tag eq 'numericalresponse') {
1.251 ! foxr 639: $result .= &make_horizontal_latex_bubbles($bubble_values, $bubble_display,
! 640: '$\bigcirc$');
1.89 albertel 641: } else {
1.188 albertel 642: $increment = &Apache::response::repetition();
1.89 albertel 643: }
644: }
645: }
1.228 riegler 646: if (($target eq 'web') && ($tag eq 'formularesponse')
1.231 riegler 647: && ($Apache::lonhomework::type ne 'exam') && ($Apache::inputtags::status['-1'] eq 'CAN_ANSWER')
1.235 raeburn 648: && (&Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.turnoffeditor') ne 'yes')) {
649: $result.=&Apache::response::edit_mathresponse_button($id,"HWVAL_$id");
1.228 riegler 650: }
651:
1.212 albertel 652: &Apache::response::setup_prior_tries_hash(\&format_prior_response_numerical);
1.89 albertel 653: } elsif ($target eq 'edit') {
654: $result.='</td></tr>'.&Apache::edit::end_table;
655: } elsif ($target eq 'answer' || $target eq 'analyze') {
1.167 albertel 656: my $part_id="$partid.$id";
1.89 albertel 657: if ($target eq 'analyze') {
658: push (@{ $Apache::lonhomework::analyze{"parts"} },$part_id);
1.125 albertel 659: $Apache::lonhomework::analyze{"$part_id.type"} = $tag;
1.117 albertel 660: my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,$safeeval);
1.161 albertel 661: if ($#incorrect eq 0) { @incorrect=(split(/,/,$incorrect[0])); }
1.117 albertel 662: push (@{ $Apache::lonhomework::analyze{"$part_id.incorrect"} }, @incorrect);
1.154 albertel 663: &Apache::response::check_if_computed($token,$parstack,
664: $safeeval,'answer');
1.89 albertel 665: }
1.125 albertel 666: if (scalar(@$tagstack)) {
1.140 albertel 667: &Apache::response::setup_params($tag,$safeeval);
1.125 albertel 668: }
1.194 albertel 669: &add_in_tag_answer($parstack,$safeeval);
1.58 sakharuk 670: my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval);
1.194 albertel 671:
1.58 sakharuk 672: my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval);
1.89 albertel 673:
674: if ($target eq 'answer') {
1.195 albertel 675: $result.=&Apache::response::answer_header($tag,undef,
676: scalar(keys(%answer)));
1.185 albertel 677: if ($tag eq 'numericalresponse'
678: && $Apache::lonhomework::type eq 'exam') {
1.184 albertel 679: my ($bubble_values,undef,$correct) = &make_numerical_bubbles($partid,
680: $id,$target,$parstack,$safeeval);
681: $result.=&Apache::response::answer_part($tag,$correct);
682: }
1.89 albertel 683: }
1.194 albertel 684: foreach my $name (sort(keys(%answer))) {
685: my @answers = @{ $answer{$name}{'answers'} };
1.200 albertel 686: if ($target eq 'analyze') {
687: foreach my $info ('answer','ans_high','ans_low','format') {
688: $Apache::lonhomework::analyze{"$part_id.$info"}{$name}=[];
689: }
690: }
1.194 albertel 691: my ($sigline,$tolline);
1.195 albertel 692: if ($name ne $tag_internal_answer_name
693: || scalar(keys(%answer)) > 1) {
694: $result.=&Apache::response::answer_part($tag,$name);
695: }
1.194 albertel 696: for(my $i=0;$i<=$#answers;$i++) {
697: my $ans=$answers[$i];
698: my $fmt=$formats[0];
699: if (@formats && $#formats) {$fmt=$formats[$i];}
700: my ($sighigh,$siglow);
701: if ($Apache::inputtags::params{'sig'}) {
702: ($sighigh,$siglow)=&get_sigrange($Apache::inputtags::params{'sig'});
703: }
1.195 albertel 704: my @vector;
705: if (ref($ans)) {
706: @vector = @{ $ans };
707: } else {
708: @vector = ($ans);
1.194 albertel 709: }
1.200 albertel 710: my @all_answer_info;
711: foreach my $element (@vector) {
712: my ($high,$low);
713: if ($Apache::inputtags::params{'tol'}) {
714: ($high,$low)=&get_tolrange($element,$Apache::inputtags::params{'tol'});
715: }
716: if ($target eq 'answer') {
1.195 albertel 717: if ($fmt && $tag eq 'numericalresponse') {
718: $fmt=~s/e/E/g;
719: if ($unit=~/\$/) { $fmt="\$".$fmt; $unit=~s/\$//g; }
720: if ($unit=~/\,/) { $fmt="\,".$fmt; $unit=~s/\,//g; }
721: $element = &format_number($element,$fmt,$target,$safeeval);
722: #if ($high) {
723: # $high=&format_number($high,$fmt,$target,$safeeval);
724: # $low =&format_number($low,$fmt,$target,$safeeval);
725: #}
726: }
727: if ($high && $tag eq 'numericalresponse') {
1.224 www 728: $element.='; ['.$low.'; '.$high.']';
1.195 albertel 729: $tolline .= "[$low, $high]";
730: }
731: if (defined($sighigh) && $tag eq 'numericalresponse') {
732: if ($env{'form.answer_output_mode'} eq 'tex') {
1.224 www 733: $element.= "; Sig $siglow - $sighigh";
1.195 albertel 734: } else {
735: $element.= " Sig <i>$siglow - $sighigh</i>";
736: $sigline .= "[$siglow, $sighigh]";
737: }
1.194 albertel 738: }
1.195 albertel 739: push(@all_answer_info,$element);
1.200 albertel 740:
741: } elsif ($target eq 'analyze') {
742: push (@{ $Apache::lonhomework::analyze{"$part_id.answer"}{$name}[$i] }, $element);
743: if ($high) {
744: push (@{ $Apache::lonhomework::analyze{"$part_id.ans_high"}{$name}[$i] }, $high);
745: push (@{ $Apache::lonhomework::analyze{"$part_id.ans_low"}{$name}[$i] }, $low);
746: }
747: if ($fmt) {
748: push (@{ $Apache::lonhomework::analyze{"$part_id.format"}{$name}[$i] }, $fmt);
749: }
1.194 albertel 750: }
1.200 albertel 751: }
752: if ($target eq 'answer') {
1.223 www 753: $result.= &Apache::response::answer_part($tag,join('; ',@all_answer_info));
1.194 albertel 754: }
755: }
756:
757: my @fmt_ans;
758: for(my $i=0;$i<=$#answers;$i++) {
759: my $ans=$answers[$i];
760: my $fmt=$formats[0];
761: if (@formats && $#formats) {$fmt=$formats[$i];}
1.195 albertel 762: foreach my $element (@$ans) {
763: if ($fmt && $tag eq 'numericalresponse') {
764: $fmt=~s/e/E/g;
765: if ($unit=~/\$/) { $fmt="\$".$fmt; $unit=~s/\$//g; }
766: if ($unit=~/\,/) { $fmt="\,".$fmt; $unit=~s/\,//g; }
767: $element = &format_number($element,$fmt,$target,
768: $safeeval);
769: if ($fmt=~/\$/ && $unit!~/\$/) { $element=~s/\$//; }
770: }
1.194 albertel 771: }
1.195 albertel 772: push(@fmt_ans,join(',',@$ans));
1.194 albertel 773: }
1.195 albertel 774: my $response=\@fmt_ans;
775:
1.194 albertel 776: my $hideunit=&Apache::lonnet::EXT('resource.'.$partid.'_'.
777: $id.'.turnoffunit');
778: if ($unit ne '' &&
779: ! ($Apache::lonhomework::type eq 'exam' ||
780: lc($hideunit) eq "yes") ) {
781: my $cleanunit=$unit;
782: $cleanunit=~s/\$\,//g;
1.195 albertel 783: foreach my $ans (@fmt_ans) {
784: $ans.=" $cleanunit";
785: }
1.60 sakharuk 786: }
1.194 albertel 787: my ($ad,$msg)=&check_submission($response,$partid,$id,$tag,
788: $parstack,$safeeval);
789: if ($ad ne 'EXACT_ANS' && $ad ne 'APPROX_ANS') {
790: my $error;
791: if ($tag eq 'formularesponse') {
1.236 bisitz 792: $error=&mt("Computer's answer is incorrect ([_1]).",'"'.join(', ',@$response).'"');
1.194 albertel 793: } else {
794: # answer failed check if it is sig figs that is failing
795: my ($ad,$msg)=&check_submission($response,$partid,$id,
796: $tag,$parstack,
797: $safeeval,1);
1.236 bisitz 798: $error=&mt("Computer's answer is incorrect ([_1]).",'"'.join(', ',@$response).'"').' ';
1.194 albertel 799: if ($sigline ne '') {
1.236 bisitz 800: $error.=&mt('It is likely that the tolerance range [_1] or significant figures [_2] need to be adjusted.',$tolline,$sigline);
1.98 sakharuk 801: } else {
1.236 bisitz 802: $error.=&mt('It is likely that the tolerance range [_1] needs to be adjusted.',$tolline);
1.98 sakharuk 803: }
804: }
1.194 albertel 805: if ($ad ne 'EXACT_ANS' && $ad ne 'APPROX_ANS') {
806: &Apache::lonxml::error($error);
807: } else {
808: &Apache::lonxml::warning($error);
1.165 albertel 809: }
1.79 sakharuk 810: }
1.176 albertel 811:
1.194 albertel 812: if (defined($unit) and ($unit ne '') and
813: $tag eq 'numericalresponse') {
814: if ($target eq 'answer') {
815: if ($env{'form.answer_output_mode'} eq 'tex') {
816: $result.=&Apache::response::answer_part($tag,
817: " Unit: $unit ");
818: } else {
819: $result.=&Apache::response::answer_part($tag,
820: "Unit: <b>$unit</b>");
821: }
822: } elsif ($target eq 'analyze') {
823: push (@{ $Apache::lonhomework::analyze{"$part_id.unit"} }, $unit);
1.171 albertel 824: }
1.167 albertel 825: }
1.194 albertel 826: if ($tag eq 'formularesponse' && $target eq 'answer') {
827: my $samples=&Apache::lonxml::get_param('samples',$parstack,$safeeval);
828: $result.=&Apache::response::answer_part($tag,$samples);
1.89 albertel 829: }
1.195 albertel 830: $result.=&Apache::response::next_answer($tag,$name);
1.89 albertel 831: }
832: if ($target eq 'answer') {
1.125 albertel 833: $result.=&Apache::response::answer_footer($tag);
1.89 albertel 834: }
1.69 sakharuk 835: }
1.121 sakharuk 836: if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
1.90 albertel 837: $target eq 'tex' || $target eq 'analyze') {
1.221 raeburn 838: if (($tag eq 'formularesponse') && ($target eq 'analyze')) {
839: my $type = &Apache::lonnet::EXT('resource.'.$partid.'_'.$id.'.type');
840: if ($type eq 'exam') {
841: $increment = &Apache::response::repetition();
842: }
843: }
1.220 albertel 844: &Apache::lonxml::increment_counter($increment,"$partid.$id");
845: if ($target eq 'analyze') {
846: &Apache::lonhomework::set_bubble_lines();
847: }
1.90 albertel 848: }
1.196 albertel 849: &Apache::response::end_response();
1.89 albertel 850: return $result;
1.90 albertel 851: }
852:
1.212 albertel 853: sub format_prior_response_numerical {
854: my ($mode,$answer) = @_;
1.213 albertel 855: if (ref($answer)) {
856: my $result = '<table class="LC_prior_numerical"><tr>';
857: foreach my $element (@{ $answer }) {
858: $result.= '<td><span class="LC_prior_numerical">'.
859: &HTML::Entities::encode($element,'"<>&').'</span></td>';
860: }
861: $result.='</tr></table>';
862: return $result;
863: }
1.212 albertel 864: return '<span class="LC_prior_numerical">'.
865: &HTML::Entities::encode($answer,'"<>&').'</span>';
866:
1.209 albertel 867: }
868:
1.196 albertel 869: sub check_for_answer_errors {
870: my ($parstack,$safeeval) = @_;
871: &add_in_tag_answer($parstack,$safeeval);
872: my %counts;
873: foreach my $name (keys(%answer)) {
874: push(@{$counts{scalar(@{$answer{$name}{'answers'}})}},$name);
875: }
876: if (scalar(keys(%counts)) > 1) {
877: my $counts = join(' ',map {
878: my $count = $_;
879: &mt("Answers [_1] had [_2] components.",
880: '<tt>'.join(', ',@{$counts{$count}}).'</tt>',
881: $count);
882: } (sort(keys(%counts))));
883: &Apache::lonxml::error(&mt("All answers must have the same number of components. Varying numbers of answers were seen. ").$counts);
884: }
885: my $expected_number_of_inputs = (keys(%counts))[0];
1.214 albertel 886: if ( $expected_number_of_inputs > 0
887: && $expected_number_of_inputs != scalar(@Apache::inputtags::inputlist)) {
1.196 albertel 888: &Apache::lonxml::error(&mt("Expected [_1] input fields, but there were only [_2] seen.",
889: $expected_number_of_inputs,
890: scalar(@Apache::inputtags::inputlist)));
891: }
892: }
893:
1.90 albertel 894: sub get_table_sizes {
1.128 sakharuk 895: my ($number_of_bubbles,$rbubble_values)=@_;
896: my $scale=2; #mm for one digit
897: my $cell_width=0;
898: foreach my $member (@$rbubble_values) {
899: my $cell_width_real=0;
1.160 albertel 900: if ($member=~/(\+|-)?(\d*)\.?(\d*)\s*\$?\\times\s*10\^{(\+|-)?(\d+)}\$?/) {
1.138 sakharuk 901: $cell_width_real=(length($2)+length($3)+length($5)+7)*$scale;
902: } elsif ($member=~/(\d*)\.?(\d*)(E|e)(\+|-)?(\d*)/) {
1.128 sakharuk 903: $cell_width_real=(length($1)+length($2)+length($5)+9)*$scale;
1.138 sakharuk 904: } elsif ($member=~/(\d*)\.(\d*)/) {
1.132 sakharuk 905: $cell_width_real=(length($1)+length($2)+3)*$scale;
1.128 sakharuk 906: } else {
1.138 sakharuk 907: $cell_width_real=(length($member)+1)*$scale*0.9;
1.128 sakharuk 908: }
909: if ($cell_width_real>$cell_width) {$cell_width=$cell_width_real;}
1.90 albertel 910: }
1.132 sakharuk 911: $cell_width+=8;
1.130 sakharuk 912: my $textwidth;
1.166 albertel 913: if ($env{'form.textwidth'} ne '') {
914: $env{'form.textwidth'}=~/(\d*)\.?(\d*)/;
1.132 sakharuk 915: $textwidth=$1.'.'.$2;
1.130 sakharuk 916: } else {
1.166 albertel 917: $env{'form.textwidth'}=~/(\d+)\.?(\d*)/;
1.132 sakharuk 918: $textwidth=$1.'.'.$2;
1.130 sakharuk 919: }
1.128 sakharuk 920: my $bubbles_per_line=int($textwidth/$cell_width);
1.151 sakharuk 921: if ($bubbles_per_line > $number_of_bubbles) {
922: $bubbles_per_line=$number_of_bubbles;
1.216 albertel 923: } elsif (($bubbles_per_line > $number_of_bubbles/2)
924: && ($number_of_bubbles % 2==0)) {
925: $bubbles_per_line=$number_of_bubbles/2;
926: }
927: if ($bubbles_per_line < 1) {
928: $bubbles_per_line=1;
929: }
1.128 sakharuk 930: my $number_of_tables = int($number_of_bubbles/$bubbles_per_line);
1.90 albertel 931: my @table_range = ();
1.128 sakharuk 932: for (my $i=0;$i<$number_of_tables;$i++) {push @table_range,$bubbles_per_line;}
933: if ($number_of_bubbles % $bubbles_per_line) {
1.90 albertel 934: $number_of_tables++;
1.128 sakharuk 935: push @table_range,($number_of_bubbles % $bubbles_per_line);
1.90 albertel 936: }
1.128 sakharuk 937: $cell_width-=8;
1.136 sakharuk 938: $cell_width=$cell_width*3/4;
1.128 sakharuk 939: return ($cell_width,$number_of_tables,@table_range);
1.90 albertel 940: }
941:
942: sub format_number {
1.153 albertel 943: my ($number,$format,$target,$safeeval)=@_;
1.90 albertel 944: my $ans;
1.153 albertel 945: if ($format eq '') {
1.90 albertel 946: #What is the number? (integer,decimal,floating point)
1.187 albertel 947: if ($number=~/^(\d*\.?\d*)(E|e)[+\-]?(\d*)$/) {
1.113 sakharuk 948: $format = '3e';
1.90 albertel 949: } elsif ($number=~/^(\d*)\.(\d*)$/) {
950: $format = '4f';
951: } elsif ($number=~/^(\d*)$/) {
952: $format = 'd';
953: }
954: }
1.156 albertel 955: if (!$Apache::lonxml::default_homework_loaded) {
956: &Apache::lonxml::default_homework_load($safeeval);
957: }
1.153 albertel 958: $ans=&Apache::run::run("&prettyprint(q\0$number\0,q\0$format\0,q\0$target\0)",$safeeval);
1.90 albertel 959: return $ans;
960: }
961:
962: sub make_numerical_bubbles {
1.184 albertel 963: my ($part,$id,$target,$parstack,$safeeval) =@_;
1.215 albertel 964:
965: if (!%answer) {
966: &Apache::lonxml::error(&mt("No answers defined for response [_1] in part [_2] to make bubbles for.",$id,$part));
967: return ([],[],undef);
968: }
1.184 albertel 969:
970: my $number_of_bubbles =
971: &Apache::response::get_response_param($part.'_'.$id,'numbubbles',8);
972:
973: my ($format)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval);
1.201 albertel 974: my $name = (exists($answer{$tag_internal_answer_name})
975: ? $tag_internal_answer_name
976: : (sort(keys(%answer)))[0]);
977:
978: if ( scalar(@{$answer{$name}{'answers'}}) > 1) {
979: &Apache::lonxml::error("Only answers with 1 component are supported in exam mode");
980: }
981: if (scalar(@{$answer{$name}{'answers'}[0]}) > 1) {
982: &Apache::lonxml::error("Vector answers are unsupported in exam mode.");
983: }
984:
985: my $answer = $answer{$name}{'answers'}[0][0];
1.184 albertel 986: my (@incorrect)=&Apache::lonxml::get_param_var('incorrect',$parstack,
987: $safeeval);
988: if ($#incorrect eq 0) { @incorrect=(split(/,/,$incorrect[0])); }
989:
1.158 albertel 990: my @bubble_values=();
1.184 albertel 991: my @alphabet=('A'..'Z');
992:
993: &Apache::lonxml::debug("answer is $answer incorrect is @incorrect");
1.119 albertel 994: my @oldseed=&Math::Random::random_get_seed();
1.184 albertel 995: if (@incorrect) {
996: &Apache::lonxml::debug("inside ".(scalar(@incorrect)+1 gt $number_of_bubbles));
997: if (defined($incorrect[0]) &&
998: scalar(@incorrect)+1 >= $number_of_bubbles) {
999: &Apache::lonxml::debug("inside ".(scalar(@incorrect)+1).":$number_of_bubbles");
1.117 albertel 1000: &Apache::response::setrandomnumber();
1.184 albertel 1001: my @rand_inc=&Math::Random::random_permutation(@incorrect);
1.117 albertel 1002: @bubble_values=@rand_inc[0..($number_of_bubbles-2)];
1003: @bubble_values=sort {$a <=> $b} (@bubble_values,$answer);
1.184 albertel 1004: &Apache::lonxml::debug("Answer was :$answer: returning :".$#bubble_values.": which are :".join(':',@bubble_values));
1.119 albertel 1005: &Math::Random::random_set_seed(@oldseed);
1.184 albertel 1006:
1007: my $correct;
1008: for(my $i=0; $i<=$#bubble_values;$i++) {
1009: if ($bubble_values[$i] eq $answer) {
1010: $correct = $alphabet[$i];
1011: last;
1012: }
1013: }
1014:
1.134 albertel 1015: if (defined($format) && $format ne '') {
1.158 albertel 1016: my @bubble_display;
1.137 albertel 1017: foreach my $value (@bubble_values) {
1.158 albertel 1018: push(@bubble_display,
1019: &format_number($value,$format,$target,$safeeval));
1.134 albertel 1020: }
1.184 albertel 1021: return (\@bubble_values,\@bubble_display,$correct);
1.158 albertel 1022: } else {
1.184 albertel 1023: return (\@bubble_values,\@bubble_values,$correct);
1.134 albertel 1024: }
1.117 albertel 1025: }
1.184 albertel 1026: if (defined($incorrect[0]) &&
1027: scalar(@incorrect)+1 < $number_of_bubbles) {
1028: &Apache::lonxml::warning("Not enough incorrect answers were specified in the incorrect array, ignoring the specified incorrect answers and instead generating them (".join(',',@incorrect).").");
1.127 albertel 1029: }
1.117 albertel 1030: }
1.90 albertel 1031: my @factors = (1.13,1.17,1.25,1.33,1.45); #default values of factors
1.126 albertel 1032: my @powers = (1..$number_of_bubbles);
1.90 albertel 1033: &Apache::response::setrandomnumber();
1034: my $ind=&Math::Random::random_uniform_integer(1,0,$#powers);
1035: my $power = $powers[$ind];
1036: $ind=&Math::Random::random_uniform_integer(1,0,$#factors);
1037: my $factor = $factors[$ind];
1.158 albertel 1038: my @bubble_display;
1.222 www 1039: my $answerfactor=$answer;
1040: if ($answer==0) {
1041: $answerfactor=&Math::Random::random_uniform_integer(1,1,100)/
1042: &Math::Random::random_uniform_integer(1,1,10);
1043: }
1.90 albertel 1044: for ($ind=0;$ind<$number_of_bubbles;$ind++) {
1.222 www 1045: $bubble_values[$ind] = $answerfactor*($factor**($power-$powers[$#powers-$ind]));
1.158 albertel 1046: $bubble_display[$ind] = &format_number($bubble_values[$ind],
1.153 albertel 1047: $format,$target,$safeeval);
1.90 albertel 1048: }
1.184 albertel 1049: my $correct = $alphabet[$number_of_bubbles-$power];
1.222 www 1050: if ($answer==0) {
1051: $correct='A';
1052: $bubble_values[0]=0;
1053: $bubble_display[0] = &format_number($bubble_values[0],
1054: $format,$target,$safeeval);
1055: }
1.119 albertel 1056: &Math::Random::random_set_seed(@oldseed);
1.184 albertel 1057: return (\@bubble_values,\@bubble_display,$correct);
1.51 albertel 1058: }
1059:
1.251 ! foxr 1060: ##
! 1061: # Produce LaTeX bubbles laid out horizontally given a set of bubble values:
! 1062: #
! 1063: # @param bubble_values - reference to an array of bubble 'values'
! 1064: # @param bubble_display - reference to the array of texts to display to the user
! 1065: # for each bubble_value (this is mostly for numerical response
! 1066: # when the displayed value may not be an exact
! 1067: # representation of the bubble value.
! 1068: # @param bubble_fragment- The LaTeX fragment that will be plugged in to make
! 1069: # the bubble itself. Note that the code will autonomously
! 1070: # label each bubble with a lable...and that it's perfectly
! 1071: # acceptable to use "" for the bubble_fragment.
! 1072: #
! 1073: # @return string - the LaTeX fragment that produces the bubbles.
! 1074: #
! 1075: sub make_horizontal_latex_bubbles {
! 1076: my ($bubble_values, $bubble_display, $bubble_fragment) = @_;
! 1077: my $result;
! 1078:
! 1079: my $number_of_bubbles = scalar(@{$bubble_values});
! 1080:
! 1081: # Get the number of rows and columns in each row of the bubble
! 1082: # table:
! 1083:
! 1084: my ($celllength, $number_of_tables, @table_range) =
! 1085: &get_table_sizes($number_of_bubbles, $bubble_display);
! 1086:
! 1087: my $j=0;
! 1088: my $cou=0;
! 1089: $result.='\vskip 2mm \noindent ';
! 1090: $result .= '\textbf{'.$Apache::lonxml::counter.'.} \vskip -3mm ';
! 1091:
! 1092: for (my $i=0;$i<$number_of_tables;$i++) {
! 1093: if ($i == 0) {
! 1094: $result .= '\vskip -1mm ';
! 1095: } else {
! 1096: $result .= '\vskip 1mm ';
! 1097: }
! 1098: $result.='\noindent \setlength{\tabcolsep}{2 mm}\hskip 2pc\begin{tabular}{';
! 1099: for (my $ind=0;$ind<$table_range[$j];$ind++) {
! 1100: $result.='p{4 mm}p{'.$celllength.' mm}';
! 1101: }
! 1102: $result.='}';
! 1103: for (my $ind=$cou;$ind<$cou+$table_range[$j];$ind++) {
! 1104: $result.='\hskip -4 mm {\small \textbf{ '.$alphabet[$ind].'}}'
! 1105: . $bubble_fragment
! 1106: . '& \hskip -3 mm {\small '.$bubble_display->[$ind].'} ';
! 1107: if ($ind != $cou+$table_range[$j]-1) {
! 1108: $result.=' & ';
! 1109: }
! 1110: }
! 1111: $cou += $table_range[$j];
! 1112: $j++;
! 1113: $result.='\\\\\end{tabular}\vskip 0 mm ';
! 1114: }
! 1115: return $result;
! 1116: }
! 1117:
1.51 albertel 1118: sub get_tolrange {
1.89 albertel 1119: my ($ans,$tol)=@_;
1120: my ($high,$low);
1121: if ($tol =~ /%$/) {
1122: chop($tol);
1123: my $change=$ans*($tol/100.0);
1124: $high=$ans+$change;
1125: $low=$ans-$change;
1126: } else {
1127: $high=$ans+$tol;
1128: $low=$ans-$tol;
1129: }
1130: return ($high,$low);
1.52 albertel 1131: }
1132:
1133: sub get_sigrange {
1.89 albertel 1134: my ($sig)=@_;
1.195 albertel 1135: #&Apache::lonxml::debug("Got a sig of :$sig:");
1.166 albertel 1136: my $courseid=$env{'request.course.id'};
1.219 albertel 1137: if ($env{'request.state'} ne 'construct'
1138: && lc($env{"course.$courseid.disablesigfigs"}) eq 'yes') {
1.147 albertel 1139: return (15,0);
1140: }
1.89 albertel 1141: my $sig_lbound;
1142: my $sig_ubound;
1143: if ($sig eq '') {
1144: $sig_lbound = 0; #SIG_LB_DEFAULT
1145: $sig_ubound =15; #SIG_UB_DEFAULT
1146: } else {
1147: ($sig_lbound,$sig_ubound) = split(/,/,$sig);
1.145 albertel 1148: if (!defined($sig_lbound)) {
1.89 albertel 1149: $sig_lbound = 0; #SIG_LB_DEFAULT
1150: $sig_ubound =15; #SIG_UB_DEFAULT
1151: }
1.145 albertel 1152: if (!defined($sig_ubound)) { $sig_ubound=$sig_lbound; }
1.133 albertel 1153: }
1154: if (($sig_ubound<$sig_lbound) ||
1155: ($sig_lbound > 15) ||
1156: ($sig =~/(\+|-)/ ) ) {
1157: my $errormsg=&mt("Invalid Significant figures detected")." ($sig)";
1.166 albertel 1158: if ($env{'request.state'} eq 'construct') {
1.133 albertel 1159: $errormsg.=
1160: &Apache::loncommon::help_open_topic('Significant_Figures');
1161: }
1162: &Apache::lonxml::error($errormsg);
1.52 albertel 1163: }
1.89 albertel 1164: return ($sig_ubound,$sig_lbound);
1.34 albertel 1165: }
1166:
1.212 albertel 1167: sub format_prior_response_string {
1168: my ($mode,$answer) =@_;
1169: return '<span class="LC_prior_string">'.
1170: &HTML::Entities::encode($answer,'"<>&').'</span>';
1.211 albertel 1171: }
1172:
1.34 albertel 1173: sub start_stringresponse {
1.89 albertel 1174: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1175: my $result;
1.122 albertel 1176: my $id = &Apache::response::start_response($parstack,$safeeval);
1.246 raeburn 1177: undef(%answer);
1.89 albertel 1178: if ($target eq 'meta') {
1179: $result=&Apache::response::meta_package_write('stringresponse');
1.122 albertel 1180: } elsif ($target eq 'edit') {
1181: $result.=&Apache::edit::tag_start($target,$token);
1182: $result.=&Apache::edit::text_arg('Answer:','answer',$token);
1183: $result.=&Apache::edit::select_arg('Type:','type',
1184: [['cs','Case Sensitive'],['ci','Case Insensitive'],
1185: ['mc','Case Insensitive, Any Order'],
1186: ['re','Regular Expression']],$token);
1.152 albertel 1187: $result.=&Apache::edit::text_arg('String to display for answer:',
1188: 'answerdisplay',$token);
1.248 www 1189: $result.=&Apache::edit::text_arg('Pre-Processor Subroutine:','preprocess',
1190: $token,10);
1.122 albertel 1191: $result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
1192: } elsif ($target eq 'modified') {
1.146 albertel 1193: my $constructtag;
1194: $constructtag=&Apache::edit::get_new_args($token,$parstack,
1195: $safeeval,'answer',
1.248 www 1196: 'type','answerdisplay','preprocess');
1.146 albertel 1197: if ($constructtag) {
1198: $result = &Apache::edit::rebuild_tag($token);
1199: $result.=&Apache::edit::handle_insert();
1200: }
1201: } elsif ($target eq 'web') {
1202: if ( &Apache::response::show_answer() ) {
1.152 albertel 1203: my $answer=
1204: &Apache::lonxml::get_param('answerdisplay',$parstack,$safeeval);
1205: if (!defined $answer || $answer eq '') {
1206: $answer=
1207: &Apache::lonxml::get_param('answer',$parstack,$safeeval);
1208: }
1.195 albertel 1209: $Apache::inputtags::answertxt{$id}=[$answer];
1.146 albertel 1210: }
1.122 albertel 1211: } elsif ($target eq 'answer' || $target eq 'grade') {
1212: &Apache::response::reset_params();
1.89 albertel 1213: }
1214: return $result;
1.34 albertel 1215: }
1216:
1217: sub end_stringresponse {
1.122 albertel 1218: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.189 albertel 1219:
1.122 albertel 1220: my $result = '';
1221: my $part=$Apache::inputtags::part;
1222: my $id=$Apache::inputtags::response[-1];
1223: my $answer=&Apache::lonxml::get_param('answer',$parstack,$safeeval);
1224: my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval);
1.129 www 1225: my $answerdisplay=&Apache::lonxml::get_param('answerdisplay',$parstack,$safeeval);
1.122 albertel 1226: &Apache::lonxml::debug("current $answer ".$token->[2]);
1227: if (!$Apache::lonxml::default_homework_loaded) {
1228: &Apache::lonxml::default_homework_load($safeeval);
1229: }
1.162 albertel 1230: if ( $target eq 'grade' && &Apache::response::submitted() ) {
1.140 albertel 1231: &Apache::response::setup_params('stringresponse',$safeeval);
1.122 albertel 1232: $safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
1233: if ($Apache::lonhomework::type eq 'exam' ||
1.162 albertel 1234: &Apache::response::submitted('scantron')) {
1.189 albertel 1235: &Apache::response::scored_response($part,$id);
1236:
1.122 albertel 1237: } else {
1238: my $response = &Apache::response::getresponse();
1239: if ( $response =~ /[^\s]/) {
1240: my %previous = &Apache::response::check_for_previous($response,
1.241 raeburn 1241: $part,$id,
1242: undef,$type);
1.122 albertel 1243: &Apache::lonxml::debug("submitted a $response<br>\n");
1244: &Apache::lonxml::debug($$parstack[-1] . "\n<br>");
1245: $Apache::lonhomework::results{"resource.$part.$id.submission"}=
1246: $response;
1.142 albertel 1247: my ($ad,$msg);
1.122 albertel 1248: if ($type eq 're' ) {
1249: # if the RE wasn't in a var it likely got munged,
1250: # thus grab it from the var directly
1251: # my $testans=$token->[2]->{'answer'};
1252: # if ($testans !~ m/^\s*\$/) {
1253: # $answer=$token->[2]->{'answer'};
1254: # }
1.143 albertel 1255: ${$safeeval->varglob('LONCAPA::response')}=$response;
1.248 www 1256: my $preprocess=&Apache::lonxml::get_param('preprocess',$parstack,$safeeval);
1257: $preprocess=~s/^\&//;
1258: if (defined($preprocess)) {
1259: &Apache::run::run('$LONCAPA::response=&'.$preprocess.'($LONCAPA::response);',$safeeval);
1260: }
1.179 albertel 1261: $result = &Apache::run::run('if ($LONCAPA::response=~m'.$answer.') { return 1; } else { return 0; }',$safeeval);
1.122 albertel 1262: &Apache::lonxml::debug("current $response");
1263: &Apache::lonxml::debug("current $answer");
1264: $ad = ($result) ? 'APPROX_ANS' : 'INCORRECT';
1265: } else {
1.248 www 1266: my @args = ('type','preprocess');
1.195 albertel 1267: my $args_ref = &setup_capa_args($safeeval,$parstack,
1268: \@args,$response);
1.233 raeburn 1269: if ($$args_ref{'type'} eq '') {
1270: $$args_ref{'type'} = 'ci';
1271: }
1.195 albertel 1272: &add_in_tag_answer($parstack,$safeeval);
1.243 raeburn 1273: my (@final_awards,@final_msgs,@names,%ansstring);
1.195 albertel 1274: foreach my $name (keys(%answer)) {
1275: &Apache::lonxml::debug(" doing $name with ".join(':',@{ $answer{$name}{'answers'} }));
1276: ${$safeeval->varglob('LONCAPA::CAPAresponse_answer')}=dclone($answer{$name});
1.233 raeburn 1277: my ($result, @msgs)=&Apache::run::run("&caparesponse_check_list()",$safeeval);
1.241 raeburn 1278: if ($$args_ref{'type'} =~ /^c[si]$/) {
1.243 raeburn 1279: $ansstring{$name} = pop(@msgs);
1.242 raeburn 1280: my $control_chars_removed = pop(@msgs);
1.241 raeburn 1281: my $error = pop(@msgs);
1.242 raeburn 1282: if (($error ne '') ||
1.245 raeburn 1283: ($control_chars_removed)) {
1.243 raeburn 1284: my ($symb,$courseid,$sdomain,$sname) =
1.241 raeburn 1285: &Apache::lonnet::whichuser();
1.245 raeburn 1286: if ($control_chars_removed) {
1.242 raeburn 1287: my $showresponse = $response;
1288: if ($response =~ /[\000-\037]/) {
1289: $response =~ s/[\000-\037]//g;
1290: }
1291: if ($showresponse =~ /[\r\n\f]/) {
1292: my @lines = split(/[\r\n\f]+/,$showresponse);
1293: $showresponse = join('\\n',@lines);
1294: }
1.243 raeburn 1295: &Apache::lonnet::logthis("Stringresponse grading: control characters stripped from submission ".$showresponse." for $sname:$sdomain in $courseid for part: $part response: $id and symb: $symb");
1.242 raeburn 1296: $Apache::lonhomework::results{"resource.$part.$id.submission"} = $response;
1297: }
1298: if ($error ne '') {
1.243 raeburn 1299: &Apache::lonnet::logthis("Stringresponse grading error: $error for $sname:$sdomain in $courseid for part: $part response: $id and symb: $symb");
1.242 raeburn 1300: }
1.241 raeburn 1301: }
1302: }
1.195 albertel 1303: &Apache::lonxml::debug('msgs are'.join(':',@msgs));
1304: my ($awards)=split(/:/,$result);
1305: my (@awards) = split(/,/,$awards);
1306: ($ad,$msg) =
1307: &Apache::inputtags::finalizeawards(\@awards,\@msgs);
1308: push(@final_awards,$ad);
1309: push(@final_msgs,$msg);
1310: push(@names,$name);
1311: &Apache::lonxml::debug("\n<br>result:$result:$Apache::lonxml::curdepth<br>\n");
1.122 albertel 1312: }
1.240 raeburn 1313: ($ad, $msg, my $name) =
1.195 albertel 1314: &Apache::inputtags::finalizeawards(\@final_awards,
1315: \@final_msgs,
1316: \@names,1);
1.243 raeburn 1317: if (keys(%ansstring) > 0) {
1318: $Apache::lonhomework::results{"resource.$part.$id.answerstring"} = &Apache::lonnet::hash2str(%ansstring);
1319: }
1.122 albertel 1320: }
1.237 raeburn 1321: if (($ad eq 'INCORRECT' || $ad eq 'APPROX_ANS' ||
1322: $ad eq 'EXACT_ANS')) {
1323: if ($Apache::lonhomework::type eq 'survey') {
1324: $ad='SUBMITTED';
1325: } elsif ($Apache::lonhomework::type eq 'surveycred') {
1326: $ad='SUBMITTED_CREDIT';
1327: } elsif ($Apache::lonhomework::type eq 'anonsurvey') {
1328: $ad='ANONYMOUS';
1329: } elsif ($Apache::lonhomework::type eq 'anonsurveycred') {
1330: $ad='ANONYMOUS_CREDIT';
1331: }
1332: }
1.244 raeburn 1333: unless (($env{'request.state'} eq 'construct') ||
1334: ($Apache::lonhomework::type eq 'randomizetry')) {
1335: if (($ad eq 'INCORRECT' || $ad eq 'APPROX_ANS' || $ad eq 'EXACT_ANS')) {
1336: if ($previous{'used'}) {
1337: if ($ad ne $previous{'award'}) {
1338: if (($previous{'award'} eq 'INCORRECT' ||
1339: $previous{'award'} eq 'APPROX_ANS' ||
1340: $previous{'award'} eq 'EXACT_ANS')) {
1341: &stringresponse_gradechange($part,$id,\%previous,
1342: 'cs',$response,$ad,$type);
1343: }
1344: }
1345: } elsif ($previous{'usedci'}) {
1346: if ($ad ne $previous{'awardci'}) {
1347: if (($previous{'awardci'} eq 'INCORRECT' ||
1348: $previous{'awardci'} eq 'APPROX_ANS' ||
1349: $previous{'awardci'} eq 'EXACT_ANS')) {
1350: &stringresponse_gradechange($part,$id,\%previous,
1351: 'ci',$response,$ad,$type);
1352: }
1353: }
1.241 raeburn 1354: }
1355: }
1356: }
1.122 albertel 1357: &Apache::response::handle_previous(\%previous,$ad);
1358: $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$ad;
1.142 albertel 1359: $Apache::lonhomework::results{"resource.$part.$id.awardmsg"}=$msg;
1.122 albertel 1360: }
1361: }
1362: } elsif ($target eq 'answer' || $target eq 'analyze') {
1.200 albertel 1363: &add_in_tag_answer($parstack,$safeeval);
1.122 albertel 1364: if ($target eq 'analyze') {
1365: push (@{ $Apache::lonhomework::analyze{"parts"} },"$part.$id");
1.125 albertel 1366: $Apache::lonhomework::analyze{"$part.$id.type"} = 'stringresponse';
1.154 albertel 1367: &Apache::response::check_if_computed($token,$parstack,$safeeval,
1368: 'answer');
1.122 albertel 1369: }
1.140 albertel 1370: &Apache::response::setup_params('stringresponse',$safeeval);
1.122 albertel 1371: if ($target eq 'answer') {
1.125 albertel 1372: $result.=&Apache::response::answer_header('stringresponse');
1.122 albertel 1373: }
1.200 albertel 1374: foreach my $name (keys(%answer)) {
1375: my @answers = @{ $answer{$name}{'answers'} };
1376: for (my $i=0;$i<=$#answers;$i++) {
1377: my $answer_part = $answers[$i];
1378: foreach my $element (@{$answer_part}) {
1379: if ($target eq 'answer') {
1380: $result.=&Apache::response::answer_part('stringresponse',
1381: $element);
1.243 raeburn 1382: if ($env{'form.grade_retrieveanswers'}) {
1383: $env{'form.grade_answers.resource.'.$part.'.'.$id} = $element;
1384: }
1.200 albertel 1385: } elsif ($target eq 'analyze') {
1386: push (@{ $Apache::lonhomework::analyze{"$part.$id.answer"}{$name}[$i] },
1387: $element);
1388: }
1389: }
1390: if ($target eq 'answer' && $type eq 're') {
1.178 albertel 1391: $result.=&Apache::response::answer_part('stringresponse',
1392: $answerdisplay);
1393: }
1.122 albertel 1394: }
1.200 albertel 1395: }
1.122 albertel 1396: my $string='Case Insensitive';
1397: if ($type eq 'mc') {
1398: $string='Multiple Choice';
1399: } elsif ($type eq 'cs') {
1400: $string='Case Sensitive';
1401: } elsif ($type eq 'ci') {
1402: $string='Case Insensitive';
1403: } elsif ($type eq 're') {
1404: $string='Regular Expression';
1405: }
1406: if ($target eq 'answer') {
1.166 albertel 1407: if ($env{'form.answer_output_mode'} eq 'tex') {
1.125 albertel 1408: $result.=&Apache::response::answer_part('stringresponse',
1.122 albertel 1409: "$string");
1410: } else {
1.125 albertel 1411: $result.=&Apache::response::answer_part('stringresponse',
1.122 albertel 1412: "<b>$string</b>");
1413: }
1414: } elsif ($target eq 'analyze') {
1415: push (@{$Apache::lonhomework::analyze{"$part.$id.str_type"}},
1416: $type);
1417: }
1418: if ($target eq 'answer') {
1.125 albertel 1419: $result.=&Apache::response::answer_footer('stringresponse');
1.122 albertel 1420: }
1421: } elsif ($target eq 'edit') {
1422: $result.='</td></tr>'.&Apache::edit::end_table;
1.211 albertel 1423: } elsif ($target eq 'web' || $target eq 'tex') {
1.212 albertel 1424: &Apache::response::setup_prior_tries_hash(\&format_prior_response_string);
1.122 albertel 1425: }
1426: if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
1427: $target eq 'tex' || $target eq 'analyze') {
1.249 raeburn 1428: my $repetition = &Apache::response::repetition();
1429: &Apache::lonxml::increment_counter($repetition,"$part.$id");
1.220 albertel 1430: if ($target eq 'analyze') {
1431: &Apache::lonhomework::set_bubble_lines();
1432: }
1.122 albertel 1433: }
1434: &Apache::response::end_response;
1435: return $result;
1.44 albertel 1436: }
1437:
1438: sub start_formularesponse {
1.89 albertel 1439: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1440: my $result;
1441: if ($target eq 'meta') {
1.104 bowersj2 1442: &Apache::response::start_response($parstack,$safeeval);
1.89 albertel 1443: $result=&Apache::response::meta_package_write('formularesponse');
1.104 bowersj2 1444: &Apache::response::end_response();
1.89 albertel 1445: } else {
1446: $result.=&start_numericalresponse(@_);
1447: }
1448: return $result;
1.44 albertel 1449: }
1450:
1451: sub end_formularesponse {
1.89 albertel 1452: return end_numericalresponse(@_);
1.3 albertel 1453: }
1454:
1.1 albertel 1455: 1;
1.3 albertel 1456: __END__
1.89 albertel 1457:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>