- From: Olivier Thereaux <ot@dev.w3.org>
- Date: Wed, 29 Sep 2004 03:39:37 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/perl/modules/W3C/LogValidator/lib/W3C/LogValidator
In directory hutz:/tmp/cvs-serv8474/lib/W3C/LogValidator
Modified Files:
Basic.pm CSSValidator.pm HTMLValidator.pm SurveyEngine.pm
Log Message:
cleaner output
Index: SurveyEngine.pm
===================================================================
RCS file: /sources/public/perl/modules/W3C/LogValidator/lib/W3C/LogValidator/SurveyEngine.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- SurveyEngine.pm 16 Aug 2004 02:12:09 -0000 1.8
+++ SurveyEngine.pm 29 Sep 2004 03:39:35 -0000 1.9
@@ -82,7 +82,7 @@
$exclude_regexp =~ s/\//\\\//g ;
@excluded_areas = split(" ", $exclude_regexp);
}
- else { print "nothing to exclude" if ($verbose >2);}
+ else { print "nothing to exclude\n" if ($verbose >2);}
my $uri;
while ($uri = shift)
{
Index: HTMLValidator.pm
===================================================================
RCS file: /sources/public/perl/modules/W3C/LogValidator/lib/W3C/LogValidator/HTMLValidator.pm,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- HTMLValidator.pm 10 Sep 2004 00:41:24 -0000 1.17
+++ HTMLValidator.pm 29 Sep 2004 03:39:35 -0000 1.18
@@ -147,7 +147,7 @@
$exclude_regexp =~ s/\//\\\//g ;
@excluded_areas = split(" ", $exclude_regexp);
}
- else { print "nothing to exclude" if ($verbose >2);}
+ else { print "nothing to exclude\n" if ($verbose >2);}
my $uri;
while ($uri = shift)
{
Index: Basic.pm
===================================================================
RCS file: /sources/public/perl/modules/W3C/LogValidator/lib/W3C/LogValidator/Basic.pm,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- Basic.pm 10 Sep 2004 00:41:24 -0000 1.10
+++ Basic.pm 29 Sep 2004 03:39:35 -0000 1.11
@@ -57,7 +57,7 @@
$exclude_regexp =~ s/\//\\\//g ;
@exclude_areas = split(" ", $exclude_regexp);
}
- else { print "nothing to exclude" if ($verbose >2);}
+ else { print "nothing to exclude\n" if ($verbose >2);}
my $uri;
while ($uri = shift)
{
Index: CSSValidator.pm
===================================================================
RCS file: /sources/public/perl/modules/W3C/LogValidator/lib/W3C/LogValidator/CSSValidator.pm,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- CSSValidator.pm 10 Sep 2004 00:41:24 -0000 1.11
+++ CSSValidator.pm 29 Sep 2004 03:39:35 -0000 1.12
@@ -125,7 +125,7 @@
$exclude_regexp =~ s/\//\\\//g ;
@excluded_areas = split(" ", $exclude_regexp);
}
- else { print "nothing to exclude" if ($verbose >2);}
+ else { print "nothing to exclude\n" if ($verbose >2);}
my $uri;
while ($uri = shift)
{
Received on Wednesday, 29 September 2004 03:39:37 UTC