Diff for /loncom/homework/inputtags.pm between versions 1.99 and 1.100

version 1.99, 2003/05/08 15:22:03 version 1.100, 2003/05/08 15:33:15
Line 82  sub start_textfield { Line 82  sub start_textfield {
   my $resid=$Apache::inputtags::response[-1];    my $resid=$Apache::inputtags::response[-1];
   if ($target eq 'web') {    if ($target eq 'web') {
     $Apache::lonxml::evaluate--;      $Apache::lonxml::evaluate--;
     if ($Apache::inputtags::status[-1] eq 'CAN_ANSWER'  &&      if ($Apache::inputtags::status[-1] eq 'CAN_ANSWER') {
         $Apache::lonhomework::history{"resource.$id.solved"} =~/^correct/  
  ) {  
  my $partid=$Apache::inputtags::part;   my $partid=$Apache::inputtags::part;
  my $oldresponse = &HTML::Entities::encode($Apache::lonhomework::history{"resource.$partid.$resid.submission"});   my $oldresponse = &HTML::Entities::encode($Apache::lonhomework::history{"resource.$partid.$resid.submission"});
  my $cols = &Apache::lonxml::get_param('cols',$parstack,$safeeval);   my $cols = &Apache::lonxml::get_param('cols',$parstack,$safeeval);
Line 164  sub start_textline { Line 162  sub start_textline {
     $Apache::lonxml::evaluate--;      $Apache::lonxml::evaluate--;
     my $partid=$Apache::inputtags::part;      my $partid=$Apache::inputtags::part;
     my $id=$Apache::inputtags::response[-1];      my $id=$Apache::inputtags::response[-1];
     if ($Apache::inputtags::status[-1] eq 'CAN_ANSWER' &&      if ($Apache::inputtags::status[-1] eq 'CAN_ANSWER') {
         $Apache::lonhomework::history{"resource.$id.solved"} =~/^correct/  
  ) {  
       my $size = &Apache::lonxml::get_param('size',$parstack,$safeeval);        my $size = &Apache::lonxml::get_param('size',$parstack,$safeeval);
       my $maxlength;        my $maxlength;
       if ($size eq '') { $size=20; } else {        if ($size eq '') { $size=20; } else {

Removed from v.1.99  
changed lines
  Added in v.1.100


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