- From: Ville Skytta via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 24 Nov 2009 19:03:14 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/httpd/cgi-bin In directory hutz:/tmp/cvs-serv20620/httpd/cgi-bin Modified Files: check Log Message: Fix perlcritic "Literal line breaks in a string" errors. Index: check =================================================================== RCS file: /sources/public/validator/httpd/cgi-bin/check,v retrieving revision 1.728 retrieving revision 1.729 diff -u -d -r1.728 -r1.729 --- check 24 Nov 2009 18:58:59 -0000 1.728 +++ check 24 Nov 2009 19:03:12 -0000 1.729 @@ -3307,8 +3307,8 @@ $err->{num} = "no-xmlns"; $err->{type} = "E"; $err->{msg} = - "Missing xmlns attribute for element " . $element->{Name} . ". - The value should be: $self->{CFG}->{Types}->{$doctype}->{Namespace}"; + "Missing xmlns attribute for element $element->{Name}. The " . + "value should be: $self->{CFG}->{Types}->{$doctype}->{Namespace}"; # ... $self->{_file}->{'Is Valid'} = FALSE; @@ -3328,8 +3328,8 @@ $err->{num} = "wrong-xmlns"; $err->{type} = "E"; $err->{msg} = - "Wrong xmlns attribute for element $element->{Name}. " . - "The value should be: $self->{CFG}->{Types}->{$doctype}->{Namespace}"; + "Wrong xmlns attribute for element $element->{Name}. The " . + "value should be: $self->{CFG}->{Types}->{$doctype}->{Namespace}"; # ... $self->{_file}->{'Is Valid'} = FALSE;
Received on Tuesday, 24 November 2009 19:03:22 UTC