- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 28 Jun 2007 09:55:51 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/httpd/cgi-bin
In directory hutz:/tmp/cvs-serv24073/httpd/cgi-bin
Modified Files:
check
Log Message:
regexp for xml declaration encoding attribute was bogus...
Index: check
===================================================================
RCS file: /sources/public/validator/httpd/cgi-bin/check,v
retrieving revision 1.530
retrieving revision 1.531
diff -u -d -r1.530 -r1.531
--- check 28 Jun 2007 06:01:50 -0000 1.530
+++ check 28 Jun 2007 09:55:48 -0000 1.531
@@ -1936,7 +1936,7 @@
# Maybe we should use \d\.\d
([\x20|\x9|\xD|\xA]+ encoding
[\x20|\x9|\xD|\xA]* = [\x20|\x9|\xD|\xA]*
- ("[A-Za-z][a-zA-Z0-9-_]+"|'[A-Za-z][a-zA-Z0-9_]+')
+ ("[A-Za-z][a-zA-Z0-9|-|_]+"|'[A-Za-z][a-zA-Z0-9|_|-]+')
)? # encoding info is optional
([\x20|\x9|\xD|\xA]+ standalone
[\x20|\x9|\xD|\xA]* = [\x20|\x9|\xD|\xA]*
Received on Thursday, 28 June 2007 09:55:55 UTC