This file is indexed.

/usr/share/perl5/MKDoc/XML/Decode/XMLBase.pm is in libmkdoc-xml-perl 0.75-3.

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
package MKDoc::XML::Decode::XMLBase;
use warnings;
use strict;

our %XML_Decode = (
    'amp'  => '&',
    'lt'   => '<',
    'gt'   => '>',
    'quot' => '"',
    'apos' => "'",
   );

sub process
{
    my $class = shift;
    my $stuff = shift;
    return $XML_Decode{$stuff};
}

sub module_name { 'xml' }

1;