Diff for /loncom/homework/response.pm between versions 1.15 and 1.16

version 1.15, 2000/12/28 00:17:32 version 1.16, 2001/01/08 21:46:56
Line 7  package Apache::response; Line 7  package Apache::response;
 use strict;  use strict;
   
 sub BEGIN {  sub BEGIN {
   &Apache::lonxml::register('Apache::response',('responseparam','caparesponse','numericalresponse'));    &Apache::lonxml::register('Apache::response',('responseparam','caparesponse','numericalresponse','radiobuttonresponse'));
 }  }
   
 sub start_response {  sub start_response {
Line 101  sub start_caparesponse { Line 101  sub start_caparesponse {
   return "";    return "";
 }  }
   
   sub start_radiobuttonresponse {
     require Apache::radiobuttonresponse; 
     import Apache::radiobuttonresponse; 
     my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
     Apache::caparesponse::start_radiobuttonresponse($target,$token,$parstack,$parser,$safeeval,$style);;
     return "";
   }
   
 sub start_responseparam {  sub start_responseparam {
   my ($target,$token,$parstack,$parser,$safeeval)=@_;    my ($target,$token,$parstack,$parser,$safeeval)=@_;
   if ($target eq 'grade') {    if ($target eq 'grade') {

Removed from v.1.15  
changed lines
  Added in v.1.16


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