--- loncom/xml/run.pm 2002/05/03 22:30:54 1.27 +++ loncom/xml/run.pm 2002/05/23 21:15:34 1.29 @@ -1,6 +1,6 @@ package Apache::run; # -# $Id: run.pm,v 1.27 2002/05/03 22:30:54 albertel Exp $ +# $Id: run.pm,v 1.29 2002/05/23 21:15:34 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -43,8 +43,12 @@ sub evaluate { if (!$Apache::lonxml::evaluate) { return $expression; } my $result = ''; $@=''; + if ($Apache::lonxml::request) { + $Apache::lonxml::request->hard_timeout("Apache::run::run, evaluation $code"); + } $safeeval->reval('{'.$decls.';$_=<<\'EXPRESSION\';'."\n".$expression. "\n".'EXPRESSION'."\n".$EVALUATE_STRING.'}'); + if ($Apache::lonxml::request) { $Apache::lonxml::request->kill_timeout; } # $safeeval->reval('{'.$decls.';<< &evaluate(q|'.$expression.'|);}'); my $error=$@; if ($@ eq '') { @@ -62,7 +66,11 @@ sub run { my ($code,$safeeval,$hideerrors) = @_; # print "inside run\n"; $@=''; + if ($Apache::lonxml::request) { + $Apache::lonxml::request->hard_timeout("Apache::run::run, evaluation $code"); + } my (@result)=$safeeval->reval($code); + if ($Apache::lonxml::request) { $Apache::lonxml::request->kill_timeout; } my $error=$@; if ($error ne '' && !$hideerrors) { &Apache::lonxml::error('
'.&HTML::Entities::encode($error).