diff options
author | ot <ot@localhost> | 2007-03-15 06:30:15 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-03-15 06:30:15 +0000 |
commit | bc1bc798dc193d1fcfa65a40be84b2d9f5f4cbca (patch) | |
tree | ba0ae4a209e088640eb06f54248dd7f2d6bdedd3 /htdocs | |
parent | 1c8df1331125f578ead7ba7123261bfd0e0c5527 (diff) | |
download | markup-validator-bc1bc798dc193d1fcfa65a40be84b2d9f5f4cbca.zip markup-validator-bc1bc798dc193d1fcfa65a40be84b2d9f5f4cbca.tar.gz markup-validator-bc1bc798dc193d1fcfa65a40be84b2d9f5f4cbca.tar.bz2 |
For default auto-detection of charset and doctype, changing the
form so that the values be empty, hence creating validation results URIs like
...check?uri=http%3A%2F%2Fwww.example.org&doctype=&charset=
rather than
...check?uri=http%3A%2F%2Fwww.example.org%2F&charset=%28detect+automatically%29&doctype=Inline
Diffstat (limited to 'htdocs')
-rwxr-xr-x | htdocs/charset-select.html | 2 | ||||
-rwxr-xr-x | htdocs/doctype-select.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/htdocs/charset-select.html b/htdocs/charset-select.html index 61fe346..6a78c68 100755 --- a/htdocs/charset-select.html +++ b/htdocs/charset-select.html @@ -1,5 +1,5 @@ <select id="<!--#echo var="fieldset_id" -->-charset" name="charset"> - <option value="(detect automatically)" selected="selected">(detect automatically)</option> + <option value="" selected="selected">(detect automatically)</option> <option value="utf-8">utf-8 (Unicode, worldwide)</option> <option value="utf-16">utf-16 (Unicode, worldwide)</option> <option value="iso-8859-1">iso-8859-1 (Western Europe)</option> diff --git a/htdocs/doctype-select.html b/htdocs/doctype-select.html index 941dfde..ef9b532 100755 --- a/htdocs/doctype-select.html +++ b/htdocs/doctype-select.html @@ -1,5 +1,5 @@ <select id="<!--#echo var="fieldset_id" -->-doctype" name="doctype"> - <option value="Inline" selected="selected">(detect automatically)</option> + <option value="" selected="selected">(detect automatically)</option> <option value="XHTML 1.0 Strict">XHTML 1.0 Strict</option> <option value="XHTML 1.0 Transitional">XHTML 1.0 Transitional</option> <option value="XHTML 1.0 Frameset">XHTML 1.0 Frameset</option> |