File:  [LON-CAPA] / loncom / homework / Attic / radioresponse.pm
Revision 1.1: download - view: text, annotated - select for diffs
Mon Jan 8 13:58:46 2001 UTC (23 years, 4 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- new lectureonline response format

# The LearningOnline Network with CAPA
# mutliple choice style responses

# 11/23,11/24,11/28 Gerd Kortemeyer

package Apache::radioresponse;
use strict;

sub BEGIN {
  &Apache::lonxml::register('Apache::radioresponse',('radioresponse','foilgroup','foil'));
}

sub start_radioresponse {
}

sub end_radioresponse {
}

sub start_foilgroup {
}

sub end_foilgroup {
}

sub start_foil {
}

sub end_foil {
}

1;
__END__
 

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