Diff for /loncom/homework/response.pm between versions 1.54 and 1.55

version 1.54, 2001/12/07 23:59:08 version 1.55, 2002/01/07 18:03:03
Line 33  package Apache::response; Line 33  package Apache::response;
 use strict;  use strict;
   
 sub BEGIN {  sub BEGIN {
   &Apache::lonxml::register('Apache::response',('responseparam','caparesponse','numericalresponse','formularesponse','stringresponse','radiobuttonresponse','optionresponse','imageresponse','essayresponse','dataresponse'));    &Apache::lonxml::register('Apache::response',('responseparam','parameter','caparesponse','numericalresponse','formularesponse','stringresponse','radiobuttonresponse','optionresponse','imageresponse','essayresponse','dataresponse'));
 }  }
   
 sub start_response {  sub start_response {
Line 365  sub end_responseparam { Line 365  sub end_responseparam {
   return '';    return '';
 }  }
   
   sub start_parameter {
     my $result = &start_responseparam(@_);
     return $result;
   }
   
   sub end_parameter {
     my $result = &end_responseparam(@_);
     return $result;
   }
   
 sub setup_params {  sub setup_params {
   my ($tag) = @_;    my ($tag) = @_;
   

Removed from v.1.54  
changed lines
  Added in v.1.55


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