File:  [LON-CAPA] / loncom / homework / caparesponse / caparesponse.pm
Revision 1.6: download - view: text, annotated - select for diffs
Tue Sep 19 19:10:01 2000 UTC (23 years, 7 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- moved $external::target to always be defined
- fixed scripttag to allow it be able to report results from scripts
- fixed caparesponse to not print out anything

# The LearningOnline Network with CAPA
# caparesponse definition

package Apache::caparesponse;
use strict;
use capa;

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

sub start_caparesponse {
  #print "\n<br>\nreal caparesponse<br>\n";
}

sub end_caparesponse {
  #print "\n<br>\nreal end caparesponse<br>\n";
}

1;
__END__
 

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