Diff for /loncom/xml/lonxml.pm between versions 1.48 and 1.55

version 1.48, 2001/01/12 20:38:05 version 1.55, 2001/02/22 00:49:03
Line 4 Line 4
 # last modified 06/26/00 by Alexander Sakharuk  # last modified 06/26/00 by Alexander Sakharuk
 # 11/6 Gerd Kortemeyer  # 11/6 Gerd Kortemeyer
 # 6/1/1 Gerd Kortemeyer  # 6/1/1 Gerd Kortemeyer
   # 2/21 Guy
   
 package Apache::lonxml;   package Apache::lonxml; 
 use vars   use vars 
 qw(@pwd $outputstack $redirection $textredirection $on_offimport @extlinks);  qw(@pwd @outputstack $redirection $textredirection $import @extlinks);
 use strict;  use strict;
 use HTML::TokeParser;  use HTML::TokeParser;
 use Safe;  use Safe;
Line 31  sub printalltags { Line 32  sub printalltags {
     &Apache::lonxml::debug("$temp -- $Apache::lonxml::alltags{$temp}");      &Apache::lonxml::debug("$temp -- $Apache::lonxml::alltags{$temp}");
   }    }
 }  }
                                        
 use Apache::style;  use Apache::style;
 use Apache::lontexconvert;  use Apache::lontexconvert;
 use Apache::run;  use Apache::run;
