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

version 1.11, 2000/11/06 17:03:29 version 1.13, 2000/11/30 11:44:50
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  # 11/6,11/30 Gerd Kortemeyer
   
 package Apache::londefdef;   package Apache::londefdef; 
   
Line 16  sub BEGIN { Line 16  sub BEGIN {
 #===================================================================== TAG SUBROUTINES  #===================================================================== TAG SUBROUTINES
 #-- <output>  #-- <output>
         sub start_output {          sub start_output {
      my ($target,$token,$parstack,$parser) = @_;       my ($target,$token) = @_;
             $Apache::lonxml::textredirection = 1;               $Apache::lonxml::textredirection = 1; 
             my $result = '';              my $result = '';
             return $result;              return $result;
  }   }
         sub end_output {          sub end_output {
      my ($target,$token,$parstack,$parser) = @_;       my ($target,$token) = @_;
             $Apache::lonxml::textredirection = 0;                           $Apache::lonxml::textredirection = 0;             
             my $result = '';              my $result = '';
             return $result;              return $result;
Line 213  sub BEGIN { Line 213  sub BEGIN {
             if ($target eq 'web') {              if ($target eq 'web') {
               $currentstring = $token->[4];                     $currentstring = $token->[4];     
     }      }
               if ($target eq 'meta') {
    $currentstring='<title>';
                   &start_output();
               }
    return $currentstring;     return $currentstring;
  }   }
         sub end_title {          sub end_title {
Line 220  sub BEGIN { Line 224  sub BEGIN {
             my $currentstring = '';              my $currentstring = '';
             if ($target eq 'web') {              if ($target eq 'web') {
               $currentstring = $token->[2];                    $currentstring = $token->[2];    
               }
               if ($target eq 'meta') {
                  &end_output();
                  $currentstring='</title>';
             }               } 
    return $currentstring;     return $currentstring;
  }   }
Line 230  sub BEGIN { Line 238  sub BEGIN {
             if ($target eq 'web') {              if ($target eq 'web') {
               $currentstring = $token->[4];                     $currentstring = $token->[4];     
     }      }
               if ($target eq 'meta') {
    unless ($token->[2]->{'http-equiv'}) {
       my $name=$token->[2]->{'name'};
                       $name=~tr/A-Z/a-z/;
                       $name=~s/\s/\_/g;
                       if ($name) {
                          $currentstring='<'.$name.'>'.
                                            $token->[2]->{'content'}.
                 '</'.$name.'>';
       }
                   }
       }
    return $currentstring;     return $currentstring;
  }   }
         sub end_meta {          sub end_meta {
Line 333  sub BEGIN { Line 353  sub BEGIN {
        $currentstring .= $token->[4];         $currentstring .= $token->[4];
     } elsif ($target eq 'tex') {      } elsif ($target eq 'tex') {
  $currentstring .= "\\chapter{ ";   $currentstring .= "\\chapter{ ";
     }       } elsif ($target eq 'meta') {
    $currentstring='<subject>';
                   &start_output();
               }
            return $currentstring;             return $currentstring;
  }   }
         sub end_h1 {          sub end_h1 {
Line 343  sub BEGIN { Line 366  sub BEGIN {
        $currentstring .= $token->[2];         $currentstring .= $token->[2];
     } elsif ($target eq 'tex') {      } elsif ($target eq 'tex') {
  $currentstring .= "}";   $currentstring .= "}";
     }       } elsif ($target eq 'meta') {
                   &end_output();
    $currentstring='</subject>';
               } 
            return $currentstring;             return $currentstring;
  }   }
 #---------------------------------------------------------------------------- <h2> tag  #---------------------------------------------------------------------------- <h2> tag

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


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