This file is indexed.

/usr/share/perl5/XML/RSS/LibXML/V0_92.pm is in libxml-rss-libxml-perl 0.3105+dfsg-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
package XML::RSS::LibXML::V0_92;
use strict;
use warnings;
use base qw(XML::RSS::LibXML::V0_91);

# Should be compatible with 0.91.
# See http://backend.userland.com/rss092

sub parse_dom
{
    my $self = shift;
    my $c    = shift;
    my $dom  = shift;

    $c->reset;
    $c->version('0.92');
    $c->encoding($dom->encoding);
    $self->parse_namespaces($c, $dom);
    $self->parse_channel($c, $dom);
    $self->parse_items($c, $dom);
}

1;