Menu

#200 tcltk-man2html.tcl unmatched <td>

open
None
5
2002-05-24
2002-05-17
No

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.tcl Thu May 3
16:47:28 2001
+++ VRWtcl8.4a4/tools/tcltk-man2html.tcl Fri
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>

Discussion

  • Jeffrey Hobbs

    Jeffrey Hobbs - 2002-05-24
    • assigned_to: nobody --> andreas_kupries
     
  • Andreas Kupries

    Andreas Kupries - 2002-06-17

    Logged In: YES
    user_id=75003

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

     
  • Paul Gardner

    Paul Gardner - 2002-06-19
     
  • Paul Gardner

    Paul Gardner - 2002-06-19

    Logged In: YES
    user_id=546567

    See attachment.