This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 18889 - RequestWWW
Summary: RequestWWW
Status: RESOLVED INVALID
Alias: None
Product: WebRTC Working Group
Classification: Unclassified
Component: WebRTC API (show other bugs)
Version: unspecified
Hardware: SGI Linux
: P2 blocker
Target Milestone: ---
Assignee: Web RTC Working Group
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-15 08:35 UTC by Roger Mbiama Assogo
Modified: 2012-09-15 13:12 UTC (History)
2 users (show)

See Also:


Attachments

Description Roger Mbiama Assogo 2012-09-15 08:35:43 UTC
logprocess.pl -f /path/to/logprocess.conf
use W3C::LogValidator;
    my $logprocessor = W3C::LogValidator->new("angosso.net/www");
    $logprocessor->process;
my $logprocessor = W3C::LogValidator->new;
    $logprocessor->process;
%conf = (
    "UseOutputModule" => "W3C::LogValidator::Output::Mail",
    "ServerAdmin" => 'admin@angosso.net',
    "verbose" => "3"
    );
  $processor =
W3C::LogValidator->new("/home/angosson/www/public_html/config.angosso",
\%conf);
%conf = (
    "UseOutputModule" => "W3C::LogValidator::Output::HTML",
    "OutputTo" => '/home/angosson/www/public_html/file.html',
    "verbose" => "0"
    );
  $processor =
W3C::LogValidator->new("/home/angosson/wwww/public_html/config.angosso",
\%conf);
Public bug-tracking w3c at http://www.angosso.net/Bugs/Public/
Clear Navigation      YES
#!/usr/bin/perl -w
use Test::More 'no_plan'; use Data::Dumper; use
W3C::LogValidator::CSSValidator; #my $rooturl = "http://www.example.com"; my
$rooturl = "http://search.cpan.org/"; my $validator =
W3C::LogValidator::CSSValidator->new ({verbose => 1, rooturl => $rooturl,
AuthorizedExtensions => ".html .xhtml .phtml .htm .shtml .php .svg .xml /
.cgi", }); $validator->uris($rooturl); my %results = $validator->process_list;
ok($validator->valid, "CSS validation") or diag Dumper(\%results); __END__
Output is: perl /tmp/a.pl Now Using the CSS Validation module... Done! not ok 1
- CSS validation
# Failed test 'CSS validation' # at /tmp/a.pl line 17. # $VAR1 = { # 'thead' =>
[ # 'Rank', # 'Hits', # '#Error(s)', # 'Address' # ], # 'trows' => [], #
'intro' => 'Here are the most popular invalid document(s)
that I could find in the
# logs for .', # 'name' => 'CSSValidator', # 'outro' => 'I couldn\'t find any
invalid document in this log.' # };
1..1
# Looks like you failed 1 test of 1.
Comment 1 Harald Alvestrand 2012-09-15 13:12:04 UTC
Closing as invalid. Don't see any relevance to WebRTC.