Trying to view TWiki pages using an experimental browser based on
a real SGML parser with the
HTML 4.0 DTD loaded, I discovered two
bugs.
- templates/view.tmpl has form and table in the wrong nesting: tables can be in forms, but not the other way around (they can be in a cell (TD).
- The use of <nop> is not appreciated. Maybe the rendering stuff could do a final pass removing these?
--
JanWielemaker - 06 Oct 2000
Is it ok if we use <nop/> ?
--
AndreaSterbini - 06 Oct 2000
It is best to remove the
<nop> as a last step before presenting the
HTML. Simply a matter of a
s/<nop>//goi; regular expression.
Also the form inside the
HTML table should be fixed. That means most of the templates. Care should be taken that the fix does not introduce an extra empty line.
Anybody up to the task of fixing this? (There is no
BugToFix, so I set it to
BugAssigned)
--
PeterThoeny - 07 Oct 2000
Fixed:
- Remove <NOP>, </NOP>, <NOP/> from all
print output: s|</*nop/*>||goi;
- For all templates moved <FORM> outside of <TABLE>
Committed to
TWikiAlphaRelease.
--
PeterThoeny - 06 Oct 2000