Diff for /loncom/homework/hint.pm between versions 1.61 and 1.62

version 1.61, 2005/12/01 18:46:31 version 1.62, 2006/03/07 22:42:47
Line 94  sub end_hintgroup { Line 94  sub end_hintgroup {
  $hinttext.'</td></tr></table>';   $hinttext.'</td></tr></table>';
  }   }
     } elsif ($target eq 'edit') {      } elsif ($target eq 'edit') {
  $result.=&Apache::edit::end_table();   $result.=&Apache::edit::end_row().&Apache::edit::end_table();
     } elsif ($target eq 'tex') {      } elsif ($target eq 'tex') {
  $result .= '}';   $result .= '}';
     }      }
Line 201  sub end_numericalhint { Line 201  sub end_numericalhint {
     } elsif ($target eq 'meta') {      } elsif ($target eq 'meta') {
  $result=&Apache::response::meta_package_write($token->[1]);   $result=&Apache::response::meta_package_write($token->[1]);
     } elsif ($target eq 'edit') {      } elsif ($target eq 'edit') {
  $result.='</td></tr>'.&Apache::edit::end_table;   $result.=&Apache::edit::end_row().&Apache::edit::end_table();
     }      }
     &Apache::response::end_hintresponse();      &Apache::response::end_hintresponse();
     return $result;      return $result;
Line 300  sub end_stringhint { Line 300  sub end_stringhint {
     } elsif ($target eq 'meta') {      } elsif ($target eq 'meta') {
  $result=&Apache::response::meta_package_write($token->[1]);   $result=&Apache::response::meta_package_write($token->[1]);
     } elsif ($target eq 'edit') {      } elsif ($target eq 'edit') {
  $result.='</td></tr>'.&Apache::edit::end_table;   $result.=&Apache::edit::end_row().&Apache::edit::end_table();
     }      }
     &Apache::response::end_hintresponse();      &Apache::response::end_hintresponse();
     return $result;      return $result;
Line 345  sub start_hintpart { Line 345  sub start_hintpart {
 sub end_hintpart {  sub end_hintpart {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
     my $result;      my $result;
     if ($target eq 'edit') { $result.=&Apache::edit::end_table; }      if ($target eq 'edit') {
    $result.=&Apache::edit::end_row().&Apache::edit::end_table();
       }
     return $result;      return $result;
 }  }
   
Line 386  sub end_optionhint { Line 388  sub end_optionhint {
  my $answer=&Apache::lonxml::get_param('answer',$parstack,$safeeval);   my $answer=&Apache::lonxml::get_param('answer',$parstack,$safeeval);
  if ($answer) {   if ($answer) {
     eval('%answer ='.$answer);      eval('%answer ='.$answer);
       &Apache::lonxml::debug("answwer hash");
     &Apache::lonhomework::showhash(%answer);      &Apache::lonhomework::showhash(%answer);
     my $response = $Apache::lonhomework::history{      my $response = $Apache::lonhomework::history{
             "resource.$part_id.submission"};              "resource.$part_id.submission"};
Line 421  sub end_optionhint { Line 424  sub end_optionhint {
      ($foilmatch    eq '-1' || $foilmatch    eq '1') ) {       ($foilmatch    eq '-1' || $foilmatch    eq '1') ) {
     push(@Apache::hint::which,$name);      push(@Apache::hint::which,$name);
  }   }
     } elsif ($target eq 'edit') { $result.=&Apache::edit::end_table; }      } elsif ($target eq 'edit') {
     if ($target eq 'edit') { $result.=&Apache::edit::end_table; }   $result.=&Apache::edit::end_row().&Apache::edit::end_table();
       }
     &Apache::response::end_hintresponse();      &Apache::response::end_hintresponse();
     return $result;      return $result;
 }  }
Line 486  sub end_radiobuttonhint { Line 490  sub end_radiobuttonhint {
  }   }
     }      }
  }   }
     } elsif ($target eq 'edit') { $result.=&Apache::edit::end_table; }      } elsif ($target eq 'edit') {
    $result.=&Apache::edit::end_row().&Apache::edit::end_table();
       }
     &Apache::response::end_hintresponse();      &Apache::response::end_hintresponse();
     return $result;      return $result;
 }  }

Removed from v.1.61  
changed lines
  Added in v.1.62


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