Diff for /loncom/xml/londefdef.pm between versions 1.106.2.2 and 1.107

version 1.106.2.2, 2003/03/17 17:18:50 version 1.107, 2003/01/16 02:55:05
Line 52  use Image::Magick; Line 52  use Image::Magick;
   
 BEGIN {  BEGIN {
   
     &Apache::lonxml::register('Apache::londefdef',('a','abbr','acronym','address','allow','applet','area','b','base','basefont','bgo','bgsound','big','blink','blockquote','blankspace','body','br','button','caption','center','cite','code','col','colgroup','dd','del','dfn','dir','div','dl','dt','em','embed','externallink','fieldset','font','form','frame','frameset','h1','h2','h3','h4','h5','h6','head','hr','html','i','iframe','img','input','ins','insert','isindex','kbd','keygen','label','layer','legend','li','link','m','map','marquee','menu','meta','multicol','nobr','noembed','noframes','nolayer','noscript','object','ol','optgroup','option','output','p','param','pre','q','s','samp','select','server','small','spacer','span','strike','strong','sub','sup','table','tbody','td','textarea','tfoot','th','thead','title','tr','tt','tthoption','u','ul','var','wbr'));      &Apache::lonxml::register('Apache::londefdef',('a','abbr','acronym','address','allow','applet','area','b','base','basefont','bgo','bgsound','big','blink','blockquote','blankspace','body','br','button','caption','center','cite','code','col','colgroup','dd','del','dfn','dir','div','dl','dt','em','embed','externallink','fieldset','font','form','frame','frameset','h1','h2','h3','h4','h5','h6','head','hr','html','i','iframe','img','input','ins','insert','isindex','kbd','keygen','label','layer','legend','li','link','m','map','marquee','menu','meta','multicol','nobr','noembed','noframes','nolayer','noscript','object','ol','optgroup','option','output','p','param','pre','q','s','samp','select','server','small','spacer','span','strike','strong','sub','sup','table','tbody','td','textarea','tfoot','th','thead','title','tr','tt','u','ul','var','wbr'));
   
 }  }
   
Line 108  sub end_m { Line 108  sub end_m {
   }    }
   return $currentstring;    return $currentstring;
 }  }
   
 sub start_tthoption {  
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_;  
   my $result;  
   if ($target eq 'web') {  
       my $inside = &Apache::lonxml::get_all_text("/tthoption",$parser);  
       $inside=~s/^\s*//;  
       if ($ENV{'browser.mathml'}) {  
   &tth::ttmoptions($inside);  
       } else {  
   &tth::tthoptions($inside);  
       }  
   }  
   return $result;  
 }  
   
 sub end_tthoption {  
   my ($target,$token) = @_;  
   my $result;  
   return $result;  
 }  
   
 #-- <html> tag      #-- <html> tag    
 sub start_html {  sub start_html {
     my ($target,$token) = @_;      my ($target,$token) = @_;

Removed from v.1.106.2.2  
changed lines
  Added in v.1.107


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