This file is indexed.

/usr/share/perl5/WebService/Validator/HTML/W3C/Warning.pm is in libwebservice-validator-html-w3c-perl 0.28-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# $Id: Error.pm 32 2003-11-26 13:52:18Z struan $

package WebService::Validator::HTML::W3C::Warning;

use strict;
use base qw(Class::Accessor);

__PACKAGE__->mk_accessors( qw( line col msg source ) );

1;

__END__

=head1 NAME 

WebService::Validator::HTML::W3C::Warning - Warning messages from the W3Cs online Validator

=head1 DESCRIPTION

This is a wee internal module for WebService::Validator::HTML::W3C. It has
three methods: line, col and msg which return the line number, column number 
and the warning that occured at that location in a validated page.

=head1 SEE ALSO

L<WebService::Validator::HTML::W3C>

=head1 AUTHOR

Struan Donald E<lt>struan@cpan.orgE<gt>

=cut