diff options
-rwxr-xr-x | htdocs/index.html | 4 | ||||
-rwxr-xr-x | httpd/cgi-bin/check | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/htdocs/index.html b/htdocs/index.html index 483a1ee..1b2142e 100755 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -110,7 +110,7 @@ <th>Document Type:</th> <td colspan="2"> <select name="doctype"> - <option value="Inline">(specified inline)</option> + <option value="Inline">(detect automatically)</option> <option>XHTML 1.0 Strict</option> <option>XHTML 1.0 Transitional</option> <option>XHTML 1.0 Frameset</option> @@ -157,7 +157,7 @@ src="http://validator.w3.org/images/vxhtml10" height="31" width="88" alt="Valid XHTML 1.0!" /></a> <a href="/feedback.html">Gerald Oskoboiny</a><br /> - $Date: 2001-09-06 23:16:16 $ + $Date: 2001-09-07 02:53:24 $ </address> </body> </html> diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 9d2abf4..6b9bdf3 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -9,7 +9,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.173 2001-09-07 00:19:39 link Exp $ +# $Id: check,v 1.174 2001-09-07 02:53:24 link Exp $ # # We need Perl 5.004. @@ -80,9 +80,9 @@ my $element_ref = 'http://www.htmlhelp.com/reference/html40/'; # # Strings -$VERSION = q$Revision: 1.173 $; +$VERSION = q$Revision: 1.174 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; -$DATE = q$Date: 2001-09-07 00:19:39 $; +$DATE = q$Date: 2001-09-07 02:53:24 $; $MAINTAINER = 'gerald@w3.org'; $NOTICE = ''; # "<p><strong>Note: This service will be ...</strong>"; @@ -612,7 +612,7 @@ if ($File->{Type} eq 'xml' or $File->{Type} eq 'xhtml') { &add_table("Select Doctype", $q->popup_menu(-name => 'doctype', -values => [ - '(specified inline)', + '(detect automatically)', 'XHTML 1.0 Strict', 'XHTML 1.0 Transitional', 'XHTML 1.0 Frameset', |