Diff for /loncom/xml/londefdef.pm between versions 1.2 and 1.11

version 1.2, 2000/06/27 19:35:32 version 1.11, 2000/11/06 17:03:29
Line 2 Line 2
 # Tags Default Definition Module   # Tags Default Definition Module 
 #  #
 # last modified 06/26/00 by Alexander Sakharuk  # last modified 06/26/00 by Alexander Sakharuk
   # 11/6 Gerd Kortemeyer
   
 package Apache::londefdef;   package Apache::londefdef; 
   
 use strict;  use strict;
   use Apache::lonxml;
   
   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','output','param','applet','img','embed'));
   }
   
 #===================================================================== TAG SUBROUTINES  #===================================================================== TAG SUBROUTINES
 #----------------------------------------------------------------------------- <m> tag  #-- <output>
         sub start_mfirst {          sub start_output {
     my ($target,$token) = @_;       my ($target,$token,$parstack,$parser) = @_;
             my $currentstring = '';              $Apache::lonxml::textredirection = 1; 
             if ($target eq 'web') {              my $result = '';
               $currentstring = "\$out = lontexconvert::converted(\$in = '\\documentstyle{article}'.'\$'.\"";                   return $result;
     } elsif ($target eq 'tex') {   }
               $currentstring = "\$";          sub end_output {
             }       my ($target,$token,$parstack,$parser) = @_;
    return $currentstring;              $Apache::lonxml::textredirection = 0;             
               my $result = '';
               return $result;
  }   }
   #-- <m> tag
         sub start_m {          sub start_m {
     my ($target,$token) = @_;      my ($target,$token,$parstack,$parser) = @_;
             my $currentstring = '';              my $currentstring = '';
             if ($target eq 'web') {              if ($target eq 'web') {
               $currentstring = "\$out = lontexconvert::converted(\$in = '\$'.\"";        my $inside = &Apache::lonxml::get_all_text("/m",$$parser[$#$parser]); 
                   $inside ='\\documentstyle{article}'.$inside;
   #          &Apache::lonxml::debug($inside);
                   $currentstring = &Apache::lontexconvert::converted(\$inside);
   #          &Apache::lonxml::debug($currentstring);
   
     } elsif ($target eq 'tex') {      } elsif ($target eq 'tex') {
               $currentstring = "\$";                $currentstring = "";
             }              }
    return $currentstring;     return $currentstring;
  }   }
Line 34  use strict; Line 47  use strict;
     my ($target,$token) = @_;      my ($target,$token) = @_;
             my $currentstring = '';              my $currentstring = '';
             if ($target eq 'web') {              if ($target eq 'web') {
               $currentstring = "\".'\$') ";      
             } elsif ($target eq 'tex') {              } elsif ($target eq 'tex') {
               $currentstring = "\$";                $currentstring = "";
       } elsif ($target eq 'meta') {
             }              }
    return $currentstring;     return $currentstring;
  }   }
Line 830  use strict; Line 843  use strict;
     }       } 
            return $currentstring;             return $currentstring;
  }   }
           sub end_hr {
       my ($target,$token) = @_;
               my $currentstring = '';
               if ($target eq 'web') {
          $currentstring .= $token->[2];
       } elsif ($target eq 'tex') {
       } 
              return $currentstring;
    }
 #----------------------------------------------------------------------------- <a> tag  #----------------------------------------------------------------------------- <a> tag
         sub start_a {          sub start_a {
     my ($target,$token) = @_;      my ($target,$token) = @_;
Line 1069  use strict; Line 1091  use strict;
    return $currentstring;     return $currentstring;
  }   }
   
   # -------------------------------------------------------------------------- <img> tag
   
           sub start_img {
       my ($target,$token) = @_;
               $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=   
                                           $token->[2]->{'src'};
               my $currentstring = '';
               if ($target eq 'web') {
                 $currentstring = $token->[4];     
       } elsif ($target eq 'tex') {
                 $currentstring = " \\begin{figure} ";  
       } 
      return $currentstring;
    }
           sub end_img {
       my ($target,$token) = @_;
               my $currentstring = '';
               if ($target eq 'web') {
                 $currentstring = $token->[2];     
       } elsif ($target eq 'tex') {
                 $currentstring = " \\end{figure}";  
       } 
      return $currentstring;
    }
   # ----------------------------------------------------------------------- <applet> tag
   
           sub start_applet {
       my ($target,$token) = @_;
                 $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=   
                                           $token->[2]->{'code'};
                 $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=   
                                           $token->[2]->{'archive'};
               my $currentstring = '';
               if ($target eq 'web') {
                 $currentstring = $token->[4];     
       } elsif ($target eq 'tex') {
                 $currentstring = " \\begin{figure} ";  
       } 
      return $currentstring;
    }
           sub end_applet {
       my ($target,$token) = @_;
               my $currentstring = '';
               if ($target eq 'web') {
                 $currentstring = $token->[2];     
       } elsif ($target eq 'tex') {
                 $currentstring = " \\end{figure}";  
       } 
      return $currentstring;
    }
   
   # ------------------------------------------------------------------------ <embed> tag
   
           sub start_embed {
       my ($target,$token) = @_;
               $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=   
                                           $token->[2]->{'src'};
              my $currentstring = '';
               if ($target eq 'web') {
                 $currentstring = $token->[4];     
       } elsif ($target eq 'tex') {
                 $currentstring = " \\begin{figure} ";  
       } 
      return $currentstring;
    }
           sub end_embed {
       my ($target,$token) = @_;
               my $currentstring = '';
               if ($target eq 'web') {
                 $currentstring = $token->[2];     
       } elsif ($target eq 'tex') {
                 $currentstring = " \\end{figure}";  
       } 
      return $currentstring;
    }
   
   # ------------------------------------------------------------------------ <param> tag
   
           sub start_param {
       my ($target,$token) = @_;
       if ($token->[2]->{'name'} eq 'cabbase') {
                         $Apache::lonxml::extlinks[$#Apache::lonxml::extlinks+1]=
        $token->[2]->{'value'};
               }   
               $Apache::lonxml::extlinks[$Apache::lonxml::extlinks+1]=   
                                           $token->[2]->{'src'};
               my $currentstring = '';
               if ($target eq 'web') {
                 $currentstring = $token->[4];     
       } elsif ($target eq 'tex') {
                 $currentstring = " \\begin{figure} ";  
       } 
      return $currentstring;
    }
           sub end_param {
       my ($target,$token) = @_;
               my $currentstring = '';
               if ($target eq 'web') {
                 $currentstring = $token->[2];     
       } elsif ($target eq 'tex') {
                 $currentstring = " \\end{figure}";  
       } 
      return $currentstring;
    }
   
   # ------------------------------------------------------------------------ <allow> tag
   
           sub start_allow {
       my ($target,$token) = @_;
   
               $Apache::lonxml::extlinks[$Apache::lonxml::extlinks+1]=   
                                           $token->[2]->{'src'};
   
      return '';
    }
           sub end_allow {
      return '';
    }
   
   
 1;  1;
 __END__  __END__

Removed from v.1.2  
changed lines
  Added in v.1.11


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