Diff for /loncom/homework/radiobuttonresponse.pm between versions 1.17 and 1.26

version 1.17, 2001/05/04 21:19:37 version 1.26, 2001/11/07 21:23:15
Line 10  sub BEGIN { Line 10  sub BEGIN {
 }  }
   
 sub start_radiobuttonresponse {  sub start_radiobuttonresponse {
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $result;
   #when in a radiobutton response use these    #when in a radiobutton response use these
   &Apache::lonxml::register('Apache::radiobuttonresponse',('foilgroup','foil'));    &Apache::lonxml::register('Apache::radiobuttonresponse',('foilgroup','foil','conceptgroup'));
     push (@Apache::lonxml::namespace,'radiobuttonresponse');
   my $id = &Apache::response::start_response($parstack,$safeeval);    my $id = &Apache::response::start_response($parstack,$safeeval);
   return '';    if ($target eq 'meta') {
       $result=&Apache::response::meta_package_write('radiobuttonresponse');
     } elsif ($target eq 'edit' ) {
       $result.=&Apache::edit::start_table($token).
         '<tr><td>'.&Apache::lonxml::description($token)."</td><td>Delete:".
    &Apache::edit::deletelist($target,$token)
     ."</td><td>&nbsp</td></tr><tr><td colspan=\"3\">\n";
       $result.=&Apache::edit::text_arg('Max Number Of Foils:','max',$token,'4').
         "</td></tr>";
       $result.="<tr><td colspan=\"3\">\n";
     } elsif ($target eq 'modified') {
       my $constructtag=&Apache::edit::get_new_args($token,$parstack,
    $safeeval,'max');
       if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
     }
     return $result;
 }  }
   
 sub end_radiobuttonresponse {  sub end_radiobuttonresponse {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $result;
     if ($target eq 'edit') { $result=&Apache::edit::end_table(); }
   &Apache::response::end_response;    &Apache::response::end_response;
   return '';    pop @Apache::lonxml::namespace;
     return $result;
 }  }
   
 %Apache::response::foilgroup={};  %Apache::response::foilgroup={};
 sub start_foilgroup {  sub start_foilgroup {
   %Apache::response::foilgroup={};    %Apache::response::foilgroup={};
   $Apache::optionresponse::conceptgroup=0;    $Apache::radiobuttonresponse::conceptgroup=0;
   &Apache::response::setrandomnumber();    &Apache::response::setrandomnumber();
   return '';    return '';
 }  }
