validator/htdocs charset-select.html,1.1,1.2 doctype-select.html,1.7,1.8

Update of /sources/public/validator/htdocs
In directory hutz:/tmp/cvs-serv6366/htdocs

Modified Files:
	charset-select.html doctype-select.html 
Log Message:
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



Index: doctype-select.html
===================================================================
RCS file: /sources/public/validator/htdocs/doctype-select.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- doctype-select.html	20 Feb 2007 01:56:44 -0000	1.7
+++ doctype-select.html	15 Mar 2007 06:30:14 -0000	1.8
@@ -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>

Index: charset-select.html
===================================================================
RCS file: /sources/public/validator/htdocs/charset-select.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- charset-select.html	20 Feb 2007 01:56:44 -0000	1.1
+++ charset-select.html	15 Mar 2007 06:30:14 -0000	1.2
@@ -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>

Received on Thursday, 15 March 2007 06:30:46 UTC