diff options
author | ville <ville@localhost> | 2002-11-25 19:24:51 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2002-11-25 19:24:51 +0000 |
commit | f7cf4d1fc04d2b938c2fbb45e569b5d1ff7c35aa (patch) | |
tree | 8e94dd5f7fb461022c03fd88e2ad00921a810ca6 /htdocs | |
parent | b20d3c352697144ce6f430b64a85758a1cc5c46b (diff) | |
download | markup-validator-f7cf4d1fc04d2b938c2fbb45e569b5d1ff7c35aa.zip markup-validator-f7cf4d1fc04d2b938c2fbb45e569b5d1ff7c35aa.tar.gz markup-validator-f7cf4d1fc04d2b938c2fbb45e569b5d1ff7c35aa.tar.bz2 |
Get rid of empty-string-valued checkboxen. They're dangerous an non-intuitive.
Yes, I believe this is safe to apply so close to 0.6.0, I need to get this out
of the way of other changes for The Release, spank me if I broke something
with this (can't be...). See also:
<http://koti.welho.com/vskytta/empty-valued-checkbox.html>
Diffstat (limited to 'htdocs')
-rwxr-xr-x | htdocs/detailed.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/htdocs/detailed.html b/htdocs/detailed.html index bb9e397..3122bac 100755 --- a/htdocs/detailed.html +++ b/htdocs/detailed.html @@ -1,5 +1,5 @@ -<!--#set var="revision" value="\$Id: detailed.html,v 1.10 2002-11-01 19:34:50 ville Exp $" ---><!--#set var="date" value="\$Date: 2002-11-01 19:34:50 $" +<!--#set var="revision" value="\$Id: detailed.html,v 1.11 2002-11-25 19:24:51 ville Exp $" +--><!--#set var="date" value="\$Date: 2002-11-25 19:24:51 $" --><!--#set var="title" value="The W3C MarkUp Validation Service" --><!--#set var="relroot" value="./" --><!--#include virtual="header.html" --> @@ -81,15 +81,15 @@ </tr> <tr> <th rowspan="3">Options:</th> - <td><label><input name="ss" type="checkbox" value="" /> Show Source</label></td> - <td><label><input name="sp" type="checkbox" value="" /> Show Parse Tree</label></td> + <td><label><input name="ss" type="checkbox" value="1" /> Show Source</label></td> + <td><label><input name="sp" type="checkbox" value="1" /> Show Parse Tree</label></td> </tr> <tr> - <td><label><input name="outline" type="checkbox" value="" /> Show Outline</label></td> - <td><label><input name="noatt" type="checkbox" value="" /> ...exclude attributes</label></td> + <td><label><input name="outline" type="checkbox" value="1" /> Show Outline</label></td> + <td><label><input name="noatt" type="checkbox" value="1" /> ...exclude attributes</label></td> </tr> <tr> - <td><label><input name="No200" type="checkbox" value="" /> Validate error pages</label></td> + <td><label><input name="No200" type="checkbox" value="1" /> Validate error pages</label></td> </tr> <tr> <td></td> |