Diff for /loncom/homework/response.pm between versions 1.59 and 1.83

version 1.59, 2002/02/14 21:48:31 version 1.83, 2003/08/11 19:56:45
Line 33  package Apache::response; Line 33  package Apache::response;
 use strict;  use strict;
   
 BEGIN {  BEGIN {
   &Apache::lonxml::register('Apache::response',('responseparam','parameter','caparesponse','numericalresponse','formularesponse','stringresponse','radiobuttonresponse','optionresponse','imageresponse','essayresponse','dataresponse','externalresponse'));      &Apache::lonxml::register('Apache::response',('responseparam','parameter','dataresponse'));
 }  }
   
 sub start_response {  sub start_response {
   my ($parstack,$safeeval)=@_;      my ($parstack,$safeeval)=@_;
   my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);      my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);
   if ($id eq '') { $id = $Apache::lonxml::curdepth; }      if ($id eq '') { $id = $Apache::lonxml::curdepth; }
   if ($#Apache::inputtags::import > -1) {      if ($#Apache::inputtags::import > -1) {
     &Apache::lonxml::debug("Turning :$id: into");   &Apache::lonxml::debug("Turning :$id: into");
     $id = join('_',@Apache::inputtags::import).'_'.$id;   $id = join('_',@Apache::inputtags::import).'_'.$id;
     &Apache::lonxml::debug("New  :$id:");   &Apache::lonxml::debug("New  :$id:");
   }      }
   push (@Apache::inputtags::response,$id);      push (@Apache::inputtags::response,$id);
   push (@Apache::inputtags::responselist,$id);      push (@Apache::inputtags::responselist,$id);
   @Apache::inputtags::inputlist=();      @Apache::inputtags::inputlist=();
   return $id;      return $id;
 }  }
   
 sub end_response {  sub end_response {
   pop @Apache::inputtags::response;      #pop @Apache::inputtags::response;
   @Apache::inputtags::inputlist=();      @Apache::inputtags::inputlist=();
   return '';      return '';
 }  }
   
 sub start_hintresponse {  sub start_hintresponse {
   my ($parstack,$safeeval)=@_;      my ($parstack,$safeeval)=@_;
   my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);      my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);
   if ($id eq '') { $id = $Apache::lonxml::curdepth; }      if ($id eq '') { $id = $Apache::lonxml::curdepth; }
   push (@Apache::inputtags::response,$id);      push (@Apache::inputtags::response,$id);
   return $id;      push (@Apache::inputtags::responselist,$id);
       push (@Apache::inputtags::paramstack,[%Apache::inputtags::params]);
       return $id;
 }  }
   
 sub end_hintresponse {  sub end_hintresponse {
   pop @Apache::inputtags::response;      pop @Apache::inputtags::response;
   return '';      if (defined($Apache::inputtags::paramstack[-1])) {
    %Apache::inputtags::params=
       @{ pop(@Apache::inputtags::paramstack) };
       }
       return '';
 }  }
   
 # used by response to set the non-safe space random number generator to something  # used by response to set the non-safe space random number generator to something
 # that is stable and unique based on the part number and response number  # that is stable and unique based on the part number and response number
 sub setrandomnumber {  sub setrandomnumber {
   my $rndseed;      my $rndseed;
   if ($ENV{'request.state'} eq "construct") {      if ($ENV{'request.state'} eq "construct") {
     $rndseed=$ENV{'form.rndseed'};   $rndseed=$ENV{'form.rndseed'};
     if (!$rndseed) { $rndseed=time; }   if (!$rndseed) { $rndseed=time; }
   } else {      } else {
     my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();   $rndseed=&Apache::lonnet::rndseed();
     $rndseed=&Apache::lonnet::rndseed($symb,$courseid,$domain,$name);      }
   }      &Apache::lonxml::debug("randseed $rndseed");
   &Apache::lonxml::debug("randseed $rndseed");      #  $rndseed=unpack("%32i",$rndseed);
 #  $rndseed=unpack("%32i",$rndseed);      my $rndmod=(&Apache::lonnet::numval($Apache::inputtags::part) << 10);
   $rndseed=$rndseed      if (defined($Apache::inputtags::response['-1'])) {
     +(&Apache::lonnet::numval($Apache::inputtags::part) << 10);         $rndmod+=&Apache::lonnet::numval($Apache::inputtags::response[-1]);
   if (defined($Apache::inputtags::response['-1'])) {      }
     $rndseed=$rndseed      if ($rndseed =~/,/) {
       +&Apache::lonnet::numval($Apache::inputtags::response['-1']);   {
   }      use integer;
   srand($rndseed);      my ($num1,$num2)=split(/,/,$rndseed);
   &Apache::lonxml::debug("randseed $rndseed");      $num1+=$rndmod;
   return '';      $num2+=$rndmod;
       $rndseed="$num1,$num2";
    }
       } else {
    $rndseed+=$rndmod;
       }
       &Apache::lonnet::setup_random_from_rndseed($rndseed);
       &Apache::lonxml::debug("randseed $rndseed");
       return '';
 }  }
   
 sub meta_parameter_write {  sub meta_parameter_write {
Line 99  sub meta_parameter_write { Line 113  sub meta_parameter_write {
     my $partref=$Apache::inputtags::part;      my $partref=$Apache::inputtags::part;
     my $result='<parameter part="'.$Apache::inputtags::part.'"';      my $result='<parameter part="'.$Apache::inputtags::part.'"';
     if (defined($Apache::inputtags::response[-1])) {      if (defined($Apache::inputtags::response[-1])) {
       $result.=            ' id="'.$Apache::inputtags::response[-1].'"';   $result.=            ' id="'.$Apache::inputtags::response[-1].'"';
       $partref.='_'.$Apache::inputtags::response[-1];   $partref.='_'.$Apache::inputtags::response[-1];
     }      }
     $result.=            ' name="'.$name.'"'.      $result.=            ' name="'.$name.'"'.
                          ' type="'.$type.'"'.                           ' type="'.$type.'"'.
Line 115  sub meta_package_write { Line 129  sub meta_package_write {
     my $name=shift;      my $name=shift;
     my $result = '<parameter part="'.$Apache::inputtags::part.'"';      my $result = '<parameter part="'.$Apache::inputtags::part.'"';
     if(defined($Apache::inputtags::response[-1])) {      if(defined($Apache::inputtags::response[-1])) {
       $result.=              ' id="'.$Apache::inputtags::response[-1].'"';   $result.= ' id="'.$Apache::inputtags::response[-1].'"';
     }      }
     $result.=' package="'.$name.'"></parameter>'."\n";      $result.=' package="'.$name.'"></parameter>'."\n";
     return $result;      return $result;
Line 126  sub meta_stores_write { Line 140  sub meta_stores_write {
     my $partref=$Apache::inputtags::part;      my $partref=$Apache::inputtags::part;
     my $result = '<stores part="'.$Apache::inputtags::part.'"';      my $result = '<stores part="'.$Apache::inputtags::part.'"';
     if (defined($Apache::inputtags::response[-1])) {      if (defined($Apache::inputtags::response[-1])) {
       $result.=           ' id="'.$Apache::inputtags::response[-1].'"';   $result.=           ' id="'.$Apache::inputtags::response[-1].'"';
       $partref.='_'.$Apache::inputtags::response[-1];   $partref.='_'.$Apache::inputtags::response[-1];
     }      }
     $result.=          ' name="'.$name.'"'.      $result.=          ' name="'.$name.'"'.
                        ' type="'.$type.'"'.                         ' type="'.$type.'"'.
Line 142  sub mandatory_part_meta { Line 156  sub mandatory_part_meta {
 # output (to lonspreadsheet)  # output (to lonspreadsheet)
 # of each part  # of each part
 #  #
  return      return
 #    &meta_parameter_write('opendate','date_start','',  #    &meta_parameter_write('opendate','date_start','',
 #                          'Opening Date').  #                          'Opening Date').
 #    &meta_parameter_write('duedate','date_end','',  #    &meta_parameter_write('duedate','date_end','',
Line 153  sub mandatory_part_meta { Line 167  sub mandatory_part_meta {
 #                          'Available Points').  #                          'Available Points').
 #    &meta_parameter_write('maxtries','int_pos','',  #    &meta_parameter_write('maxtries','int_pos','',
 #                          'Maximum Number of Tries').  #                          'Maximum Number of Tries').
     &meta_package_write('part').   &meta_package_write('part').
     &meta_stores_write('solved','string',          &meta_stores_write('solved','string',
                           'Problem Status').     'Problem Status').
     &meta_stores_write('tries','int_zeropos',          &meta_stores_write('tries','int_zeropos',
                           'Number of Attempts').     'Number of Attempts').
     &meta_stores_write('awarded','float',          &meta_stores_write('awarded','float',
           'Partial Credit Factor');     'Partial Credit Factor');
 #  #
 # Note: responseid-specific data 'submission' and 'awarddetail'  # Note: responseid-specific data 'submission' and 'awarddetail'
 # not available to spreadsheet -> skip here  # not available to spreadsheet -> skip here
Line 167  sub mandatory_part_meta { Line 181  sub mandatory_part_meta {
 }  }
   
 sub check_for_previous {  sub check_for_previous {
   my ($curresponse,$partid,$id) = @_;      my ($curresponse,$partid,$id) = @_;
   my %previous;      my %previous;
   $previous{'used'} = 0;      $previous{'used'} = 0;
   foreach my $key (reverse(sort(keys(%Apache::lonhomework::history)))) {      foreach my $key (sort(keys(%Apache::lonhomework::history))) {
     if ($key =~ /resource\.$partid\.$id\.submission/) {   if ($key =~ /resource\.$partid\.$id\.submission/) {
       &Apache::lonxml::debug("Trying $key");      &Apache::lonxml::debug("Trying $key");
       my $pastresponse=$Apache::lonhomework::history{$key};      my $pastresponse=$Apache::lonhomework::history{$key};
       if ($pastresponse eq $curresponse) {      if ($pastresponse eq $curresponse) {
  $previous{'used'} = 1;   $previous{'used'} = 1;
  my $history;   my $history;
  if ( $key =~ /^(\d+):/ ) {   if ( $key =~ /^(\d+):/ ) {
   $history=$1;      $history=$1;
   $previous{'award'} = $Apache::lonhomework::history{"$history:resource.$partid.$id.awarddetail"};      $previous{'award'} = $Apache::lonhomework::history{"$history:resource.$partid.$id.awarddetail"};
   $previous{'last'}='0';      $previous{'last'}='0';
  } else {      push(@{ $previous{'version'} },$history);
   $previous{'award'} = $Apache::lonhomework::history{"resource.$partid.$id.awarddetail"};   } else {
   $previous{'last'}='1';      $previous{'award'} = $Apache::lonhomework::history{"resource.$partid.$id.awarddetail"};
       $previous{'last'}='1';
    }
    if (! $previous{'award'} ) { $previous{'award'} = 'UNKNOWN'; }
    &Apache::lonxml::debug("got a match :$previous{'award'}:$previous{'used'}:");
       }
  }   }
  if (! $previous{'award'} ) { $previous{'award'} = 'UNKNOWN'; }  
  &Apache::lonxml::debug("got a match :$previous{'award'}:$previous{'used'}:");  
  last;  
       }  
     }      }
   }      &Apache::lonhomework::showhash(%previous);
   return %previous;      return %previous;
 }  }
   
 sub handle_previous {  sub handle_previous {
   my ($previous,$ad)=@_;      my ($previous,$ad)=@_;
   if ($$previous{'used'} && ($$previous{'award'} eq $ad) ) {      if ($$previous{'used'} && ($$previous{'award'} eq $ad) ) {
     if ($$previous{'last'}) {   if ($$previous{'last'}) {
       push(@Apache::inputtags::previous,'PREVIOUSLY_LAST');      push(@Apache::inputtags::previous,'PREVIOUSLY_LAST');
     } else {   } else {
       push(@Apache::inputtags::previous,'PREVIOUSLY_USED');      push(@Apache::inputtags::previous,'PREVIOUSLY_USED');
    }
    push(@Apache::inputtags::previous_version,$$previous{'version'});
     }      }
   }  
 }  
   
 sub start_caparesponse {  
   require Apache::caparesponse;   
   import Apache::caparesponse;   
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;  
 #  print "\n<br />\nsimple caparesponse\n";  
   return &Apache::caparesponse::start_caparesponse($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);  
 }  }
   
 sub start_stringresponse {  sub view_or_modify {
   require Apache::caparesponse;      my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
   import Apache::caparesponse;      my $myself=0;
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      if ( ($name eq $ENV{'user.name'}) && ($domain eq $ENV{'user.domain'}) ) {
   return &Apache::caparesponse::start_stringresponse($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);   $myself=1;
       }
       my $vgr=&Apache::lonnet::allowed('vgr',$courseid);
       my $mgr=&Apache::lonnet::allowed('vgr',$courseid);
       if ($mgr) { return "M"; }
       if ($vgr) { return "V"; }
       if ($myself) { return "V"; }
       return '';
 }  }
   
 sub start_formularesponse {  sub start_dataresponse {
   require Apache::caparesponse;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   import Apache::caparesponse;      my $id = &Apache::response::start_response($parstack,$safeeval);
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      my $result;
   return &Apache::caparesponse::start_formularesponse($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);      if ($target eq 'web') {
    $result = $token->[2]->{'display'}.':';
       } elsif ($target eq 'meta') {
    $result = &Apache::response::meta_stores_write($token->[2]->{'name'},
          $token->[2]->{'type'},
          $token->[2]->{'display'});
    $result .= &Apache::response::meta_package_write('dataresponse');
       }
       return $result;
 }  }
   
 sub start_numericalresponse {  sub end_dataresponse {
   require Apache::caparesponse;       my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   import Apache::caparesponse;       my $result;
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      if ( $target eq 'web' ) {
   return &Apache::caparesponse::start_numericalresponse      } elsif ($target eq 'grade' ) {
     ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);   if ( defined $ENV{'form.submitted'}) {
       my ($symb,$courseid,$domain,$name)=&Apache::lonxml::whichuser();
       my $allowed=&Apache::lonnet::allowed('mgr',$courseid);
       if ($allowed) {
    &Apache::response::setup_params('dataresponse');
    my $partid = $Apache::inputtags::part;
    my $id = $Apache::inputtags::response['-1'];
    my $response = $ENV{'form.HWVAL_'.$id};
    my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);
    if ( $response =~ /[^\s]/) {
       $Apache::lonhomework::results{"resource.$partid.$id.$name"}=$response;
       $Apache::lonhomework::results{"resource.$partid.$id.submission"}=$response;
       $Apache::lonhomework::results{"resource.$partid.$id.awarddetail"}='SUBMITTED';
    }
       } else {
    $result='Not Permitted to change values.'
       }
    }
       }
       &Apache::response::end_response;
       return $result;
 }  }
   
 sub start_radiobuttonresponse {  sub decide_package {
   require Apache::radiobuttonresponse;       my ($tagstack)=@_;
   import Apache::radiobuttonresponse;       my $package;
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      if ($$tagstack[-1] eq 'parameter') {
   return &Apache::radiobuttonresponse::start_radiobuttonresponse($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);   $package='part';
       } else {
    my $i=-1;
    while (defined($$tagstack[$i])) {
       if ($$tagstack[$i] =~ /(response|hint)$/) {
    $package=$$tagstack[$i];
    last;
       }
       $i--;
    }
       }
       return $package;
 }  }
   
 sub start_optionresponse {  sub start_responseparam {
   require Apache::optionresponse;       my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   import Apache::optionresponse;       my $result='';
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      if ($target eq 'meta') {
   return &Apache::optionresponse::start_optionresponse($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);   $result = &meta_parameter_write($token->[2]->{'name'},
    $token->[2]->{'type'},
    $token->[2]->{'default'},
    $token->[2]->{'description'});
       } elsif ($target eq 'edit') {
    $result.=&Apache::edit::tag_start($target,$token);
    my $optionlist;
    my $package=&decide_package($tagstack);
    foreach my $key (sort(keys(%Apache::lonnet::packagetab))) {
       if ($key =~ /^\Q$package\E&(.*)&display$/) {
    $optionlist.='<option value="'.$1.'">'.
       $Apache::lonnet::packagetab{$key}.'</option>';
       }
    }
    if (defined($optionlist)) {
       $result.='Use template: <select name="'.
    &Apache::edit::html_element_name('parameter_package').'">'.
       '<option value=""></option>'.$optionlist.'</select><br />';
    }
    $result.=&Apache::edit::text_arg('Name:','name',$token).
       &Apache::edit::text_arg('Type:','type',$token).
    &Apache::edit::text_arg('Description:','description',$token).
       &Apache::edit::text_arg('Default:','default',$token).
    "</td></tr>";
    $result.=&Apache::edit::end_table;
       } elsif ($target eq 'modified') {
    my $constructtag=&Apache::edit::get_new_args($token,$parstack,
        $safeeval,'name','type',
        'description','default');
    my $element=&Apache::edit::html_element_name('parameter_package');
    if (defined($ENV{"form.$element"}) && $ENV{"form.$element"} ne '') {
       my $name=$ENV{"form.$element"};
       my $tag=&decide_package($tagstack);
       $token->[2]->{'name'}=$name;
       $token->[2]->{'type'}=
    $Apache::lonnet::packagetab{"$tag&$name&type"};
       $token->[2]->{'description'}=
    $Apache::lonnet::packagetab{"$tag&$name&display"};
       $token->[2]->{'default'}=
    $Apache::lonnet::packagetab{"$tag&$name&default"};
       $constructtag=1;
    }
    if ($constructtag) {
       $result = &Apache::edit::rebuild_tag($token);
       $result.=&Apache::edit::handle_insert();
    }
       } elsif ($target eq 'grade' || $target eq 'answer' || $target eq 'web' ||
        $target eq 'tex' || $target eq 'analyze' ) {
    if ($ENV{'request.state'} eq 'construct') {
       my $name   =&Apache::lonxml::get_param('name',$parstack,$safeeval);
       my $default=&Apache::lonxml::get_param('default',$parstack,
        $safeeval);
       if ($name) {$Apache::inputtags::params{$name}=$default;}
    }
       }
       return $result;
 }  }
   
 sub start_imageresponse {  sub end_responseparam {
   require Apache::imageresponse;       my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
   import Apache::imageresponse;       if ($target eq 'edit') { return ('','no'); }
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      return '';
   return &Apache::imageresponse::start_imageresponse($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);  
 }  }
   
 sub start_essayresponse {  sub start_parameter {
   require Apache::essayresponse;       my $result = &start_responseparam(@_);
   import Apache::essayresponse;       return $result;
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;  
   return &Apache::essayresponse::start_essayresponse($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);  
 }  }
   
 sub start_externalresponse {  sub end_parameter {
   require Apache::externalresponse;       my $result = &end_responseparam(@_);
   import Apache::externalresponse;       return $result;
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;  
   return &Apache::externalresponse::start_externalresponse($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);  
 }  }
   
 sub view_or_modify {  sub reset_params {
   my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();      %Apache::inputtags::params=();
   my $myself=0;  
   if ( ($name eq $ENV{'user.name'}) && ($domain eq $ENV{'user.domain'}) ) {  
     $myself=1;  
   }  
   my $vgr=&Apache::lonnet::allowed('vgr',$courseid);  
   my $mgr=&Apache::lonnet::allowed('vgr',$courseid);  
   if ($mgr) { return "M"; }  
   if ($vgr) { return "V"; }  
   if ($myself) { return "V"; }  
   return '';  
 }  }
   
 sub start_dataresponse {  sub setup_params {
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;      my ($tag) = @_;
   my $id = &Apache::response::start_response($parstack,$safeeval);  
   my $result;  
   if ($target eq 'web') {  
     $result = $token->[2]->{'display'}.':';  
   } elsif ($target eq 'meta') {  
     $result = &Apache::response::meta_stores_write($token->[2]->{'name'},  
    $token->[2]->{'type'},  
    $token->[2]->{'display'});  
     $result .= &Apache::response::meta_package_write('dataresponse');  
   }  
   return $result;  
 }  
   
 sub end_dataresponse {      if ($ENV{'request.state'} eq 'construct') { return; }
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;      my %paramlist=();
   my $result;      foreach my $key (keys(%Apache::lonnet::packagetab)) {
   if ( $target eq 'web' ) {   if ($key =~ /^$tag/) {
   } elsif ($target eq 'grade' ) {      my ($package,$name) = split(/&/,$key);
     if ( defined $ENV{'form.submitted'}) {      $paramlist{$name}=1;
       my ($symb,$courseid,$domain,$name)=&Apache::lonxml::whichuser();   }
       my $allowed=&Apache::lonnet::allowed('mgr',$courseid);      }
       if ($allowed) {      foreach my $key (keys(%paramlist)) {
  &Apache::response::setup_params('datasubmission');   my $entry= 'resource.'.$Apache::inputtags::part;
  my $partid = $Apache::inputtags::part;   if (defined($Apache::inputtags::response[-1])) {
  my $id = $Apache::inputtags::response['-1'];      $entry.='_'.$Apache::inputtags::response[-1];
  my $response = $ENV{'form.HWVAL'.$id};   }
  my $name = &Apache::lonxml::get_param('name',$parstack,$safeeval);   $entry.='.'.$key;
  if ( $response =~ /[^\s]/) {   &Apache::lonxml::debug("looking for $entry");
   $Apache::lonhomework::results{"resource.$partid.$id.$name"}=   my $value = &Apache::lonnet::EXT("$entry");
     $response;   &Apache::lonxml::debug("$key has value :$value:");
   $Apache::lonhomework::results{   if ($value eq 'con_lost' || $value =~ /^error:/) {
  "resource.$partid.$id.submission"}=      &Apache::lonxml::debug("using nothing");
   $response;      $Apache::inputtags::params{$key}='';
   $Apache::lonhomework::results{   } else {
  "resource.$partid.$id.awarddetail"}=      &Apache::lonxml::debug("using value");
   'SUBMITTED';      $Apache::inputtags::params{$key}=$value;
  }   }
       } else {      }
  $result='Not Permitted to change values.'  
       }  
     }  
   }  
   &Apache::response::end_response;  
   return $result;  
 }  }
   
 sub start_responseparam {  sub answer_header {
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;      my ($type) = @_;
   my $result='';      my $result;
   if ($target eq 'meta') {      if ($ENV{'form.answer_output_mode'} eq 'tex') {
     $result = &meta_parameter_write($token->[2]->{'name'},   $result = ' \vskip 0 mm \begin{tabular}{|c|}\hline Answer for Part: '.
     $token->[2]->{'type'},                    $Apache::inputtags::part.' \\\\ \hline ';
     $token->[2]->{'default'},      } else {
     $token->[2]->{'description'});   $result = '<table border="1"><tr><td>Answer for Part:'.
   } elsif ($target eq 'edit') {      $Apache::inputtags::part. '</td>'."\n";
     $result.=&Apache::edit::tag_start($target,$token);  
     $result.=&Apache::edit::text_arg('Name:','name',$token).  
       &Apache::edit::text_arg('Type:','type',$token).  
  &Apache::edit::text_arg('Description:','description',$token).  
   &Apache::edit::text_arg('Default:','default',$token).  
     "</td></tr>";  
     $result.=&Apache::edit::end_table;  
   } elsif ($target eq 'modified') {  
     my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,  
  'name','type','description',  
  'default');  
     if ($constructtag) {  
       $result = &Apache::edit::rebuild_tag($token);  
       $result.=&Apache::edit::handle_insert();  
     }  
   } elsif ($target eq 'grade' || $target eq 'answer' ) {  
     if ($ENV{'request.state'} eq 'construct') {  
       my $name    = &Apache::lonxml::get_param('name',$parstack,$safeeval);  
       my $default = &Apache::lonxml::get_param('default',$parstack,$safeeval);  
       $Apache::inputtags::params{$name}=$default;  
     }      }
   }      return $result;
   return $result;  
 }  }
   
 sub end_responseparam {  sub answer_part {
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;      my ($type,$answer) = @_;
   if ($target eq 'edit') { return ('','no'); }      my $result;
   return '';      if ($ENV{'form.answer_output_mode'} eq 'tex') {
    $result = ' \verb|'.$answer.'|\\\\ \hline ';
       } else {
    $result = '<td>'.$answer.'</td>';
       }
       return $result;
 }  }
   
 sub start_parameter {  sub answer_footer {
   my $result = &start_responseparam(@_);      my ($type) = @_;
   return $result;      my $result;
       if ($ENV{'form.answer_output_mode'} eq 'tex') {
    $result = ' \end{tabular} \vskip 0 mm ';
       } else {
    $result = '</tr></table>';
       }
       return $result;
 }  }
   
 sub end_parameter {  sub showallfoils {
   my $result = &end_responseparam(@_);      my $return=0;
   return $result;      if (defined($ENV{'form.showallfoils'}) &&
    $ENV{'request.state'} eq 'construct') {
    $return=1;
       }
       return $return;
 }  }
   
 sub setup_params {  sub getresponse {
   my ($tag) = @_;      my ($temp)=@_;
       my $formparm='form.HWVAL_'.$Apache::inputtags::response['-1'];
   if ($ENV{'request.state'} eq 'construct') { return; }      my $response;
   @Apache::inputtags::params=();      if (!defined($temp)) {
   my %paramlist=();   $temp=1;
   foreach my $key (keys(%Apache::lonnet::packagetab)) {      } else {
     if ($key =~ /^$tag/) {   $formparm.=":$temp";
       my ($package,$name) = split(/&/,$key);  
       $paramlist{$name}=1;  
     }  
   }  
   foreach my $key (keys(%paramlist)) {  
     my $entry= 'resource.'.$Apache::inputtags::part;  
     if (defined($Apache::inputtags::response[-1])) {  
       $entry.='_'.$Apache::inputtags::response[-1];  
     }      }
     $entry.='.'.$key;      my %let_to_num=('A'=>0,'B'=>1,'C'=>2,'D'=>3,'E'=>4,'F'=>5,'G'=>6,'H'=>7,
     &Apache::lonxml::debug("looking for $entry");      'I'=>8,'J'=>9,'K'=>10,'L'=>11,'M'=>12,'N'=>13,'O'=>14,
     my $value = &Apache::lonnet::EXT("$entry");      'P'=>15,'Q'=>16,'R'=>17,'S'=>18,'T'=>19,'U'=>20,'V'=>21,
     &Apache::lonxml::debug("$key has value :$value:");      'W'=>22,'X'=>23,'Y'=>24,'Z'=>25);
     if ($value eq 'con_lost' || $value =~ /^error:/) {      if ($ENV{'form.submitted'} eq 'scantron') {
       &Apache::lonxml::debug("using nothing");   my $part  = $Apache::inputtags::part;
       $Apache::inputtags::params{$key}='';   my $id    = $Apache::inputtags::response[-1];
    $response = $ENV{'scantron.'.($Apache::lonxml::counter+$temp-1).
    '.answer'};
    # save bubbled letter for later
    $Apache::lonhomework::results{"resource.$part.$id.scantron"}.=
       $response;
    $response = $let_to_num{$response};
     } else {      } else {
       &Apache::lonxml::debug("using value");   $response = $ENV{$formparm};
       $Apache::inputtags::params{$key}=$value;  
     }      }
   }      return $response;
 }  }
   
 sub answer_header {  sub repetition {
   my ($type) = @_;      my $id = $Apache::inputtags::part;
   my $result;      my $weight = &Apache::lonnet::EXT("resource.$id.weight");
   if ($type eq 'optionresponse' || $type eq 'radiobuttonresponse' ) {      my $repetition = int $weight/9;
     $result = '<table border="1"><tr><th>Answer for Part:'.      if ($weight % 9 != 0) {$repetition++;} 
       $Apache::inputtags::part. '</th></tr><tr>'."\n";      return $repetition;
   } else {  }
     $result = '<table border="1"><tr><td>Answer for Part:'.  
       $Apache::inputtags::part. '</td>'."\n";  sub scored_response {
   }      my ($part,$id)=@_;
   return $result;      my $repetition=&repetition();
 }      my $score=0;
       for (my $i=0;$i<$repetition;$i++) {
 sub answer_part {   my $increase=&Apache::response::getresponse($i+1);
   my ($type,$answer) = @_;   if ($increase ne '') { $score+=$increase+1; }
   my $result;      }
   if ($type eq 'optionresponse' || $type eq 'radiobuttonresponse') {      my $weight = &Apache::lonnet::EXT("resource.$part.weight");
     $result = '<td>'.$answer.'</td>';      my $pcr=$score/$weight;
   } else {      $Apache::lonhomework::results{"resource.$part.$id.awarded"}=$pcr;
     $result = '<td>'.$answer.'</td>';      $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=
   }   'ASSIGNED_SCORE';
   return $result;      return $repetition;
 }  }
   
   sub whichorder {
       my ($max,$randomize,$showall,$hash)=@_;
       #&Apache::lonxml::debug("man $max randomize $randomize");
       if (!defined(@{ $$hash{'names'} })) { return; }
       my @names = @{ $$hash{'names'} };
       my @whichopt =();
       my (%top,@toplist,%bottom,@bottomlist);
       if (!($showall || ($randomize eq 'no'))) {
    my $current=0;
    foreach my $name (@names) {
       $current++;
       if ($$hash{"$name.location"} eq 'top') {
    $top{$name}=$current;
       } elsif ($$hash{"$name.location"} eq 'bottom') {
    $bottom{$name}=$current;
       }
    }
       }
       my $topcount=0;
       my $bottomcount=0;
       while (((scalar(@whichopt)+$topcount+$bottomcount) < $max || $showall)
      && ($#names > -1)) {
    #&Apache::lonxml::debug("Have $#whichopt max is $max");
    my $aopt;
    if ($showall || ($randomize eq 'no')) {
       $aopt=0;
    } else {
       $aopt=int(&Math::Random::random_uniform() * ($#names+1));
    }
    #&Apache::lonxml::debug("From $#whichopt $max $#names elms, picking $aopt");
    $aopt=splice(@names,$aopt,1);
    #&Apache::lonxml::debug("Picked $aopt");
    if ($top{$aopt}) {
       $toplist[$top{$aopt}]=$aopt;
       $topcount++;
    } elsif ($bottom{$aopt}) {
       $bottomlist[$bottom{$aopt}]=$aopt;
       $bottomcount++;
    } else {
       push (@whichopt,$aopt);
    }
       }
       for (my $i=0;$i<=$#toplist;$i++) {
    if ($toplist[$i]) { unshift(@whichopt,$toplist[$i]) }
       }
       for (my $i=0;$i<=$#bottomlist;$i++) {
    if ($bottomlist[$i]) { push(@whichopt,$bottomlist[$i]) }
       }
   
 sub answer_footer {      return @whichopt;
   my ($type) = @_;  
   my $result;  
   if ($type eq 'optionresponse' || $type eq 'radiobuttonresponse') {  
     $result = '</tr></table>';  
   } else {  
     $result = '</tr></table>';  
   }  
   return $result;  
 }  }
   
 1;  1;

Removed from v.1.59  
changed lines
  Added in v.1.83


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