Line 45  sub storesurvey { Line 66  sub storesurvey {
 }  }
   
 sub end_foilgroup {  sub end_foilgroup {
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
       
   my $result;    my $result;
   if ($target ne 'meta') {    if ($target eq 'grade' || $target eq 'web') {
     my $rrargs ='';      my $style = &Apache::lonxml::get_param('style',$parstack,$safeeval,'-2');
     if ( $#$parstack > 0 ) { $rrargs=$$parstack['-2']; }  
     my $style = &Apache::run::run("{$rrargs;".'return $style}',$safeeval);  
     if ( $style eq 'survey' ) {      if ( $style eq 'survey' ) {
       if ($target eq 'web') {        if ($target eq 'web') {
  $result=&displayallfoils();   $result=&displayallfoils();
Line 90  sub end_foilgroup { Line 109  sub end_foilgroup {
   
 sub getfoilcounts {  sub getfoilcounts {
   my ($parstack,$safeeval)=@_;    my ($parstack,$safeeval)=@_;
   my $rrargs ='';    my $max = &Apache::lonxml::get_param('max',$parstack,$safeeval,'-2');
   if ( $#$parstack > 0 ) { $rrargs=$$parstack['-2']; }  
   my $max = &Apache::run::run("{$rrargs;".'return $max}',$safeeval);  
   my @names = @{ $Apache::response::foilgroup{'names'} };    my @names = @{ $Apache::response::foilgroup{'names'} };
   my $truecnt=0;    my $truecnt=0;
   my $falsecnt=0;    my $falsecnt=0;
Line 146  sub displayfoils { Line 163  sub displayfoils {
       &Apache::lonxml::error("Unknown state $Apache::response::foilgroup{$name.'.value'} for $name in <foilgroup>");        &Apache::lonxml::error("Unknown state $Apache::response::foilgroup{$name.'.value'} for $name in <foilgroup>");
     }      }
   }    }
   my $whichtrue = rand $#truelist;    my $whichtrue = int(rand($#truelist+1));
   &Apache::lonxml::debug("Max is $max, From $#truelist elms, picking $whichtrue");    &Apache::lonxml::debug("Max is $max, From $#truelist elms, picking $whichtrue");
   my @whichfalse =();    my @whichfalse =();
   while ((($#whichfalse+1) < $max) && ($#falselist > -1)) {    while ((($#whichfalse+1) < $max) && ($#falselist > -1)) {
     my $afalse=rand $#falselist;      &Apache::lonxml::debug("Have $#whichfalse max is $max");
       my $afalse=int(rand($#falselist+1));
     &Apache::lonxml::debug("From $#falselist elms, picking $afalse");      &Apache::lonxml::debug("From $#falselist elms, picking $afalse");
     $afalse=splice(@falselist,$afalse,1);      $afalse=splice(@falselist,$afalse,1);
     &Apache::lonxml::debug("Picked $afalse");      &Apache::lonxml::debug("Picked $afalse");
Line 184  sub displayfoils { Line 202  sub displayfoils {
 }  }
   
 sub start_conceptgroup {  sub start_conceptgroup {
   $Apache::optionresponse::conceptgroup=1;      $Apache::radiobuttonresponse::conceptgroup=1;
   %Apache::response::conceptgroup={};    %Apache::response::conceptgroup={};
   return '';    my $result;
     if ($target eq 'edit') {
       $result.=&Apache::edit::tag_start($target,$token);
       $result.=&Apache::edit::text_arg('Concept:','concept',$token,'50').
         "</td></tr><tr><td colspan=\"3\">\n";
     } elsif ($target eq 'modified') {
       my $constructtag=&Apache::edit::get_new_args($token,$parstack,
    $safeeval,'concept');
       if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
     }
     return $result;
 }  }
   
 sub end_conceptgroup {  sub end_conceptgroup {
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
   $Apache::optionresponse::conceptgroup=0;      $Apache::radiobuttonresponse::conceptgroup=0;
     my $result;
   if ($target eq 'web' || $target eq 'grade') {    if ($target eq 'web' || $target eq 'grade') {
     my @names = @{ $Apache::response::conceptgroup{'names'} };      my @names = @{ $Apache::response::conceptgroup{'names'} };
     my $pick=int rand $#names+1;      my $pick=int rand $#names+1;
Line 199  sub end_conceptgroup { Line 228  sub end_conceptgroup {
     push @{ $Apache::response::foilgroup{'names'} }, $name;      push @{ $Apache::response::foilgroup{'names'} }, $name;
     $Apache::response::foilgroup{"$name.text"} =  $Apache::response::conceptgroup{"$name.text"};      $Apache::response::foilgroup{"$name.text"} =  $Apache::response::conceptgroup{"$name.text"};
     $Apache::response::foilgroup{"$name.value"} = $Apache::response::conceptgroup{"$name.value"};      $Apache::response::foilgroup{"$name.value"} = $Apache::response::conceptgroup{"$name.value"};
     my $args;      my $concept = &Apache::lonxml::get_param('concept',$parstack,$safeeval);
     if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }  
     my $concept = &Apache::run::run("{$args;".'return $concept}',$safeeval);  
     $Apache::response::foilgroup{"$name.concept"} = $concept;      $Apache::response::foilgroup{"$name.concept"} = $concept;
     &Apache::lonxml::debug("Selecting $name in $concept");      &Apache::lonxml::debug("Selecting $name in $concept");
     } elsif ($target eq 'edit') {
       $result=&Apache::edit::end_table();
   }    }
   return '';    return $result;
   }
   
   sub insert_conceptgroup {
     my $result="\n\t\t<conceptgroup concept=\"\">".&insert_foil()."\n\t\t</conceptgroup>\n";
     return $result;
 }  }
   
 sub start_foil {  sub start_foil {
   &Apache::lonxml::startredirection;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $result='';
     if ($target eq 'web') { &Apache::lonxml::startredirection; }
   return '';    return '';
 }  }
   
 sub end_foil {  sub end_foil {
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
   my $foil=&Apache::lonxml::endredirection;    my $text='';
     if ($target eq 'web') { $text=&Apache::lonxml::endredirection; }
   if ($target eq 'web' || $target eq 'grade') {    if ($target eq 'web' || $target eq 'grade') {
     my $args ='';      my $value = &Apache::lonxml::get_param('value',$parstack,$safeeval);
     if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }      if ($value ne 'unused') {
     my $name = &Apache::run::run("{$args;".'return $name}',$safeeval);        my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
     push @{ $Apache::response::foilgroup{'names'} }, $name;        if ( $Apache::radiobuttonresponse::conceptgroup ) {
     my $value = &Apache::run::run("{$args;".'return $value}',$safeeval);   push @{ $Apache::response::conceptgroup{'names'} }, $name;
     $Apache::response::foilgroup{"$name.value"} = $value;   $Apache::response::conceptgroup{"$name.value"} = $value;
     $Apache::response::foilgroup{"$name.text"} = $foil;   $Apache::response::conceptgroup{"$name.text"} = $text;
         } else {
    push @{ $Apache::response::foilgroup{'names'} }, $name;
    $Apache::response::foilgroup{"$name.value"} = $value;
    $Apache::response::foilgroup{"$name.text"} = $text;
         }
       }
   }    }
   return '';    return '';
 }  }

Removed from v.1.17  
changed lines
  Added in v.1.26


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