This file is indexed.

/usr/share/perl5/Data/Stag/Arr2HTML.pm is in libdata-stag-perl 0.11-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
package Data::Stag::Arr2HTML;

=head1 NAME

  Data::Stag::Arr2HTML - Array to HTML handler

=head1 SYNOPSIS


=cut

=head1 DESCRIPTION

=head1 PUBLIC METHODS -

=cut

use strict;
use base qw(Data::Stag::Base);

use vars qw($VERSION);
$VERSION="0.11";

sub start_event {
    my $self = shift;
    my $ev = shift;
    print "<tr><td>$ev<td>\n";
}

sub end_event {
    my $self = shift;
    my $ev = shift;
    print "</tr>\n";
}

sub evbody {
    my $self = shift;
    my $body = shift;
    print "<td>$body</td>\n";
}

1;