version 1.97, 2001/06/26 21:45:28
|
version 1.101, 2001/07/12 15:26:03
|
Line 70 $evaluate = 1;
|
Line 70 $evaluate = 1;
|
# data structure for eidt mode, determines what tags can go into what other tags |
# data structure for eidt mode, determines what tags can go into what other tags |
%insertlist=(); |
%insertlist=(); |
|
|
#stores the list of active tag namespaces |
# stores the list of active tag namespaces |
@namespace=(); |
@namespace=(); |
|
|
|
# has the dynamic menu been updated to know about this resource |
|
$Apache::lonxml::registered=0; |
|
|
sub xmlbegin { |
sub xmlbegin { |
my $output=''; |
my $output=''; |
if ($ENV{'browser.mathml'}) { |
if ($ENV{'browser.mathml'}) { |
Line 102 sub fontsettings() {
|
Line 105 sub fontsettings() {
|
} |
} |
|
|
sub registerurl { |
sub registerurl { |
if ($ENV{'REQUEST_URI'}!~/^\/(res\/)*adm\//) { |
my $forcereg=shift; |
|
if ($Apache::lonxml::registered) { return ''; } |
|
if (($ENV{'REQUEST_URI'}!~/^\/(res\/)*adm\//) || ($forcereg)) { |
my $hwkadd=''; |
my $hwkadd=''; |
if ($ENV{'REQUEST_URI'}=~/\.(problem|exam|quiz|assess|survey|form)$/) { |
if ($ENV{'REQUEST_URI'}=~/\.(problem|exam|quiz|assess|survey|form)$/) { |
if (&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) { |
if (&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) { |
Line 229 sub xmlparse {
|
Line 234 sub xmlparse {
|
&setup_globals($target); |
&setup_globals($target); |
#&printalltags(); |
#&printalltags(); |
my @pars = (); |
my @pars = (); |
@Apache::lonxml::pwd=(); |
|
my $pwd=$ENV{'request.filename'}; |
my $pwd=$ENV{'request.filename'}; |
$pwd =~ s:/[^/]*$::; |
$pwd =~ s:/[^/]*$::; |
&newparser(\@pars,\$content_file_string,$pwd); |
&newparser(\@pars,\$content_file_string,$pwd); |
my $currentstring = ''; |
|
my $finaloutput = ''; |
|
my $newarg = ''; |
|
my $result; |
|
|
|
my $safeeval = new Safe; |
my $safeeval = new Safe; |
my $safehole = new Safe::Hole; |
my $safehole = new Safe::Hole; |
Line 248 sub xmlparse {
|
Line 248 sub xmlparse {
|
my @stack = (); |
my @stack = (); |
my @parstack = (); |
my @parstack = (); |
&initdepth; |
&initdepth; |
my $token; |
|
while ( $#pars > -1 ) { |
|
while ($token = $pars[$#pars]->get_token) { |
|
if (($token->[0] eq 'T') || ($token->[0] eq 'C') || ($token->[0] eq 'D') ) { |
|
if ($metamode<1) { $result=$token->[1]; } |
|
} elsif ($token->[0] eq 'PI') { |
|
if ($metamode<1) { $result=$token->[2]; } |
|
} elsif ($token->[0] eq 'S') { |
|
# add tag to stack |
|
push (@stack,$token->[1]); |
|
# add parameters list to another stack |
|
push (@parstack,&parstring($token)); |
|
&increasedepth($token); |
|
if (exists $style_for_target{$token->[1]}) { |
|
if ($Apache::lonxml::redirection) { |
|
$Apache::lonxml::outputstack['-1'] .= |
|
&recurse($style_for_target{$token->[1]},$target,$safeeval, |
|
\%style_for_target,@parstack); |
|
} else { |
|
$finaloutput .= &recurse($style_for_target{$token->[1]},$target, |
|
$safeeval,\%style_for_target,@parstack); |
|
} |
|
} else { |
|
$result = &callsub("start_$token->[1]", $target, $token, \@stack, |
|
\@parstack, \@pars, $safeeval, \%style_for_target); |
|
} |
|
} elsif ($token->[0] eq 'E') { |
|
#clear out any tags that didn't end |
|
while ($token->[1] ne $stack[$#stack] && ($#stack > -1)) { |
|
&Apache::lonxml::warning("Unbalanced tags in resource $stack['-1']"); |
|
&end_tag(\@stack,\@parstack,$token); |
|
} |
|
|
|
if (exists $style_for_target{'/'."$token->[1]"}) { |
|
if ($Apache::lonxml::redirection) { |
|
$Apache::lonxml::outputstack['-1'] .= |
|
&recurse($style_for_target{'/'."$token->[1]"}, |
|
$target,$safeeval,\%style_for_target,@parstack); |
|
} else { |
|
$finaloutput .= &recurse($style_for_target{'/'."$token->[1]"}, |
|
$target,$safeeval,\%style_for_target, |
|
@parstack); |
|
} |
|
|
|
} else { |
my $finaloutput = &inner_xmlparse($target,\@stack,\@parstack,\@pars, |
$result = &callsub("end_$token->[1]", $target, $token, \@stack, |
$safeeval,\%style_for_target); |
\@parstack, \@pars,$safeeval, \%style_for_target); |
|
} |
|
} else { |
|
&Apache::lonxml::error("Unknown token event :$token->[0]:$token->[1]:"); |
|
} |
|
#evaluate variable refs in result |
|
if ($result ne "") { |
|
if ( $#parstack > -1 ) { |
|
if ($Apache::lonxml::redirection) { |
|
$Apache::lonxml::outputstack['-1'] .= |
|
&Apache::run::evaluate($result,$safeeval,$parstack[$#parstack]); |
|
} else { |
|
$finaloutput .= &Apache::run::evaluate($result,$safeeval, |
|
$parstack[$#parstack]); |
|
} |
|
} else { |
|
$finaloutput .= &Apache::run::evaluate($result,$safeeval,''); |
|
} |
|
$result = ''; |
|
} |
|
if ($token->[0] eq 'E') { |
|
&end_tag(\@stack,\@parstack,$token); |
|
} |
|
} |
|
pop @pars; |
|
pop @Apache::lonxml::pwd; |
|
} |
|
|
|
# if ($target eq 'meta') { |
return $finaloutput; |
# $finaloutput.=&endredirection; |
} |
# } |
|
|
|
if (($ENV{'QUERY_STRING'}) && ($target eq 'web')) { |
sub inner_xmlparse { |
$finaloutput=&afterburn($finaloutput); |
my ($target,$stack,$parstack,$pars,$safeeval,$style_for_target)=@_; |
|
&Apache::lonxml::debug('Reentrant parser starting, again?'); |
|
my $finaloutput = ''; |
|
my $result; |
|
my $token; |
|
while ( $#$pars > -1 ) { |
|
while ($token = $$pars['-1']->get_token) { |
|
if (($token->[0] eq 'T') || ($token->[0] eq 'C') || ($token->[0] eq 'D') ) { |
|
if ($metamode<1) { |
|
$result=$token->[1]; |
|
} |
|
} elsif ($token->[0] eq 'PI') { |
|
if ($metamode<1) { |
|
$result=$token->[2]; |
|
} |
|
} elsif ($token->[0] eq 'S') { |
|
# add tag to stack |
|
push (@$stack,$token->[1]); |
|
# add parameters list to another stack |
|
push (@$parstack,&parstring($token)); |
|
&increasedepth($token); |
|
if (exists $$style_for_target{$token->[1]}) { |
|
if ($Apache::lonxml::redirection) { |
|
$Apache::lonxml::outputstack['-1'] .= |
|
&recurse($$style_for_target{$token->[1]},$target,$safeeval, |
|
$style_for_target,@$parstack); |
|
} else { |
|
$finaloutput .= &recurse($$style_for_target{$token->[1]},$target, |
|
$safeeval,$style_for_target,@$parstack); |
|
} |
|
} else { |
|
$result = &callsub("start_$token->[1]", $target, $token, $stack, |
|
$parstack, $pars, $safeeval, $style_for_target); |
|
} |
|
} elsif ($token->[0] eq 'E') { |
|
#clear out any tags that didn't end |
|
while ($token->[1] ne $$stack['-1'] && ($#$stack > -1)) { |
|
&Apache::lonxml::warning("Unbalanced tags in resource $$stack['-1']"); |
|
&end_tag($stack,$parstack,$token); |
|
} |
|
|
|
if (exists $$style_for_target{'/'."$token->[1]"}) { |
|
if ($Apache::lonxml::redirection) { |
|
$Apache::lonxml::outputstack['-1'] .= |
|
&recurse($$style_for_target{'/'."$token->[1]"}, |
|
$target,$safeeval,$style_for_target,@$parstack); |
|
} else { |
|
$finaloutput .= &recurse($$style_for_target{'/'."$token->[1]"}, |
|
$target,$safeeval,$style_for_target, |
|
@$parstack); |
|
} |
|
|
|
} else { |
|
$result = &callsub("end_$token->[1]", $target, $token, $stack, |
|
$parstack, $pars,$safeeval, $style_for_target); |
|
} |
|
} else { |
|
&Apache::lonxml::error("Unknown token event :$token->[0]:$token->[1]:"); |
|
} |
|
#evaluate variable refs in result |
|
if ($result ne "") { |
|
if ( $#$parstack > -1 ) { |
|
if ($Apache::lonxml::redirection) { |
|
$Apache::lonxml::outputstack['-1'] .= |
|
&Apache::run::evaluate($result,$safeeval,$$parstack['-1']); |
|
} else { |
|
$finaloutput .= &Apache::run::evaluate($result,$safeeval, |
|
$$parstack['-1']); |
|
} |
|
} else { |
|
$finaloutput .= &Apache::run::evaluate($result,$safeeval,''); |
|
} |
|
$result = ''; |
|
} |
|
if ($token->[0] eq 'E') { |
|
&end_tag($stack,$parstack,$token); |
|
} |
|
} |
|
pop @$pars; |
|
pop @Apache::lonxml::pwd; |
} |
} |
|
|
return $finaloutput; |
# if ($target eq 'meta') { |
} |
# $finaloutput.=&endredirection; |
|
# } |
|
|
|
if (($ENV{'QUERY_STRING'}) && ($target eq 'web')) { |
|
$finaloutput=&afterburn($finaloutput); |
|
} |
|
return $finaloutput; |
|
} |
|
|
sub recurse { |
sub recurse { |
|
|
my @innerstack = (); |
my @innerstack = (); |
my @innerparstack = (); |
my @innerparstack = (); |
my ($newarg,$target,$safeeval,$style_for_target,@parstack) = @_; |
my ($newarg,$target,$safeeval,$style_for_target,@parstack) = @_; |
Line 464 sub callsub {
|
Line 477 sub callsub {
|
|
|
sub setup_globals { |
sub setup_globals { |
my ($target)=@_; |
my ($target)=@_; |
|
$Apache::lonxml::registered = 0; |
|
@Apache::lonxml::pwd=(); |
if ($target eq 'meta') { |
if ($target eq 'meta') { |
$Apache::lonxml::redirection = 0; |
$Apache::lonxml::redirection = 0; |
$Apache::lonxml::metamode = 1; |
$Apache::lonxml::metamode = 1; |
Line 910 sub register_insert {
|
Line 925 sub register_insert {
|
$tagnum++; |
$tagnum++; |
} |
} |
} |
} |
|
|
|
sub description { |
|
my ($token)=@_; |
|
return $insertlist{$insertlist{"$token->[1].num"}.'.description'}; |
|
} |
1; |
1; |
__END__ |
__END__ |
|
|