Diff for /loncom/homework/response.pm between versions 1.17 and 1.22

version 1.17, 2001/01/08 21:52:04 version 1.22, 2001/02/19 20:37:43
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','imageresponse'));
 }  }
   
 sub start_response {  sub start_response {
Line 96  sub start_caparesponse { Line 96  sub start_caparesponse {
   require Apache::caparesponse;     require Apache::caparesponse; 
   import Apache::caparesponse;     import Apache::caparesponse; 
   my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;    my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
 #  print "\n<br>\nsimple caparesponse\n";  #  print "\n<br />\nsimple caparesponse\n";
   Apache::caparesponse::start_caparesponse($target,$token,$parstack,$parser,$safeeval,$style);;    Apache::caparesponse::start_caparesponse($target,$token,$parstack,$parser,$safeeval,$style);;
   return "";    return "";
 }  }
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_imageresponse {
     require Apache::imageresponse; 
     import Apache::imageresponse; 
     my ($target,$token,$parstack,$parser,$safeeval,$style)=@_;
     Apache::imageresponse::start_imageresponse($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' || $target eq 'web') {
     my $args='';      my $args='';
     if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }      if ( $#$parstack > -1 ) { $args=$$parstack[$#$parstack]; }
     my $default = &Apache::run::run("{$args;".'return $default}',$safeeval);      my $default = &Apache::run::run("{$args;".'return $default}',$safeeval);
Line 119  sub start_responseparam { Line 135  sub start_responseparam {
     &Apache::lonxml::debug("looking for resource.$Apache::inputtags::part.$name");      &Apache::lonxml::debug("looking for resource.$Apache::inputtags::part.$name");
     my $value = &Apache::lonnet::EXT("resource.$Apache::inputtags::part.$name");      my $value = &Apache::lonnet::EXT("resource.$Apache::inputtags::part.$name");
     &Apache::lonxml::debug("$name has value :$value: and default :$default:");      &Apache::lonxml::debug("$name has value :$value: and default :$default:");
     if ($value eq '') {      if ($value eq '' || $value eq 'con_lost') {
       &Apache::lonxml::debug("defaullting");        &Apache::lonxml::debug("defaulting");
       $Apache::inputtags::params{$name}=$default;        $Apache::inputtags::params{$name}=$default;
     } else {      } else {
       &Apache::lonxml::debug("using value");        &Apache::lonxml::debug("using value");

Removed from v.1.17  
changed lines
  Added in v.1.22


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