diff options
author | ville <ville@localhost> | 2003-01-09 19:10:48 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2003-01-09 19:10:48 +0000 |
commit | 2b6ee6aa0e1b8de02862e5810e306108f34e23d3 (patch) | |
tree | 8b09564b4b3410ea756eccfd52a3e1075ee8b5c8 | |
parent | 4d3527d53c03a3c276086ad04d5ac3562a6fb370 (diff) | |
download | markup-validator-2b6ee6aa0e1b8de02862e5810e306108f34e23d3.zip markup-validator-2b6ee6aa0e1b8de02862e5810e306108f34e23d3.tar.gz markup-validator-2b6ee6aa0e1b8de02862e5810e306108f34e23d3.tar.bz2 |
Make revalidation options forms consistent, thanks to Dave Evans.
<http://lists.w3.org/Archives/Public/www-validator/2003Jan/0042.html>
-rwxr-xr-x | htdocs/detailed.html | 10 | ||||
-rw-r--r-- | share/templates/en_US/table.tmpl | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/htdocs/detailed.html b/htdocs/detailed.html index ac3364e..f9dd33c 100755 --- a/htdocs/detailed.html +++ b/htdocs/detailed.html @@ -1,5 +1,5 @@ -<!--#set var="revision" value="\$Id: detailed.html,v 1.13 2002-12-06 21:30:26 ville Exp $" ---><!--#set var="date" value="\$Date: 2002-12-06 21:30:26 $" +<!--#set var="revision" value="\$Id: detailed.html,v 1.14 2003-01-09 19:10:48 ville Exp $" +--><!--#set var="date" value="\$Date: 2003-01-09 19:10:48 $" --><!--#set var="title" value="The W3C MarkUp Validation Service" --><!--#set var="relroot" value="./" --><!--#include virtual="header.html" --> @@ -82,11 +82,11 @@ <tr> <th rowspan="3">Options:</th> <td><label for="ss"><input id="ss" name="ss" type="checkbox" value="1" /> Show Source</label></td> - <td><label for="sp"><input id="sp" name="sp" type="checkbox" value="1" /> Show Parse Tree</label></td> + <td><label for="outline"><input id="outline" name="outline" type="checkbox" value="1" /> Show Outline</label></td> </tr> <tr> - <td><label for="outline"><input id="outline" name="outline" type="checkbox" value="1" /> Show Outline</label></td> - <td><label for="noatt"><input id="noatt" name="noatt" type="checkbox" value="1" /> ...exclude attributes</label></td> + <td><label for="sp"><input id="sp" name="sp" type="checkbox" value="1" /> Show Parse Tree</label></td> + <td><label for="noatt"><input id="noatt" name="noatt" type="checkbox" value="1" /> ...no attributes</label></td> </tr> <tr> <td><label for="No200"><input id="No200" name="No200" type="checkbox" value="1" /> Validate error pages</label></td> diff --git a/share/templates/en_US/table.tmpl b/share/templates/en_US/table.tmpl index a80a3a6..e25a7be 100644 --- a/share/templates/en_US/table.tmpl +++ b/share/templates/en_US/table.tmpl @@ -76,14 +76,14 @@ <TMPL_IF NAME="opt_show_outline"> checked="checked" </TMPL_IF> - />Outline</label></td> + />Show Outline</label></td> </tr> <tr> <td><label title="Show Parse Tree (accesskey: 7)" for="sp"><input type="checkbox" value="1" id="sp" name="sp" accesskey="7" <TMPL_IF NAME="opt_show_parsetree"> checked="checked" </TMPL_IF> - />Parse Tree</label></td> + />Show Parse Tree</label></td> <td><label title="Exclude Attributes from Parse Tree (accesskey: 8)" for="noatt"><input type="checkbox" value="1" id="noatt" name="noatt" accesskey="8" <TMPL_IF NAME="opt_show_noatt"> checked="checked" |