This file is indexed.

/usr/share/perl5/Net/Trac/TicketPropChange.pm is in libnet-trac-perl 0.16-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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use strict;
use warnings;

package Net::Trac::TicketPropChange;
use Any::Moose;

=head1 NAME

Net::Trac::TicketPropChange - A single property change in a Trac ticket history entry

=head1 DESCRIPTION

A very simple class to represent a single property change in a history entry.

=head1 ACCESSORS

=head2 property

=head2 old_value

=head2 new_value

=cut

has property  => ( isa => 'Str', is => 'rw' );
has old_value => ( isa => 'Str', is => 'rw' );
has new_value => ( isa => 'Str', is => 'rw' );

=head1 LICENSE
    
Copyright 2008-2009 Best Practical Solutions.
    
This package is licensed under the same terms as Perl 5.8.8.
    
=cut

__PACKAGE__->meta->make_immutable;
no Any::Moose;

1;