[Python-checkins] python/dist/src/Doc/perl python.perl,1.158,1.159
fdrake at users.sourceforge.net
fdrake at users.sourceforge.net
Wed Nov 10 20:22:40 CET 2004
- Previous message: [Python-checkins] python/dist/src/Doc/html style.css,1.42,1.43
- Next message: [Python-checkins] python/dist/src/Lib/distutils __init__.py, 1.25,
1.26 archive_util.py, 1.16, 1.17 bcppcompiler.py, 1.17,
1.18 ccompiler.py, 1.60, 1.61 cmd.py, 1.38, 1.39 core.py, 1.63,
1.64 cygwinccompiler.py, 1.28, 1.29 debug.py, 1.3,
1.4 dep_util.py, 1.6, 1.7 dir_util.py, 1.14, 1.15 dist.py,
1.71, 1.72 errors.py, 1.12, 1.13 fancy_getopt.py, 1.29,
1.30 file_util.py, 1.16, 1.17 filelist.py, 1.17, 1.18 log.py,
1.6, 1.7 msvccompiler.py, 1.61, 1.62 mwerkscompiler.py, 1.12,
1.13 spawn.py, 1.18, 1.19
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Doc/perl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4160/perl
Modified Files:
python.perl
Log Message:
- hack for MSIE5 to make (real) tables center
- remove last <center> element (long deprecated in HTML)
Index: python.perl
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/perl/python.perl,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -d -r1.158 -r1.159
--- python.perl 10 Nov 2004 17:56:29 -0000 1.158
+++ python.perl 10 Nov 2004 19:22:02 -0000 1.159
@@ -1416,7 +1416,7 @@
my $a1 = $col_aligns[0];
my $a2 = $col_aligns[1];
s/\\lineii</\\lineii[$a1|$a2]</g;
- return '<table class="realtable">'
+ return '<div class="center"><table class="realtable">'
. "\n <thead>"
. "\n <tr>"
. "\n $th1$h1</th>"
@@ -1426,7 +1426,7 @@
. "\n <tbody>"
. $_
. "\n </tbody>"
- . "\n</table>";
+ . "\n</table></div>";
}
sub do_env_longtableii{
@@ -1460,7 +1460,7 @@
my $a2 = $col_aligns[1];
my $a3 = $col_aligns[2];
s/\\lineiii</\\lineiii[$a1|$a2|$a3]</g;
- return '<table class="realtable">'
+ return '<div class="center"><table class="realtable">'
. "\n <thead>"
. "\n <tr>"
. "\n $th1$h1</th>"
@@ -1471,7 +1471,7 @@
. "\n <tbody>"
. $_
. "\n </tbody>"
- . "\n</table>";
+ . "\n</table></div>";
}
sub do_env_longtableiii{
@@ -1509,7 +1509,7 @@
my $a3 = $col_aligns[2];
my $a4 = $col_aligns[3];
s/\\lineiv</\\lineiv[$a1|$a2|$a3|$a4]</g;
- return '<table class="realtable">'
+ return '<div class="center"><table class="realtable">'
. "\n <thead>"
. "\n <tr>"
. "\n $th1$h1</th>"
@@ -1521,7 +1521,7 @@
. "\n <tbody>"
. $_
. "\n </tbody>"
- . "\n</table>";
+ . "\n</table></div>";
}
sub do_env_longtableiv{
@@ -1563,7 +1563,7 @@
my $a4 = $col_aligns[3];
my $a5 = $col_aligns[4];
s/\\linev</\\linev[$a1|$a2|$a3|$a4|$a5]</g;
- return '<table class="realtable">'
+ return '<div class="center"><table class="realtable">'
. "\n <thead>"
. "\n <tr>"
. "\n $th1$h1</th>"
@@ -1576,7 +1576,7 @@
. "\n <tbody>"
. $_
. "\n </tbody>"
- . "\n</table>";
+ . "\n</table></div>";
}
sub do_env_longtablev{
@@ -1720,9 +1720,9 @@
}
}
else {
- $the_title .= ("\n<center>"
+ $the_title .= ("\n<div class='center'>"
. make_my_titlepage()
- . "\n</center>");
+ . "\n</div>");
}
$the_title .= "\n</div>";
return $the_title . $_;
- Previous message: [Python-checkins] python/dist/src/Doc/html style.css,1.42,1.43
- Next message: [Python-checkins] python/dist/src/Lib/distutils __init__.py, 1.25,
1.26 archive_util.py, 1.16, 1.17 bcppcompiler.py, 1.17,
1.18 ccompiler.py, 1.60, 1.61 cmd.py, 1.38, 1.39 core.py, 1.63,
1.64 cygwinccompiler.py, 1.28, 1.29 debug.py, 1.3,
1.4 dep_util.py, 1.6, 1.7 dir_util.py, 1.14, 1.15 dist.py,
1.71, 1.72 errors.py, 1.12, 1.13 fancy_getopt.py, 1.29,
1.30 file_util.py, 1.16, 1.17 filelist.py, 1.17, 1.18 log.py,
1.6, 1.7 msvccompiler.py, 1.61, 1.62 mwerkscompiler.py, 1.12,
1.13 spawn.py, 1.18, 1.19
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Python-checkins
mailing list