This file is indexed.

/usr/share/perl5/XML/SimpleObject/Enhanced.pm is in libxml-simpleobject-enhanced-perl 0.53-2.

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package XML::SimpleObject::Enhanced;

use strict;
use warnings;
our $VERSION = '0.53';

use XML::SimpleObject 0.53;
our @ISA = qw(XML::SimpleObject);

my $shiftwidth = 2;

sub _space($)
{
    my $offset = shift || 0;
    return " " x ($offset * $shiftwidth);
}

sub output($;$);

sub output($;$)
{
    my $self = shift;
    my $indent = shift || 0;
    my %attribs = $self->attributes;
    my $xml = _space($indent) . "<" . $self->name;
    $xml .= " $_=\"" . $attribs{$_} . '"' foreach (keys %attribs);
    my @data = split /\n/, $self->value;
    my ($nl, $in, $in1);
    if (@data > 1)
    {
	$nl = "\n";
	$in = _space($indent);
	$in1 = _space($indent + 1);
    }
    else {
	$nl = $in = $in1 = '';
    }
    $xml .= ">$nl";
    $xml .= $in1 . "$_$nl" foreach (grep s/^\s*(\S.*?)\s*/$1/, @data);
    $xml .= output($_, $indent + 1) foreach $self->children;
    $xml .=  $in . "</" . $self->name. ">\n";
    return $xml;
}

sub append
{
    my $self = shift;
    while (my $new = shift)
    {
	my @array = ($new);
	$self->{$new->{_NAME}} = \@array;
    }
}

1;