version 1.18, 2001/01/10 21:49:43
|
version 1.19, 2001/01/19 21:44:51
|
Line 7 package Apache::response;
|
Line 7 package Apache::response;
|
use strict; |
use strict; |
|
|
sub BEGIN { |
sub BEGIN { |
&Apache::lonxml::register('Apache::response',('responseparam','caparesponse','numericalresponse','radiobuttonresponse')); |
&Apache::lonxml::register('Apache::response',('responseparam','caparesponse','numericalresponse','radiobuttonresponse','optionresponse')); |
} |
} |
|
|
sub start_response { |
sub start_response { |
Line 109 sub start_radiobuttonresponse {
|
Line 109 sub start_radiobuttonresponse {
|
return ""; |
return ""; |
} |
} |
|
|
|
sub start_optionresponse { |
|
require Apache::optionresponse; |
|
import Apache::optionresponse; |
|
my ($target,$token,$parstack,$parser,$safeeval,$style)=@_; |
|
Apache::optionresponse::start_optionresponse($target,$token,$parstack,$parser,$safeeval,$style);; |
|
return ""; |
|
} |
|
|
sub start_responseparam { |
sub start_responseparam { |
my ($target,$token,$parstack,$parser,$safeeval)=@_; |
my ($target,$token,$parstack,$parser,$safeeval)=@_; |
if ($target eq 'grade') { |
if ($target eq 'grade') { |