File:  [LON-CAPA] / loncom / homework / response.pm
Revision 1.1: download - view: text, annotated - select for diffs
Thu Sep 14 20:56:25 2000 UTC (23 years, 7 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- used to define the response tags

# The LearningOnline Network with CAPA
# various response type definitons response definition

package Apache::response;
use strict;

sub BEGIN {
  &Apache::lonxml::register('Apache::response',('caparesponse'));
}

sub start_caparesponse {
  require Apache::caparesponse; 
  import Apache::caparesponse; 
  my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
  print "\n<br>\nsimple caparesponse\n";
  Apache::caparesponse::start_caparesponse($target,$token,$parstack,$parser,$safeeval,$style);;
}
sub end_caparesponse {
  print "\n<br>\nend caparesponse\n";
}
1;
__END__
 

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