version 1.9, 2000/07/05 18:04:45
|
version 1.12, 2000/07/20 15:37:54
|
Line 18 sub register {
|
Line 18 sub register {
|
$Apache::lonxml::alltags{$temptag}=$space; |
$Apache::lonxml::alltags{$temptag}=$space; |
} |
} |
} |
} |
|
|
use Apache::style; |
use Apache::style; |
use Apache::lontexconvert; |
use Apache::lontexconvert; |
use Apache::run; |
use Apache::run; |
Line 75 sub xmlparse {
|
Line 75 sub xmlparse {
|
push (@innerstack,$tokenpat->[1]); |
push (@innerstack,$tokenpat->[1]); |
push (@innerparstack,&parstring($tokenpat)); |
push (@innerparstack,&parstring($tokenpat)); |
$partstring = &callsub("start_$tokenpat->[1]", |
$partstring = &callsub("start_$tokenpat->[1]", |
$target, $tokenpat, \@innerparstack) |
$target, $tokenpat, \@innerparstack, |
|
$pat, $safeeval); |
} elsif ($tokenpat->[0] eq 'E') { |
} elsif ($tokenpat->[0] eq 'E') { |
#clear out any tags that didn't end |
#clear out any tags that didn't end |
while ($tokenpat->[1] ne $innerstack[$#innerstack] |
while ($tokenpat->[1] ne $innerstack[$#innerstack] |
&& ($#innerstack > 0)) {pop @innerstack;pop @innerparstack;} |
&& ($#innerstack > 0)) {pop @innerstack;pop @innerparstack;} |
$partstring = &callsub("end_$tokenpat->[1]", |
$partstring = &callsub("end_$tokenpat->[1]", |
$target, $tokenpat, \@innerparstack) |
$target, $tokenpat, \@innerparstack, |
|
$pat, $safeeval); |
} |
} |
#pass both the variable to the style tag, and the tag we |
#pass both the variable to the style tag, and the tag we |
#are processing inside the <definedtag> |
#are processing inside the <definedtag> |
Line 90 sub xmlparse {
|
Line 92 sub xmlparse {
|
if ($tokenpat->[0] eq 'E') { pop @innerstack;pop @innerparstack; } |
if ($tokenpat->[0] eq 'E') { pop @innerstack;pop @innerparstack; } |
} |
} |
} else { |
} else { |
my $result = &callsub("start_$token->[1]", $target, $token, \@parstack); |
my $result = &callsub("start_$token->[1]", $target, $token,\@parstack, |
|
$pars, $safeeval); |
$finaloutput .= &Apache::run::evaluate($result,$safeeval, |
$finaloutput .= &Apache::run::evaluate($result,$safeeval, |
$parstack[$#parstack]); |
$parstack[$#parstack]); |
} |
} |
Line 103 sub xmlparse {
|
Line 106 sub xmlparse {
|
my @innerstack = (); |
my @innerstack = (); |
my @innerparstack = (); |
my @innerparstack = (); |
$newarg = $style_for_target{'/'."$token->[1]"}; |
$newarg = $style_for_target{'/'."$token->[1]"}; |
|
|
|
# print "qqq: $token->[1],$newarg\n"; |
|
|
my $pat = HTML::TokeParser->new(\$newarg); |
my $pat = HTML::TokeParser->new(\$newarg); |
my $tokenpat; |
my $tokenpat; |
my $partstring = ''; |
my $partstring = ''; |
|
|
while ($tokenpat = $pat->get_token) { |
while ($tokenpat = $pat->get_token) { |
if ($tokenpat->[0] eq 'T') { |
if ($tokenpat->[0] eq 'T') { |
$partstring .= $tokenpat->[1]; |
$partstring = $tokenpat->[1]; |
} elsif ($tokenpat->[0] eq 'S') { |
} elsif ($tokenpat->[0] eq 'S') { |
push (@innerstack,$tokenpat->[1]); |
push (@innerstack,$tokenpat->[1]); |
push (@innerparstack,&parstring($tokenpat)); |
push (@innerparstack,&parstring($tokenpat)); |
$partstring = &callsub("start_$tokenpat->[1]", |
$partstring = &callsub("start_$tokenpat->[1]", |
$target, $tokenpat, \@innerparstack) |
$target, $tokenpat, \@innerparstack, |
|
$pat, $safeeval); |
} elsif ($tokenpat->[0] eq 'E') { |
} elsif ($tokenpat->[0] eq 'E') { |
#clear out any tags that didn't end |
#clear out any tags that didn't end |
while ($tokenpat->[1] ne $innerstack[$#innerstack] |
while ($tokenpat->[1] ne $innerstack[$#innerstack] |
&& ($#innerstack > 0)) {pop @innerstack;pop @innerparstack;} |
&& ($#innerstack > 0)) {pop @innerstack;pop @innerparstack;} |
$partstring = &callsub("end_$tokenpat->[1]", |
$partstring = &callsub("end_$tokenpat->[1]", |
$target, $tokenpat, \@innerparstack) |
$target, $tokenpat, \@innerparstack, |
|
$pat, $safeeval); |
} |
} |
#pass both the variable to the style tag, and the tag we |
#pass both the variable to the style tag, and the tag we |
#are processing inside the <definedtag> |
#are processing inside the <definedtag> |
Line 129 sub xmlparse {
|
Line 137 sub xmlparse {
|
if ($tokenpat->[0] eq 'E') { pop @innerstack;pop @innerparstack; } |
if ($tokenpat->[0] eq 'E') { pop @innerstack;pop @innerparstack; } |
} |
} |
} else { |
} else { |
my $result = &callsub("start_$token->[1]", $target, $token, \@parstack); |
my $result = &callsub("end_$token->[1]", $target, $token, \@parstack, |
|
$pars,$safeeval); |
$finaloutput .= &Apache::run::evaluate($result,$safeeval, |
$finaloutput .= &Apache::run::evaluate($result,$safeeval, |
$parstack[$#parstack]); |
$parstack[$#parstack]); |
} |
} |
Line 141 sub xmlparse {
|
Line 150 sub xmlparse {
|
} |
} |
|
|
sub callsub { |
sub callsub { |
my ($sub,$target,$token,@parstack)=@_; |
my ($sub,$target,$token,$parstack,$parser,$safeeval)=@_; |
my $currentstring=''; |
my $currentstring=''; |
{ |
{ |
no strict 'refs'; |
no strict 'refs'; |
if (my $space=$Apache::lonxml::alltags{$token->[1]}) { |
if (my $space=$Apache::lonxml::alltags{$token->[1]}) { |
#print "Calling sub $sub in $space \n"; |
#print "Calling sub $sub in $space \n"; |
$sub="$space\:\:$sub"; |
$sub="$space\:\:$sub"; |
$currentstring = &$sub($target,$token,\@parstack); |
$currentstring = &$sub($target,$token,\@$parstack,$parser,$safeeval); |
} else { |
} else { |
#print "NOT Calling sub $sub\n"; |
#print "NOT Calling sub $sub\n"; |
if (defined($token->[4])) { |
if (defined($token->[4])) { |
Line 170 sub parstring {
|
Line 179 sub parstring {
|
} |
} |
1; |
1; |
__END__ |
__END__ |
|
|
|
|
|
|
|
|
|
|