Diff for /loncom/xml/lonxml.pm between versions 1.32 and 1.33

version 1.32, 2000/11/06 14:32:35 version 1.33, 2000/11/06 16:22:59
Line 2 Line 2
 # XML Parser Module   # XML Parser Module 
 #  #
 # last modified 06/26/00 by Alexander Sakharuk  # last modified 06/26/00 by Alexander Sakharuk
   # 11/6 Gerd Kortemeyer
   
 package Apache::lonxml;   package Apache::lonxml; 
   use vars 
   qw(@pwd $outputstack $redirection $textredirection $on_offimport @extlinks);
 use strict;  use strict;
 use HTML::TokeParser;  use HTML::TokeParser;
 use Safe;  use Safe;
Line 26  use Apache::run; Line 28  use Apache::run;
 use Apache::londefdef;  use Apache::londefdef;
 use Apache::scripttag;  use Apache::scripttag;
 #==================================================   Main subroutine: xmlparse    #==================================================   Main subroutine: xmlparse  
 @Apache::lonxml::pwd=();  @pwd=();
 $Apache::lonxml::outputstack = '';  $outputstack = '';
 $Apache::lonxml::redirection = 1;  $redirection = 1;
 $Apache::lonxml::textredirection = 1;  $textredirection = 1;
 $Apache::lonxml::on_offimport = 0;  $on_offimport = 0;
   @extlinks=();
   
 sub xmlparse {  sub xmlparse {
   

Removed from v.1.32  
changed lines
  Added in v.1.33


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