Diff for /loncom/homework/response.pm between versions 1.22 and 1.23

version 1.22, 2001/02/19 20:37:43 version 1.23, 2001/04/04 19:17:50
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','radiobuttonresponse','optionresponse','imageresponse'));    &Apache::lonxml::register('Apache::response',('responseparam','caparesponse','numericalresponse','radiobuttonresponse','optionresponse','imageresponse','essayresponse'));
 }  }
   
 sub start_response {  sub start_response {
Line 88  sub start_numericalresponse { Line 88  sub start_numericalresponse {
   require Apache::caparesponse;     require Apache::caparesponse; 
   import Apache::caparesponse;     import Apache::caparesponse; 
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
   Apache::caparesponse::start_numericalresponse($target,$token,$parstack,$parser,$safeeval,$style);;    return &Apache::caparesponse::start_numericalresponse($target,$token,$parstack,$parser,$safeeval,$style);
   return "";  
 }  }
   
 sub start_caparesponse {  sub start_caparesponse {
Line 97  sub start_caparesponse { Line 96  sub start_caparesponse {
   import Apache::caparesponse;     import Apache::caparesponse; 
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
 #  print "\n<br />\nsimple caparesponse\n";  #  print "\n<br />\nsimple caparesponse\n";
   Apache::caparesponse::start_caparesponse($target,$token,$parstack,$parser,$safeeval,$style);;    return &Apache::caparesponse::start_caparesponse($target,$token,$parstack,$parser,$safeeval,$style);
   return "";  
 }  }
   
 sub start_radiobuttonresponse {  sub start_radiobuttonresponse {
   require Apache::radiobuttonresponse;     require Apache::radiobuttonresponse; 
   import Apache::radiobuttonresponse;     import Apache::radiobuttonresponse; 
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
   Apache::radiobuttonresponse::start_radiobuttonresponse($target,$token,$parstack,$parser,$safeeval,$style);;    return &Apache::radiobuttonresponse::start_radiobuttonresponse($target,$token,$parstack,$parser,$safeeval,$style);
   return "";  
 }  }
   
 sub start_optionresponse {  sub start_optionresponse {
   require Apache::optionresponse;     require Apache::optionresponse; 
   import Apache::optionresponse;     import Apache::optionresponse; 
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
   Apache::optionresponse::start_optionresponse($target,$token,$parstack,$parser,$safeeval,$style);;    return &Apache::optionresponse::start_optionresponse($target,$token,$parstack,$parser,$safeeval,$style);
   return "";  
 }  }
   
 sub start_imageresponse {  sub start_imageresponse {
   require Apache::imageresponse;     require Apache::imageresponse; 
   import Apache::imageresponse;     import Apache::imageresponse; 
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
   Apache::imageresponse::start_imageresponse($target,$token,$parstack,$parser,$safeeval,$style);;    return &Apache::imageresponse::start_imageresponse($target,$token,$parstack,$parser,$safeeval,$style);
   return "";  }
   
   sub start_essayresponse {
     require Apache::essayresponse; 
     import Apache::essayresponse; 
     my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
     return &Apache::essayresponse::start_essayresponse($target,$token,$parstack,$parser,$safeeval,$style);
 }  }
   
 sub start_responseparam {  sub start_responseparam {

Removed from v.1.22  
changed lines
  Added in v.1.23


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