--- loncom/xml/lonxml.pm 2000/07/20 15:37:54 1.12 +++ loncom/xml/lonxml.pm 2000/08/02 16:47:53 1.14 @@ -8,6 +8,7 @@ package Apache::lonxml; use strict; use HTML::TokeParser; use Safe; +use Opcode; sub register { my $space; @@ -35,6 +36,7 @@ sub xmlparse { my $newarg = ''; my $safeeval = new Safe; $safeeval->permit("entereval"); + $safeeval->permit(":base_math"); #-------------------- Redefinition of the target in the case of compound target ($target, my @tenta) = split('&&',$target); @@ -76,26 +78,30 @@ sub xmlparse { push (@innerparstack,&parstring($tokenpat)); $partstring = &callsub("start_$tokenpat->[1]", $target, $tokenpat, \@innerparstack, - $pat, $safeeval); + $pat, $safeeval, \%style_for_target); } elsif ($tokenpat->[0] eq 'E') { #clear out any tags that didn't end while ($tokenpat->[1] ne $innerstack[$#innerstack] && ($#innerstack > 0)) {pop @innerstack;pop @innerparstack;} $partstring = &callsub("end_$tokenpat->[1]", $target, $tokenpat, \@innerparstack, - $pat, $safeeval); + $pat, $safeeval, \%style_for_target); } #pass both the variable to the style tag, and the tag we #are processing inside the - $finaloutput .= &Apache::run::evaluate($partstring,$safeeval, + if ($partstring ne "" ) { + $finaloutput .= &Apache::run::evaluate($partstring,$safeeval, $parstack[$#parstack].$innerparstack[$#innerparstack]); + } if ($tokenpat->[0] eq 'E') { pop @innerstack;pop @innerparstack; } } } else { my $result = &callsub("start_$token->[1]", $target, $token,\@parstack, - $pars, $safeeval); - $finaloutput .= &Apache::run::evaluate($result,$safeeval, - $parstack[$#parstack]); + $pars, $safeeval, \%style_for_target); + if ($result ne "" ) { + $finaloutput .= &Apache::run::evaluate($result,$safeeval, + $parstack[$#parstack]); + } } } elsif ($token->[0] eq 'E') { #clear out any tags that didn't end @@ -106,9 +112,6 @@ sub xmlparse { my @innerstack = (); my @innerparstack = (); $newarg = $style_for_target{'/'."$token->[1]"}; - -# print "qqq: $token->[1],$newarg\n"; - my $pat = HTML::TokeParser->new(\$newarg); my $tokenpat; my $partstring = ''; @@ -121,26 +124,30 @@ sub xmlparse { push (@innerparstack,&parstring($tokenpat)); $partstring = &callsub("start_$tokenpat->[1]", $target, $tokenpat, \@innerparstack, - $pat, $safeeval); + $pat, $safeeval, \%style_for_target); } elsif ($tokenpat->[0] eq 'E') { #clear out any tags that didn't end while ($tokenpat->[1] ne $innerstack[$#innerstack] && ($#innerstack > 0)) {pop @innerstack;pop @innerparstack;} $partstring = &callsub("end_$tokenpat->[1]", $target, $tokenpat, \@innerparstack, - $pat, $safeeval); + $pat, $safeeval, \%style_for_target); } #pass both the variable to the style tag, and the tag we #are processing inside the - $finaloutput .= &Apache::run::evaluate($partstring,$safeeval, + if ( $partstring ne "" ) { + $finaloutput .= &Apache::run::evaluate($partstring,$safeeval, $parstack[$#parstack].$innerparstack[$#innerparstack]); + } if ($tokenpat->[0] eq 'E') { pop @innerstack;pop @innerparstack; } } } else { my $result = &callsub("end_$token->[1]", $target, $token, \@parstack, - $pars,$safeeval); - $finaloutput .= &Apache::run::evaluate($result,$safeeval, - $parstack[$#parstack]); + $pars,$safeeval, \%style_for_target); + if ($result ne "") { + $finaloutput .= &Apache::run::evaluate($result,$safeeval, + $parstack[$#parstack]); + } } pop @stack; pop @parstack; @@ -150,14 +157,14 @@ sub xmlparse { } sub callsub { - my ($sub,$target,$token,$parstack,$parser,$safeeval)=@_; + my ($sub,$target,$token,$parstack,$parser,$safeeval,$style)=@_; my $currentstring=''; { no strict 'refs'; if (my $space=$Apache::lonxml::alltags{$token->[1]}) { #print "Calling sub $sub in $space \n"; $sub="$space\:\:$sub"; - $currentstring = &$sub($target,$token,\@$parstack,$parser,$safeeval); + $currentstring = &$sub($target,$token,\@$parstack,$parser,$safeeval,$style); } else { #print "NOT Calling sub $sub\n"; if (defined($token->[4])) {