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, 8 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

    1: # The LearningOnline Network with CAPA
    2: # caparesponse definition
    3: 
    4: package Apache::caparesponse;
    5: use strict;
    6: use capa;
    7: 
    8: sub BEGIN {
    9:   &Apache::lonxml::register('Apache::caparesponse',('caparesponse'));
   10: }
   11: 
   12: sub start_caparesponse {
   13:   #print "\n<br>\nreal caparesponse<br>\n";
   14: }
   15: 
   16: sub end_caparesponse {
   17:   #print "\n<br>\nreal end caparesponse<br>\n";
   18: }
   19: 
   20: 1;
   21: __END__
   22:  

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