Line 39  use Apache::londefdef; Line 39  use Apache::londefdef;
 use Apache::scripttag;  use Apache::scripttag;
 #==================================================   Main subroutine: xmlparse    #==================================================   Main subroutine: xmlparse  
 @pwd=();  @pwd=();
 $outputstack = '';  @outputstack = ();
 $redirection = 1;  $redirection = 0;
 $textredirection = 1;  $import = 1;
 $on_offimport = 0;  
 @extlinks=();  @extlinks=();
   
 sub xmlparse {  sub xmlparse {
   
  my ($target,$content_file_string,$safeinit,%style_for_target) = @_;   my ($target,$content_file_string,$safeinit,%style_for_target) = @_;
  if ($target eq 'meta') {   if ($target eq 'meta') {
    $Apache::lonxml::textredirection = 0;     &startredirection;
    $Apache::lonxml::on_offimport = 1;     $Apache::lonxml::import = 0;
  } elsif ($target eq 'grade') {   } elsif ($target eq 'grade') {
    $Apache::lonxml::textredirection = 0;     &startredirection;
    $Apache::lonxml::on_offimport = 0;     $Apache::lonxml::import = 1;
  } else {   } else {
    $Apache::lonxml::textredirection = 1;     $Apache::lonxml::redirection = 0;
    $Apache::lonxml::on_offimport = 0;     $Apache::lonxml::import = 1;
  }   }
  #&printalltags();   #&printalltags();
  my @pars = ();   my @pars = ();
Line 91  sub xmlparse { Line 90  sub xmlparse {
  while ( $#pars > -1 ) {   while ( $#pars > -1 ) {
    while ($token = $pars[$#pars]->get_token) {     while ($token = $pars[$#pars]->get_token) {
      if ($token->[0] eq 'T') {       if ($token->[0] eq 'T') {
        if ($Apache::lonxml::textredirection == 1) {$result=$token->[1];}         $result=$token->[1];
        # $finaloutput .= &Apache::run::evaluate($token->[1],$safeeval,'');  
      } elsif ($token->[0] eq 'S') {       } elsif ($token->[0] eq 'S') {
        # if ($target eq 'meta' and $token->[2]->{metaout} eq 'ON') {$Apache::lonxml::textredirection = 1;}  
        # add tag to stack             # add tag to stack    
        push (@stack,$token->[1]);         push (@stack,$token->[1]);
        # add parameters list to another stack         # add parameters list to another stack
        push (@parstack,&parstring($token));         push (@parstack,&parstring($token));
        &increasedepth($token);                &increasedepth($token);       
        if (exists $style_for_target{$token->[1]}) {         if (exists $style_for_target{$token->[1]}) {
      if ($Apache::lonxml::redirection) {
  if ($Apache::lonxml::redirection == 1) {     $Apache::lonxml::outputstack['-1'] .=  
    $finaloutput .= &recurse($style_for_target{$token->[1]},       &recurse($style_for_target{$token->[1]},$target,$safeeval,
     $target,$safeeval,\%style_for_target,        \%style_for_target,@parstack);
     @parstack);  
  } else {   } else {
    $Apache::lonxml::outputstack .=  &recurse($style_for_target{$token->[1]},     $finaloutput .= &recurse($style_for_target{$token->[1]},$target,
  $target,$safeeval,\%style_for_target,      $safeeval,\%style_for_target,@parstack);
  @parstack);  
  }   }
     
        } else {         } else {
  $result = &callsub("start_$token->[1]", $target, $token,\@parstack,   $result = &callsub("start_$token->[1]", $target, $token,\@parstack,
     \@pars, $safeeval, \%style_for_target);      \@pars, $safeeval, \%style_for_target);
        }                       }              
      } elsif ($token->[0] eq 'E')  {       } elsif ($token->[0] eq 'E')  {
        #if ($target eq 'meta') {$Apache::lonxml::textredirection = 0;}  
        #clear out any tags that didn't end         #clear out any tags that didn't end
        while ($token->[1] ne $stack[$#stack]          while ($token->[1] ne $stack[$#stack] && ($#stack > -1)) {
       && ($#stack > -1)) {   &Apache::lonxml::warning("Unbalanced tags in resource $stack['-1']");
  &Apache::lonxml::error("Unbalanced tags in resource $stack['-1']");     
  pop @stack;pop @parstack;&decreasedepth($token);   pop @stack;pop @parstack;&decreasedepth($token);
        }         }
                 
        if (exists $style_for_target{'/'."$token->[1]"}) {         if (exists $style_for_target{'/'."$token->[1]"}) {
    if ($Apache::lonxml::redirection) {
  if ($Apache::lonxml::redirection == 1) {     $Apache::lonxml::outputstack['-1'] .=  
  $finaloutput .= &recurse($style_for_target{'/'."$token->[1]"},       &recurse($style_for_target{'/'."$token->[1]"},
   $target,$safeeval,\%style_for_target,        $target,$safeeval,\%style_for_target,@parstack);
   @parstack);   } else {
         } else {     $finaloutput .= &recurse($style_for_target{'/'."$token->[1]"},
          $Apache::lonxml::outputstack .=  &recurse($style_for_target{'/'."$token->[1]"},      $target,$safeeval,\%style_for_target,
   $target,$safeeval,\%style_for_target,      @parstack);
   @parstack);   }
         }    
   
        } else {         } else {
  $result = &callsub("end_$token->[1]", $target, $token, \@parstack,   $result = &callsub("end_$token->[1]", $target, $token, \@parstack,
        \@pars,$safeeval, \%style_for_target);      \@pars,$safeeval, \%style_for_target);
        }         }
      }       }
        #evaluate variable refs in result
      if ($result ne "") {       if ($result ne "") {
        if ( $#parstack > -1 ) {         if ( $#parstack > -1 ) {
     if ($Apache::lonxml::redirection) {
  if ($Apache::lonxml::redirection == 1) {     $Apache::lonxml::outputstack['-1'] .= 
  $finaloutput .= &Apache::run::evaluate($result,$safeeval,       &Apache::run::evaluate($result,$safeeval,$parstack[$#parstack]);
  $parstack[$#parstack]);   } else {
         } else {     $finaloutput .= &Apache::run::evaluate($result,$safeeval,
          $Apache::lonxml::outputstack .= &Apache::run::evaluate($result,$safeeval,    $parstack[$#parstack]);
  $parstack[$#parstack]);   }
         }  
   
        } else {         } else {
  $finaloutput .= &Apache::run::evaluate($result,$safeeval,'');   $finaloutput .= &Apache::run::evaluate($result,$safeeval,'');
        }         }
        $result = '';         $result = '';
      } else {       } 
          $finaloutput .= $result;       if ($token->[0] eq 'E') { 
          pop @stack;pop @parstack;&decreasedepth($token);
      }       }
      if ($token->[0] eq 'E') { pop @stack;pop @parstack;&decreasedepth($token);}  
    }     }
    pop @pars;     pop @pars;
    pop @Apache::lonxml::pwd;     pop @Apache::lonxml::pwd;
Line 183  sub recurse { Line 173  sub recurse {
   while ( $#pat > -1 ) {    while ( $#pat > -1 ) {
     while  ($tokenpat = $pat[$#pat]->get_token) {      while  ($tokenpat = $pat[$#pat]->get_token) {
       if ($tokenpat->[0] eq 'T') {        if ($tokenpat->[0] eq 'T') {
   if ($Apache::lonxml::textredirection == 1) {$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));
Line 195  sub recurse { Line 185  sub recurse {
  #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 > -1)) {         && ($#innerstack > -1)) {
   &Apache::lonxml::error("Unbalanced tags in resource $innerstack['-1']");    &Apache::lonxml::warning("Unbalanced tags in resource $innerstack['-1']");
   pop @innerstack;pop @innerparstack;&decreasedepth($tokenpat);    pop @innerstack;pop @innerparstack;&decreasedepth($tokenpat);
  }   }
  $partstring = &callsub("end_$tokenpat->[1]",   $partstring = &callsub("end_$tokenpat->[1]",
Line 237  sub callsub { Line 227  sub callsub {
       my $sub1;        my $sub1;
     no strict 'refs';      no strict 'refs';
     if (my $space=$Apache::lonxml::alltags{$token->[1]}) {      if (my $space=$Apache::lonxml::alltags{$token->[1]}) {
       #&Apache::lonxml::debug("Calling sub $sub in $space<br>\n");        #&Apache::lonxml::debug("Calling sub $sub in $space<br />\n");
       $sub1="$space\:\:$sub";        $sub1="$space\:\:$sub";
       $Apache::lonxml::curdepth=join('_',@Apache::lonxml::depthcounter);        $Apache::lonxml::curdepth=join('_',@Apache::lonxml::depthcounter);
       $currentstring = &$sub1($target,$token,$parstack,$parser,        $currentstring = &$sub1($target,$token,$parstack,$parser,
      $safeeval,$style);       $safeeval,$style);
     } else {      } else {
       #&Apache::lonxml::debug("NOT Calling sub $sub in $space<br>\n");        #&Apache::lonxml::debug("NOT Calling sub $sub in $space<br />\n");
       if (defined($token->[4])) {        if (defined($token->[4])) {
  $currentstring = $token->[4];   $currentstring = $token->[4];
       } else {        } else {
Line 255  sub callsub { Line 245  sub callsub {
   return $currentstring;    return $currentstring;
 }  }
   
   sub startredirection {
     $Apache::lonxml::redirection++;
     push (@Apache::lonxml::outputstack, '');
   }
   
   sub endredirection {
     if (!$Apache::lonxml::redirection) {
       &Apache::lonxml::error("Endredirection was called, before a startredirection, perhaps you have unbalanced tags. Some debuggin information:".join ":",caller);
       return '';
     }
     $Apache::lonxml::redirection--;
     pop @Apache::lonxml::outputstack;
   }
   
 sub initdepth {  sub initdepth {
   @Apache::lonxml::depthcounter=();    @Apache::lonxml::depthcounter=();
   $Apache::lonxml::depth=-1;    $Apache::lonxml::depth=-1;
Line 270  sub increasedepth { Line 274  sub increasedepth {
   }    }
   my $curdepth=join('_',@Apache::lonxml::depthcounter);    my $curdepth=join('_',@Apache::lonxml::depthcounter);
   &Apache::lonxml::debug("s $Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1]\n");    &Apache::lonxml::debug("s $Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1]\n");
 #print "<br>s $Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1]\n";  #print "<br />s $Apache::lonxml::depth : $Apache::lonxml::olddepth : $curdepth : $token->[1]\n";
 }  }
   
 sub decreasedepth {  sub decreasedepth {
Line 281  sub decreasedepth { Line 285  sub decreasedepth {
     $Apache::lonxml::olddepth=$Apache::lonxml::depth+1;      $Apache::lonxml::olddepth=$Apache::lonxml::depth+1;
   }    }
   if (  $Apache::lonxml::depth < -1) {    if (  $Apache::lonxml::depth < -1) {
     &Apache::lonxml::error("Unbalanced tags in resource");         &Apache::lonxml::warning("Unbalanced tags in resource");   
     $Apache::lonxml::depth='-1';      $Apache::lonxml::depth='-1';
   }    }
   my $curdepth=join('_',@Apache::lonxml::depthcounter);    my $curdepth=join('_',@Apache::lonxml::depthcounter);
   &Apache::lonxml::debug("e $Apache::lonxml::depth : $Apache::lonxml::olddepth : $token->[1] : $curdepth\n");    &Apache::lonxml::debug("e $Apache::lonxml::depth : $Apache::lonxml::olddepth : $token->[1] : $curdepth\n");
 #print "<br>e $Apache::lonxml::depth : $Apache::lonxml::olddepth : $token->[1] : $curdepth\n";  #print "<br />e $Apache::lonxml::depth : $Apache::lonxml::olddepth : $token->[1] : $curdepth\n";
 }  }
   
 sub get_all_text {  sub get_all_text {
Line 296  sub get_all_text { Line 300  sub get_all_text {
  my $token;   my $token;
  my $result='';   my $result='';
  my $tag=substr($tag,1); #strip the / off the tag   my $tag=substr($tag,1); #strip the / off the tag
 # &Apache::lonxml::debug("have:$tag:");   #&Apache::lonxml::debug("have:$tag:");
  while (($depth >=0) && ($token = $pars->get_token)) {   while (($depth >=0) && ($token = $pars->get_token)) {
      #&Apache::lonxml::debug("token:$token->[0]:$depth:$token->[1]");
    if ($token->[0] eq 'T') {     if ($token->[0] eq 'T') {
      $result.=$token->[1];       $result.=$token->[1];
    } elsif ($token->[0] eq 'S') {     } elsif ($token->[0] eq 'S') {
Line 311  sub get_all_text { Line 316  sub get_all_text {
      }       }
    }     }
  }   }
   # &Apache::lonxml::debug("Exit:$result:");
  return $result   return $result
 }  }
   
Line 332  sub parstring { Line 338  sub parstring {
   map {    map {
     unless ($_=~/\W/) {      unless ($_=~/\W/) {
       my $val=$token->[2]->{$_};        my $val=$token->[2]->{$_};
       if ($val =~ m/^[\%\@]/) { $val="\\".$val; }        $val =~ s/([\%\@\\])/\\$1/g;
         #if ($val =~ m/^[\%\@]/) { $val="\\".$val; }
       $temp .= "my \$$_=\"$val\";"        $temp .= "my \$$_=\"$val\";"
     }      }
   } @{$token->[3]};    } @{$token->[3]};
Line 377  sub handler { Line 384  sub handler {
   
   $request->print('<body bgcolor="#FFFFFF">'."\n");    $request->print('<body bgcolor="#FFFFFF">'."\n");
   
   my $file = "/home/httpd/html".$request->uri;    my $file=&Apache::lonnet::filelocation("",$request->uri);
   my %mystyle;    my %mystyle;
   my $result = '';    my $result = ''; 
   $result = Apache::lonxml::xmlparse($target, &Apache::lonnet::getfile($file),'',%mystyle);    my $filecontents=&Apache::lonnet::getfile($file);
     if ($filecontents == -1) {
       &Apache::lonxml::error("<b> Unable to find <i>$file</i></b>");
       $filecontents='';
     } else {
       $result = &Apache::lonxml::xmlparse($target,$filecontents,'',%mystyle);
     }
   $request->print($result);    $request->print($result);
   
   
   $request->print('</body>');    $request->print('</body>');
   $request->print(&Apache::lontexconvert::footer());    $request->print(&Apache::lontexconvert::footer());
   writeallows($request->uri);    writeallows($request->uri);
Line 392  sub handler { Line 406  sub handler {
 $Apache::lonxml::debug=0;  $Apache::lonxml::debug=0;
 sub debug {  sub debug {
   if ($Apache::lonxml::debug eq 1) {    if ($Apache::lonxml::debug eq 1) {
     print "DEBUG:".$_[0]."<br>\n";      print "DEBUG:".$_[0]."<br />\n";
   }    }
 }  }
   
 sub error {  sub error {
 #  print "ERROR:".$_[0]."<br>\n";    if ($Apache::lonxml::debug eq 1) {
       print "<b>ERROR:</b>".$_[0]."<br />\n";
     } else {
       print "<b>An Error occured while processing this resource. The instructor has been notified.</b> <br />";
       #notify author
       &Apache::lonmsg::author_res_msg($ENV{'request.filename'},$_[0]);
       #notify course
       if ( $ENV{'request.course.id'} ) {
         my $users=$ENV{'course.'.$ENV{'request.course.id'}.'.comment.email'};
         foreach my $user (split /\,/, $users) {
    ($user,my $domain) = split /:/, $user;
    &Apache::lonmsg::user_normal_msg($user,$domain,"Error in $ENV{'request.filename'}",$_[0]);
         }
       }
       
       #FIXME probably shouldn't have me get everything forever.
       &Apache::lonmsg::user_normal_msg('albertel','msu',"Error in $ENV{'request.filename'}",$_[0]);
       #&Apache::lonmsg::user_normal_msg('albertel','103',"Error in $ENV{'request.filename'}",$_[0]);   
     }
 }  }
   
 sub warning {  sub warning {
   if ($Apache::lonxml::debug eq 1) {    if ($Apache::lonxml::debug eq 1) {
     print "WARNING:".$_[0]."<br>\n";      print "<b>W</b>ARNING<b>:</b>".$_[0]."<br />\n";
   }    }
 }  }
   
 1;  1;
 __END__  __END__
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   

Removed from v.1.48  
changed lines
  Added in v.1.55


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