[LON-CAPA-cvs] cvs: loncom /xml londefdef.pm
sakharuk
lon-capa-cvs@mail.lon-capa.org
Tue, 20 Aug 2002 15:22:40 -0000
sakharuk Tue Aug 20 11:22:40 2002 EDT
Modified files:
/loncom/xml londefdef.pm
Log:
1. Added <div> tag.
2. Corrected <hr> tag - made it shorter to distinguish with
problems separation lines.
Index: loncom/xml/londefdef.pm
diff -u loncom/xml/londefdef.pm:1.84 loncom/xml/londefdef.pm:1.85
--- loncom/xml/londefdef.pm:1.84 Mon Aug 12 10:32:00 2002
+++ loncom/xml/londefdef.pm Tue Aug 20 11:22:40 2002
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Tags Default Definition Module
#
-# $Id: londefdef.pm,v 1.84 2002/08/12 14:32:00 sakharuk Exp $
+# $Id: londefdef.pm,v 1.85 2002/08/20 15:22:40 sakharuk Exp $
#
#
# Copyright Michigan State University Board of Trustees
@@ -52,7 +52,7 @@
BEGIN {
- &Apache::lonxml::register('Apache::londefdef',('m','html','head','map','select','option','input','textarea','form','meta','title','body','center','b','strong','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','allow','frameset','pre','insert','externallink','table','tr','th','td','blankspace','bubble','bubbles','bubbleline'));
+ &Apache::lonxml::register('Apache::londefdef',('m','html','head','map','select','option','input','textarea','form','meta','title','body','center','b','strong','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','allow','frameset','pre','insert','div','externallink','table','tr','th','td','blankspace','bubble','bubbles','bubbleline'));
}
@@ -1039,7 +1039,7 @@
if ($target eq 'web') {
$currentstring .= $token->[4];
} elsif ($target eq 'tex') {
- $currentstring .= '\vskip 0 mm \noindent\makebox[\textwidth ][b]{\hrulefill}\vskip 0 mm ';
+ $currentstring .= '\vskip 0 mm \noindent\makebox[\textwidth/2 ][b]{\hrulefill}\vskip 0 mm ';
}
return $currentstring;
}
@@ -1049,6 +1049,23 @@
if ($target eq 'web') {
$currentstring .= $token->[2];
} elsif ($target eq 'tex') {
+ }
+ return $currentstring;
+ }
+#-- <div> tag
+ sub start_div {
+ my ($target,$token) = @_;
+ my $currentstring = '';
+ if ($target eq 'web') {
+ $currentstring .= $token->[4];
+ }
+ return $currentstring;
+ }
+ sub end_div {
+ my ($target,$token) = @_;
+ my $currentstring = '';
+ if ($target eq 'web') {
+ $currentstring .= $token->[2];
}
return $currentstring;
}