--- loncom/xml/londefdef.pm 2000/06/26 21:51:17 1.1 +++ loncom/xml/londefdef.pm 2001/02/01 19:10:11 1.20 @@ -2,31 +2,46 @@ # Tags Default Definition Module # # last modified 06/26/00 by Alexander Sakharuk +# 11/6,11/30,02/01/01 Gerd Kortemeyer -package Apache::londefaulttag; +package Apache::londefdef; use strict; +use Apache::lonxml; +sub BEGIN { + + &Apache::lonxml::register('Apache::londefdef',('m','html','head','map','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','tr','td','allow')); + +} #===================================================================== TAG SUBROUTINES -#----------------------------------------------------------------------------- tag - sub start_mfirst { - my ($target,$token) = @_; - my $currentstring = ''; - if ($target eq 'web') { - $currentstring = "\$out = lontexconvert::converted(\$in = '\\documentstyle{article}'.'\$'.\""; - } elsif ($target eq 'tex') { - $currentstring = "\$"; - } - return $currentstring; +#-- + sub start_output { + my ($target,$token) = @_; + $Apache::lonxml::textredirection = 1; + my $result = ''; + return $result; + } + sub end_output { + my ($target,$token) = @_; + $Apache::lonxml::textredirection = 0; + my $result = ''; + return $result; } +#-- tag sub start_m { - my ($target,$token) = @_; + my ($target,$token,$parstack,$parser) = @_; my $currentstring = ''; 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') { - $currentstring = "\$"; + $currentstring = ""; } return $currentstring; } @@ -34,9 +49,9 @@ use strict; my ($target,$token) = @_; my $currentstring = ''; if ($target eq 'web') { - $currentstring = "\".'\$') "; } elsif ($target eq 'tex') { - $currentstring = "\$"; + $currentstring = ""; + } elsif ($target eq 'meta') { } return $currentstring; } @@ -91,23 +106,7 @@ use strict; } return $currentstring; } -#------------------------------------------------------------------------ tag - sub start_applet { - my ($target,$token) = @_; - my $currentstring = ''; - if ($target eq 'web') { - $currentstring = $token->[4]; - } - return $currentstring; - } - sub end_applet { - my ($target,$token) = @_; - my $currentstring = ''; - if ($target eq 'web') { - $currentstring = $token->[2]; - } - return $currentstring; - } + #------------------------------------------------------------------------