This file is indexed.

/usr/share/perl5/XML/Atom/Link.pm is in libxml-atom-perl 0.41-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
# $Id$

package XML::Atom::Link;
use strict;
use base qw( XML::Atom::Base );

use XML::Atom;

__PACKAGE__->mk_attr_accessors(qw( rel href hreflang title type length ));

sub element_name { 'link' }

## Maintain backwards compatibility with the old Link->set method.
sub set { shift->set_attr(@_) }

1;