Tcl Source Code

View Ticket
Login
Ticket UUID: 557413
Title: tcltk-man2html.tcl unmatched <td>
Type: Patch Version: None
Submitter: paulgardner Created on: 2002-05-17 19:41:10
Subsystem: None Assigned To: aku
Priority: 5 Medium Severity: Minor
Status: Closed Last Modified: 2020-12-10 13:58:53
Resolution: Fixed Closed By: jan.nijtmans
    Closed on: 2020-12-10 13:58:53
Description:
tools/tcltk-man2html.tcl generates <td> tags with no 
corresponding </td> tag.  This is minor issue, not 
causing visible problems with any browsers I am aware 
of, but does violate recommended practice and 
generates sanity check warnings (at least in my 
checker :).

The fix is very simple.

diff -u tcl8.4a4/tools/tcltk-man2html.tcl 
VRWtcl8.4a4/tools/tcltk-man2html.tcl
--- tcl8.4a4/tools/tcltk-man2html.tclThu May  3 
16:47:28 2001
+++ VRWtcl8.4a4/tools/tcltk-man2html.tclFri 
May 17 11:33:07 2002
@@ -1539,7 +1539,7 @@
     }
     set tail [file tail $tail]
     append rows([expr {$n%$nrows}]) \
-    ?<td> <a 
href=\"$tail.htm\">$name</a>?
+    ?<td> <a 
href=\"$tail.htm\">$name</a></td>?
     incr n
 }
 puts $manual(wing-toc-fp) <table>
User Comments: jan.nijtmans added on 2020-12-10 13:58:53:

Already fixed here: [5433349fc61038d4]


paulgardner added on 2002-06-20 00:27:44:

File Added - 25409: tcltk-man2html_tdpatch.txt

Logged In: YES 
user_id=546567

See attachment.

andreas_kupries added on 2002-06-18 03:11:55:
Logged In: YES 
user_id=75003

Please attach patches to a report. Providing them inline in the 
description makes them effectively unuseable.

Attachments: