diff options
author | unknown <tim@threads.polyesthetic.msg> | 2001-05-31 15:08:26 -0400 |
---|---|---|
committer | unknown <tim@threads.polyesthetic.msg> | 2001-05-31 15:08:26 -0400 |
commit | 4da43bddd70d67074d2ba69ec6494263ef8aed3f (patch) | |
tree | 28a8e87677ebf15ff9904198965e94ea5aaff81c | |
parent | a9642208bc0ff280f987cb2dbc0935145d9c947c (diff) | |
download | mariadb-git-4da43bddd70d67074d2ba69ec6494263ef8aed3f.tar.gz |
Patch our texi2html to produce more correct HTML.
Thanks to Colin Faber <cfaber@fpsn.net> for the patch.
Docs/Support/texi2html:
Patch to close </TD>, which is needed for some browsers.
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
-rw-r--r-- | BitKeeper/etc/logging_ok | 1 | ||||
-rwxr-xr-x | Docs/Support/texi2html | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok index f4888a3c6c6..071a8c177d9 100644 --- a/BitKeeper/etc/logging_ok +++ b/BitKeeper/etc/logging_ok @@ -2,3 +2,4 @@ jani@janikt.pp.saunalahti.fi monty@hundin.mysql.fi mwagner@evoq.mwagner.org heikki@donna.mysql.fi +tim@threads.polyesthetic.msg diff --git a/Docs/Support/texi2html b/Docs/Support/texi2html index fac665f3361..5dda7c8bbd5 100755 --- a/Docs/Support/texi2html +++ b/Docs/Support/texi2html @@ -845,7 +845,7 @@ READ_LINE: while ($_ = &next_line) print "# end of multitable with $multitable_cols columns\n" if $debug and $DEBUG_USER; $in_multitable = 0; - push(@lines, "</TR>\n"); + push(@lines, "</TD></TR>\n"); &html_pop_if('TR'); push(@lines, "</TABLE>\n"); &html_pop_if('TABLE'); @@ -1076,9 +1076,9 @@ EOC { # All this is a **HACK**. # It does only work for a FEW SIMPLE CASES !!! - push(@lines, &debug("</TR>\n", __LINE__)) - unless $html_element eq 'TABLE';; -&html_pop_if('TR'); + push(@lines, &debug("</TD></TR>\n", __LINE__)) + unless $html_element eq 'TABLE'; + &html_pop_if('TR'); $what =~ s|\s+\@tab\s*| </TD><TD> |g; push(@lines, &debug("<TR><TD>$what\n", __LINE__)); &html_push('TR'); |