Diff for /loncom/xml/londefdef.pm between versions 1.6 and 1.9

version 1.6, 2000/10/26 14:01:40 version 1.9, 2000/11/06 14:29:53
Line 9  use strict; Line 9  use strict;
 use Apache::lonxml;  use Apache::lonxml;
   
 sub BEGIN {  sub BEGIN {
     &Apache::lonxml::register('Apache::londefdef',('m','html','head','map','applet','select','option','input','textarea','form','meta','title','body','center','b','strong','table','dt','h1','h2','h3','h4','h5','h6','cite','i','address','dd','dl','dir','ol','ul','menu','dfn','kbd','tt','code','em','q','p','br','big','small','basefont','font','s','sub','strike','sup','hr','a','li','u'));      &Apache::lonxml::register('Apache::londefdef',('m','html','head','map','applet','select','option','input','textarea','form','meta','title','body','center','b','strong','table','dt','h1','h2','h3','h4','h5','h6','cite','i','address','dd','dl','dir','ol','ul','menu','dfn','kbd','tt','code','em','q','p','br','big','small','basefont','font','s','sub','strike','sup','hr','a','li','u','output'));
 }  }
   
 #===================================================================== TAG SUBROUTINES  #===================================================================== TAG SUBROUTINES
   #-- <output>
           sub start_output {
        my ($target,$token,$parstack,$parser) = @_;
               $Apache::lonxml::textredirection = 1; 
               my $result = '';
               return $result;
    }
           sub end_output {
        my ($target,$token,$parstack,$parser) = @_;
               $Apache::lonxml::textredirection = 0;             
               my $result = '';
               return $result;
    }
 #-- <m> tag  #-- <m> tag
         sub start_m {          sub start_m {
     my ($target,$token,$parstack,$parser) = @_;      my ($target,$token,$parstack,$parser) = @_;
             my $currentstring = '';              my $currentstring = '';
             if ($target eq 'meta') {  
               my $inside = &Apache::lonxml::get_all_text("/m",$$parser[$#$parser]);   
       $currentstring ='';  
     }  
             if ($target eq 'web') {              if ($target eq 'web') {
  my $inside = &Apache::lonxml::get_all_text("/m",$$parser[$#$parser]);    my $inside = &Apache::lonxml::get_all_text("/m",$$parser[$#$parser]); 
                 $inside ='\\documentstyle{article}'.$inside;                  $inside ='\\documentstyle{article}'.$inside;
Line 29  sub BEGIN { Line 38  sub BEGIN {
 #          &Apache::lonxml::debug($currentstring);  #          &Apache::lonxml::debug($currentstring);
   
     } elsif ($target eq 'tex') {      } elsif ($target eq 'tex') {
               $currentstring = "\$";                $currentstring = "";
             }              }
    return $currentstring;     return $currentstring;
  }   }
Line 38  sub BEGIN { Line 47  sub BEGIN {
             my $currentstring = '';              my $currentstring = '';
             if ($target eq 'web') {              if ($target eq 'web') {
             } elsif ($target eq 'tex') {              } elsif ($target eq 'tex') {
               $currentstring = "\$";                $currentstring = "";
     } elsif ($target eq 'meta') {      } elsif ($target eq 'meta') {
             }              }
    return $currentstring;     return $currentstring;

Removed from v.1.6  
changed lines
  Added in v.1.9


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