Annotation of loncom/homework/caparesponse/caparesponse.pm, revision 1.83
1.3 albertel 1: # The LearningOnline Network with CAPA
2: # caparesponse definition
1.47 albertel 3: #
1.83 ! sakharuk 4: # $Id: caparesponse.pm,v 1.82 2003/03/13 16:20:47 sakharuk Exp $
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.3 albertel 32:
1.50 harris41 33: BEGIN {
1.44 albertel 34: &Apache::lonxml::register('Apache::caparesponse',('caparesponse','numericalresponse','stringresponse','formularesponse'));
1.3 albertel 35: }
36:
37: sub start_caparesponse {
1.31 albertel 38: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.19 albertel 39: my $id = &Apache::response::start_response($parstack,$safeeval);
1.13 albertel 40: return '';
1.3 albertel 41: }
42:
43: sub end_caparesponse {
1.31 albertel 44: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.12 albertel 45: my $result = '';
1.16 albertel 46: if ( $target eq 'grade' ) {
1.27 albertel 47: if ( defined $ENV{'form.submitted'}) {
1.16 albertel 48: $safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
1.19 albertel 49: my $response = $ENV{'form.HWVAL'.$Apache::inputtags::response['-1']};
1.18 albertel 50: if ( $response =~ /[^\s]/) {
1.23 albertel 51: my $id = $Apache::inputtags::response['-1'];
52: my $previous= &Apache::response::check_for_previous($response,$id,$response);
1.22 albertel 53: if ( $previous ) {
54: $result = 'PREVIOUSLY_USED';
55: } else {
1.26 albertel 56: $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.submission"}=$response;
1.22 albertel 57: &Apache::lonxml::debug("submitted a $response<br>\n");
58: &Apache::lonxml::debug($$parstack[$#$parstack] . "\n<br>");
59: my $expression="&caparesponse_check('".$response."','".
60: $$parstack[$#$parstack].
61: ';my $tol="'.$Apache::inputtags::params{'tol'}.'"'.
62: ';my $sig="'.$Apache::inputtags::params{'sig'}.'"'.
63: "');";
64: $result = &Apache::run::run($expression,$safeeval);
65: my ($ad) = split /:/ , $result;
1.26 albertel 66: $Apache::lonhomework::results{"resource.$Apache::inputtags::part.$id.awarddetail"}=$ad;
1.22 albertel 67: &Apache::lonxml::debug("$expression");
68: &Apache::lonxml::debug("\n<br>result:$result:$Apache::lonxml::curdepth<br>\n");
69: }
1.18 albertel 70: }
1.16 albertel 71: }
1.30 albertel 72: } elsif ($target eq 'web') {
1.17 albertel 73: #$result .= "The correct answer is ".&Apache::run::run("{$$parstack['-1'];".'return $answer}',$safeeval)."\n";
1.7 albertel 74: }
75: #Apache::lonxml::debug("\n<br>\nreal end caparesponse<br>\n");
1.19 albertel 76: &Apache::response::end_response;
1.24 albertel 77: return '';
1.21 albertel 78: }
79:
80: sub start_numericalresponse {
1.31 albertel 81: my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
1.22 albertel 82: my $id = &Apache::response::start_response($parstack,$safeeval);
1.32 albertel 83: my $result;
84: if ($target eq 'edit') {
1.49 matthew 85: $result.=&Apache::edit::tag_start($target,$token);
1.34 albertel 86: $result.=&Apache::edit::text_arg('Answer:','answer',$token);
87: if ($token->[1] eq 'numericalresponse') {
1.77 www 88: $result.=&Apache::edit::text_arg('Unit:','unit',$token,5).
89: &Apache::loncommon::help_open_topic('Physical_Units');
90: $result.=&Apache::edit::text_arg('Format:','format',$token,4).
91: &Apache::loncommon::help_open_topic('Numerical_Response_Format');
1.44 albertel 92: } elsif ($token->[1] eq 'stringresponse') {
1.35 albertel 93: $result.=&Apache::edit::select_arg('Type:','type',
1.70 albertel 94: [['cs','Case Sensitive'],['ci','Case Insensitive'],
95: ['mc','Case Insensitive, Any Order']],$token);
1.44 albertel 96: } elsif ($token->[1] eq 'formularesponse') {
1.78 www 97: $result.=&Apache::edit::text_arg('Sample Points:','samples',$token,40).
98: &Apache::loncommon::help_open_topic('Formula_Response_Sampling');
1.34 albertel 99: }
1.49 matthew 100: $result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
1.32 albertel 101: } elsif ($target eq 'modified') {
1.34 albertel 102: my $constructtag;
103: if ($token->[1] eq 'numericalresponse') {
104: $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
1.36 albertel 105: 'answer','unit','format');
1.44 albertel 106: } elsif ($token->[1] eq 'stringresponse') {
1.34 albertel 107: $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
108: 'answer','type');
1.44 albertel 109: } elsif ($token->[1] eq 'formularesponse') {
110: $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
1.45 albertel 111: 'answer','samples');
1.34 albertel 112: }
1.33 albertel 113: if ($constructtag) {
114: $result = &Apache::edit::rebuild_tag($token);
115: $result.=&Apache::edit::handle_insert();
116: }
1.39 albertel 117: } elsif ($target eq 'meta') {
1.40 albertel 118: $result=&Apache::response::meta_package_write('numericalresponse');
1.73 albertel 119: } elsif ($target eq 'answer' || $target eq 'grade') {
120: &Apache::response::reset_params();
1.32 albertel 121: }
122: return $result;
1.21 albertel 123: }
124:
125: sub end_numericalresponse {
1.31 albertel 126: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.22 albertel 127: my $result = '';
1.74 albertel 128: if (!$Apache::lonxml::default_homework_loaded) {
129: &Apache::lonxml::default_homework_load($safeeval);
130: }
1.22 albertel 131: if ( $target eq 'grade' ) {
1.27 albertel 132: if ( defined $ENV{'form.submitted'}) {
1.45 albertel 133: &Apache::response::setup_params($$tagstack[-1]);
1.22 albertel 134: $safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
1.38 albertel 135: my $partid = $Apache::inputtags::part;
136: my $id = $Apache::inputtags::response['-1'];
137: my $response = $ENV{'form.HWVAL'.$id};
1.22 albertel 138: if ( $response =~ /[^\s]/) {
1.38 albertel 139: my %previous = &Apache::response::check_for_previous($response,$partid,$id);
140: $Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response;
141: &Apache::lonxml::debug("submitted a $response<br>\n");
142: &Apache::lonxml::debug($$parstack[$#$parstack] . "\n<br>");
143: $response =~ s/\\/\\\\/g;
144: $response =~ s/\'/\\\'/g;
145: &Apache::lonxml::debug("current $response");
146: my $expression="&caparesponse_check_list('".$response."','".
1.80 albertel 147: $$parstack[-1];
1.41 albertel 148: foreach my $key (keys(%Apache::inputtags::params)) {
149: $expression.= ';my $'. #'
150: $key.'="'.$Apache::inputtags::params{$key}.'"';
151: }
1.45 albertel 152: if ($$tagstack[-1] eq 'formularesponse') {
1.46 albertel 153: $expression.=';my $type="fml";';
154: } elsif ($$tagstack[-1] eq 'numericalresponse') {
155: $expression.=';my $type="float";';
1.45 albertel 156: }
1.41 albertel 157: $expression.="');";
1.38 albertel 158: $result = &Apache::run::run($expression,$safeeval);
159: my ($awards) = split /:/ , $result;
160: my ($ad) = &Apache::inputtags::finalizeawards(split /,/ , $awards);
1.48 albertel 161: &Apache::response::handle_previous(\%previous,$ad);
1.38 albertel 162: $Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}=$ad;
163: &Apache::lonxml::debug("$expression");
164: &Apache::lonxml::debug("\n<br>result:$result:$Apache::lonxml::curdepth<br>\n");
165: $result='';
1.22 albertel 166: }
1.24 albertel 167: }
1.53 sakharuk 168: } elsif ($target eq 'web' || $target eq 'tex') {
1.58 sakharuk 169: my $award = $Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"};
170: my $status = $Apache::inputtags::status['-1'];
171: if ($award =~ /^correct/ || $status eq "SHOW_ANSWER" ) {
172: my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,
173: $safeeval);
174: my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,
175: $safeeval);
176: my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval);
177:
178: if ($target eq 'web') {
1.64 albertel 179: $result="<br />The correct answer is ";
1.58 sakharuk 180: } elsif ($target eq 'tex') {
1.75 albertel 181: #$result='\vskip 0 mm The correct answer is \\texttt{';
1.58 sakharuk 182: }
183: for (my $i=0; $i <= $#answers; $i++) {
184: my $answer=$answers[$i];
185: my $format;
186: if ($#formats > 0) {
187: $format=$formats[$i];
188: } else {
189: $format=$formats[0];
190: }
191: my $formatted;
192: if ((defined($format)) && ($format ne '')) {
193: &Apache::lonxml::debug("formatting with :$format: answer :$answer:");
194: $formatted=sprintf('%.'.$format,$answer).',';
195: } else {
196: &Apache::lonxml::debug("no format answer :$answer:");
197: $formatted="$answer,";
198: }
1.76 sakharuk 199:
1.75 albertel 200: if ($target eq 'tex') {
201: $formatted='';
202: #$formatted=&Apache::lonxml::latex_special_symbols($formatted);
203: }
204: $result.=$formatted;
205: }
1.58 sakharuk 206: chop $result;
207: if ($target eq 'web') {
208: $result.=" $unit.<br />";
209: } elsif ($target eq 'tex') {
1.75 albertel 210: #$result.=&Apache::lonxml::latex_special_symbols($unit);
211: #$result.="}. \\vskip 0 mm ";
1.58 sakharuk 212: }
213: }
1.69 sakharuk 214: if ($Apache::lonhomework::type eq 'exam') {
1.58 sakharuk 215: my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval);
216: my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval);
217: my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval);
218: my $number_of_bubbles = 8; #default values for number of bubbles
219: my @bubbles_values = ();
220: my @factors = (1.13,1.17,1.25,1.33,1.45); #default values of factors
221: my @powers = (1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0); #default values for powers
222: my $factors_number = 5; #default values for number of factors
223: my $powers_number = 8; #default values for number of powers
224: my $symb;
225: if ($ENV{'form.symb'}=~/___\d+___/) {$symb=$ENV{'form.symb'};} else {$symb=$ENV{'request.symb'};}
1.80 albertel 226:
227: &Apache::response::setrandomnumber();
228: my $ind=&Math::Random::random_uniform_integer(1,0,$#powers);
229: my $power = $powers[$ind];
230: $ind=&Math::Random::random_uniform_integer(1,0,$#factors);
1.58 sakharuk 231: my $factor = $factors[$ind];
232: for ($ind=0;$ind<$number_of_bubbles;$ind++) {
1.80 albertel 233: $bubbles_values[$ind] = $answers[0]*($factor**($power-$powers[$#powers-$ind]));
234: }
1.60 sakharuk 235: my @alphabet = ('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P',
236: 'Q','R','S','T','U','V','W','X','Y','Z');
1.58 sakharuk 237: if ($target eq 'web') {
1.76 sakharuk 238: if ($$tagstack[-1] eq 'numericalresponse') {
1.71 sakharuk 239: my $id=$Apache::inputtags::response[-1];
1.58 sakharuk 240: $result.= '<table border="1"><tr>';
241: for ($ind=0;$ind<$number_of_bubbles;$ind++) {
1.62 sakharuk 242: my $ans;
1.61 sakharuk 243: if ($formats[0] ne '') {
1.62 sakharuk 244: $ans = sprintf('%.'.$formats[0],$bubbles_values[$ind]);
1.60 sakharuk 245: } else {
1.62 sakharuk 246: my $badans = $bubbles_values[$ind];
247: my $format = '';
248: #What is the number? (integer,decimal,floating point)
249: if ($badans=~/^(\d*\.?\d*)(E|e)(\d*)$/) {
250: $format = 'e'.$2;
251: } elsif ($badans=~/^(\d*)\.(\d*)$/) {
252: $format = '4f';
253: } elsif ($badans=~/^(\d*)$/) {
254: $format = 'd';
255: }
256: $ans = sprintf('%.'.$format,$bubbles_values[$ind]);
257: }
1.71 sakharuk 258: $result.='<td><input type="radio" name="HWVAL'.$id.'" value="'.$ans.'"><b>'.$alphabet[$ind].'</b>: '.$ans.'</td>';
1.60 sakharuk 259: }
1.58 sakharuk 260: $result.='</tr></table>';
1.76 sakharuk 261: } elsif ($$tagstack[-1] eq 'formularesponse') {
262: $result.= '<br /><br /><font color="red"> Formula have to be entered here! </font><br /><br />';
263: }
1.58 sakharuk 264: } elsif ($target eq 'tex') {
1.83 ! sakharuk 265: if (defined $unit and $Apache::lonhomework::type eq 'exam') {
! 266: $result.=' \textit{(in} \verb|'.$unit.'|\textit{)} ';
! 267: }
1.76 sakharuk 268: if ($$tagstack[-1] eq 'numericalresponse') {
269: my $max_val = 0;
270: if ($formats[0]=~m/^(\d+)E([^\d]*)(\d*)$/) {
271: $max_val=$1+$2+4;
272: } else {
273: $max_val=4;
274: }
275: $max_val = int(0.9*$ENV{'form.textwidth'}/(($max_val+6)*2));
276: my $celllength = 0.9*$ENV{'form.textwidth'}/$max_val-10;
277: my @table_range = ();
278: my $number_of_tables = int($number_of_bubbles/$max_val);
279: for (my $i=0;$i<$number_of_tables;$i++) {push @table_range,$max_val;}
280: if ($number_of_bubbles % $max_val != 0) {
281: $number_of_tables++;
282: push @table_range,($number_of_bubbles % $max_val);
1.58 sakharuk 283: }
1.76 sakharuk 284: my $j=0;
285: my $cou=0;
286: $result.='\vskip -1 mm \noindent \begin{enumerate}\item[\textbf{'.$Apache::lonxml::counter.'}.]';
287: for (my $i=0;$i<$number_of_tables;$i++) {
288: $result.='\vskip -1 mm \noindent \begin{tabular}{';
289: for ($ind=0;$ind<$table_range[$j];$ind++) {
290: $result.='lp{'.$celllength.' mm}';
291: }
292: $result.='}';
293: for ($ind=$cou;$ind<$cou+$table_range[$j];$ind++) {
294: my $ans;
295: if ($formats[0] ne '') {
296: $ans = sprintf('%.'.$formats[0],$bubbles_values[$ind]);
297: if ($ans =~ m/([0-9\.\-\+]+)E([0-9\-\+]+)/ ) {
298: my $number = $1;
299: my $power = $2;
300: $power=~s/^\+//;
301: $power=~s/^(-?)0+(\d+)//;
302: $ans=$number.'$\times 10^{'.$1.$2.'}$'; #'stupidemacs
303: }
304: } else {
305: my $badans = $bubbles_values[$ind];
306: my $format = '';
307: #What is the number? (integer,decimal,floating point)
308: if ($badans=~/^(\d*\.?\d*)(E|e)(\d*)$/) {
309: $format = 'e'.$2;
310: } elsif ($badans=~/^(\d*)\.(\d*)$/) {
311: $format = '4f';
312: } elsif ($badans=~/^(\d*)$/) {
313: $format = 'd';
314: }
315: $ans = sprintf('%.'.$format,$bubbles_values[$ind]);
316: if ($ans =~ m/([0-9\.\-\+]+)E([0-9\-\+]+)/ ) {
317: my $number = $1;
318: my $power = $2;
319: $power=~s/^\+//;
320: $power=~s/^(-?)0+(\d+)//;
321: $ans=$number.'$\times 10^{'.$1.$2.'}$'; #'stupidemacs
322: }
323: }
324: $result.='\hskip -3 mm {\small \textbf{'.$alphabet[$ind].'}}$\bigcirc$\hskip -2 mm & {\small '.$ans.'} ';
325: if ($ind != $cou+$table_range[$j]-1) {$result.=' & ';}
326: }
327: $cou += $table_range[$j];
328: $j++;
329: $result.='\\\\\end{tabular}\vskip 0 mm ';
330: }
331: $result.='\end{enumerate}';
332: &Apache::lonxml::increment_counter();
333: } else {
334: $result.='\fbox{\fbox{\parbox{\textwidth-5mm}{\strut\\\\\strut\\\\\strut\\\\\strut\\\\\strut\\\\\strut\\\\}}}';
1.79 sakharuk 335: my $id = $Apache::inputtags::part;
336: my $weight = &Apache::lonnet::EXT("resource.$id.weight");
337: my $repetition = int $weight/9;
338: if ($weight % 9 != 0) {$repetition++;}
339: $result.='\begin{enumerate}';
340: for (my $i=0;$i<$repetition;$i++) {
341: $result.='\item[\textbf{'.$Apache::lonxml::counter.'}.]\textit{Leave blank on scoring form}\vskip 0 mm';
342: &Apache::lonxml::increment_counter();
343: }
344: $result.= '\end{enumerate}';
345: }
1.36 albertel 346: }
1.69 sakharuk 347: }
1.32 albertel 348: } elsif ($target eq 'edit') {
349: $result.='</td></tr>'.&Apache::edit::end_table;
1.65 albertel 350: } elsif ($target eq 'answer' || $target eq 'analyze') {
1.44 albertel 351:
1.65 albertel 352: my $part_id="$Apache::inputtags::part.$Apache::inputtags::response[-1]";
353: if ($target eq 'analyze') {
354: push (@{ $Apache::lonhomework::analyze{"parts"} },$part_id);
355: $Apache::lonhomework::analyze{"$part_id.type"} = $$tagstack[-1];
356: }
357: &Apache::response::setup_params($$tagstack[-1]);
358: my (@answers)=&Apache::lonxml::get_param_var('answer',$parstack,$safeeval);
359: my (@formats)=&Apache::lonxml::get_param_var('format',$parstack,$safeeval);
360: my $unit=&Apache::lonxml::get_param_var('unit',$parstack,$safeeval);
361: my $type=&Apache::lonxml::get_param('type',$parstack,$safeeval);
1.44 albertel 362:
1.65 albertel 363: if ($target eq 'answer') {
364: $result.=&Apache::response::answer_header($$tagstack[-1]);
365: }
366: for(my $i=0;$i<=$#answers;$i++) {
367: my $ans=$answers[$i];
368: my $fmt;
369: if (@formats) {
370: if ($#formats) {
371: $fmt=$formats[$i];
372: } else {
373: $fmt=$formats[0];
374: }
375: }
376: my ($high,$low);
377: if ($Apache::inputtags::params{'tol'}) {
378: ($high,$low)=&get_tolrange($ans,$Apache::inputtags::params{'tol'});
379: }
380: my ($sighigh,$siglow);
381: if ($Apache::inputtags::params{'sig'}) {
382: ($sighigh,$siglow)=&get_sigrange($Apache::inputtags::params{'sig'});
383: }
384: if ($fmt) {
385: $ans = sprintf('%.'.$fmt,$ans);
386: if ($high) {
387: $high = sprintf('%.'.$fmt,$high); $low = sprintf('%.'.$fmt,$low);
388: }
389: }
390: if ($target eq 'answer') {
1.73 albertel 391: if ($high) { $ans.=' ['.$low.','.$high.']'; }
392: if ($sighigh) { $ans.= " Sig <i>$siglow - $sighigh</i>"; }
1.65 albertel 393: $result.=&Apache::response::answer_part($$tagstack[-1],$ans);
394: } elsif ($target eq 'analyze') {
395: push (@{ $Apache::lonhomework::analyze{"$part_id.answer"} },
396: $ans);
397: if ($high) {
398: push (@{ $Apache::lonhomework::analyze{"$part_id.ans_high"} }, $high);
399: push (@{ $Apache::lonhomework::analyze{"$part_id.ans_low"} }, $low);
400: }
401: }
402: }
403: if ($unit) {
404: if ($target eq 'answer') {
405: $result.=&Apache::response::answer_part($$tagstack[-1],
406: "Unit: <b>$unit</b>");
407: } elsif ($target eq 'analyze') {
408: push (@{ $Apache::lonhomework::analyze{"$part_id.unit"} },
409: $unit);
410: }
1.44 albertel 411: }
1.65 albertel 412: if ($type || $token->[1] eq 'stringresponse') {
413: my $string='Case Insensitive';
414: if ($type eq 'mc') {
415: $string='Multiple Choice';
416: } elsif ($type eq 'cs') {
417: $string='Case Sensitive';
418: } elsif ($type eq 'ci') {
419: $string='Case Insensitive';
420: } elsif ($type eq 'fml') {
421: $string='Formula';
422: }
423: if ($target eq 'answer') {
424: $result.=&Apache::response::answer_part($$tagstack[-1],
425: '<b>'.$string.'</b>');
426: } elsif ($target eq 'analyze') {
427: push (@{ $Apache::lonhomework::analyze{"$part_id.type"} },
428: $type);
429: }
1.52 albertel 430: }
1.65 albertel 431: if ($$tagstack[-1] eq 'formularesponse' && $target eq 'answer') {
432: my $samples=&Apache::lonxml::get_param('samples',$parstack,$safeeval);
433: $result.=&Apache::response::answer_part($$tagstack[-1],$samples);
1.51 albertel 434: }
1.65 albertel 435: if ($target eq 'answer') {
436: $result.=&Apache::response::answer_footer($$tagstack[-1]);
1.44 albertel 437: }
1.22 albertel 438: }
1.59 albertel 439: &Apache::response::end_response;
1.22 albertel 440: return $result;
1.51 albertel 441: }
442:
443: sub get_tolrange {
444: my ($ans,$tol)=@_;
445: my ($high,$low);
446: if ($tol =~ /%$/) {
447: chop($tol);
448: my $change=$ans*($tol/100.0);
449: $high=$ans+$change;
450: $low=$ans-$change;
451: } else {
452: $high=$ans+$tol;
453: $low=$ans-$tol;
454: }
455: return ($high,$low);
1.52 albertel 456: }
457:
458: sub get_sigrange {
459: my ($sig)=@_;
460: &Apache::lonxml::debug("Got a sig of :$sig:");
461: my $sig_lbound;
462: my $sig_ubound;
463: if ($sig eq '') {
464: $sig_lbound = 0; #SIG_LB_DEFAULT
465: $sig_ubound =15; #SIG_UB_DEFAULT
466: } else {
467: ($sig_lbound,$sig_ubound) = split(/,/,$sig);
468: if (!$sig_lbound) {
469: $sig_lbound = 0; #SIG_LB_DEFAULT
470: $sig_ubound =15; #SIG_UB_DEFAULT
471: }
472: if (!$sig_ubound) { $sig_ubound=$sig_lbound; }
473: }
474: return ($sig_ubound,$sig_lbound);
1.34 albertel 475: }
476:
477: sub start_stringresponse {
1.42 albertel 478: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
479: my $result;
480: if ($target eq 'meta') {
481: $result=&Apache::response::meta_package_write('stringresponse');
482: } else {
483: $result.=&start_numericalresponse(@_);
484: }
485: return $result;
1.34 albertel 486: }
487:
488: sub end_stringresponse {
1.44 albertel 489: return end_numericalresponse(@_);
490: }
491:
492: sub start_formularesponse {
493: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
494: my $result;
495: if ($target eq 'meta') {
496: $result=&Apache::response::meta_package_write('formularesponse');
497: } else {
498: $result.=&start_numericalresponse(@_);
499: }
500: return $result;
501: }
502:
503: sub end_formularesponse {
1.34 albertel 504: return end_numericalresponse(@_);
1.3 albertel 505: }
506:
1.1 albertel 507: 1;
1.3 albertel 508: __END__
509:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>