validator/share/templates/en_US popup_charset.tmpl,1.5,1.6 popup_doctype.tmpl,1.7,1.8

Update of /sources/public/validator/share/templates/en_US
In directory hutz:/tmp/cvs-serv6366/share/templates/en_US

Modified Files:
	popup_charset.tmpl popup_doctype.tmpl 
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: popup_doctype.tmpl
===================================================================
RCS file: /sources/public/validator/share/templates/en_US/popup_doctype.tmpl,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- popup_doctype.tmpl	10 Oct 2006 09:35:33 -0000	1.7
+++ popup_doctype.tmpl	15 Mar 2007 06:30:15 -0000	1.8
@@ -1,5 +1,5 @@
 <select id="doctype" name="doctype">
-  <option value="Inline">(detect automatically)</option>
+  <option value="">(detect automatically)</option>
   <option value="XHTML 1.0 Strict"<TMPL_IF NAME="override doctype XHTML 1.0 Strict">selected="selected"</TMPL_IF>>XHTML 1.0 Strict</option>
   <option value="XHTML 1.0 Transitional" <TMPL_IF NAME="override doctype XHTML 1.0 Transitional">selected="selected"</TMPL_IF>>XHTML 1.0 Transitional</option>
   <option value="XHTML 1.0 Frameset" <TMPL_IF NAME="override doctype XHTML 1.0 Frameset">selected="selected"</TMPL_IF>>XHTML 1.0 Frameset</option>

Index: popup_charset.tmpl
===================================================================
RCS file: /sources/public/validator/share/templates/en_US/popup_charset.tmpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- popup_charset.tmpl	12 Oct 2006 01:32:51 -0000	1.5
+++ popup_charset.tmpl	15 Mar 2007 06:30:15 -0000	1.6
@@ -1,5 +1,5 @@
 <select name="charset" id="charset">
-  <option value="(detect automatically)">(detect automatically)</option>
+  <option value="">(detect automatically)</option>
   <option value="utf-8" <TMPL_IF NAME="override charset utf-8">selected="selected"</TMPL_IF>>utf-8 (Unicode, worldwide)</option>
   <option value="utf-16" <TMPL_IF NAME="override charset utf-16">selected="selected"</TMPL_IF>>utf-16 (Unicode, worldwide)</option>
   <option value="iso-8859-1" <TMPL_IF NAME="override charset iso-8859-1">selected="selected"</TMPL_IF>>iso-8859-1 (Western Europe)</option>

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