Annotation of loncom/homework/radioresponse.pm, revision 1.1

1.1     ! albertel    1: # The LearningOnline Network with CAPA
        !             2: # mutliple choice style responses
        !             3: 
        !             4: # 11/23,11/24,11/28 Gerd Kortemeyer
        !             5: 
        !             6: package Apache::radioresponse;
        !             7: use strict;
        !             8: 
        !             9: sub BEGIN {
        !            10:   &Apache::lonxml::register('Apache::radioresponse',('radioresponse','foilgroup','foil'));
        !            11: }
        !            12: 
        !            13: sub start_radioresponse {
        !            14: }
        !            15: 
        !            16: sub end_radioresponse {
        !            17: }
        !            18: 
        !            19: sub start_foilgroup {
        !            20: }
        !            21: 
        !            22: sub end_foilgroup {
        !            23: }
        !            24: 
        !            25: sub start_foil {
        !            26: }
        !            27: 
        !            28: sub end_foil {
        !            29: }
        !            30: 
        !            31: 1;
        !            32: __END__
        !            33:  

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