This file is indexed.

/usr/share/perl5/Pod/ProjectDocs/Doc.pm is in libpod-projectdocs-perl 0.50-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
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package Pod::ProjectDocs::Doc;

use strict;
use warnings;

our $VERSION = '0.50';    # VERSION

use Moose;
with 'Pod::ProjectDocs::File';

use File::Basename;
use File::Spec;
use File::Copy;
use Carp();

has 'origin' => (
    is  => 'rw',
    isa => 'Str',
);

has 'suffix' => (
    is  => 'rw',
    isa => 'Str',
);

has 'origin_root' => (
    is  => 'rw',
    isa => 'Str',
);

has 'title' => (
    is  => 'rw',
    isa => 'Str',
);

has 'data' => (
    is      => 'ro',
    default => <<'DATA',
<div class="box">
  <h1 class="t1">[% title | html %]</h1>
  <table>
    <tr>
      <td class="label">Description</td>
      <td class="cell">[% desc | html | html_line_break %]</td>
    </tr>
  </table>
</div>
<div class="path">
  <a href="[% outroot _ '/index.html' | relpath %]">[% title | html %]</a> &gt; [% mgr_desc | html %] &gt;
  [% name | html %]
</div>
<div>
[% IF !nosourcecode %]
<a href="[% src | relpath %]">Source</a>
[% END %]
</div>
DATA
);

sub BUILD {
    my $self = shift;

    # This must be done after the other data is available.
    $self->_set_relpath;
    return;
}

sub _set_relpath {
    my $self   = shift;
    my $suffix = $self->suffix;
    my ( $name, $dir ) = fileparse $self->origin, qr/\.$suffix/;
    my $reldir = File::Spec->abs2rel( $dir, $self->origin_root );
    $reldir ||= File::Spec->curdir;
    my $outroot = $self->config->outroot;
    $self->_check_dir( $reldir, $outroot );
    $self->_check_dir( $reldir, File::Spec->catdir( $outroot, "src" ) );
    my $relpath = File::Spec->catdir( $reldir, $name );
    $relpath =~ s:\\:/:g if $^O eq 'MSWin32';

    if ( lc $suffix eq 'pm' ) {
        $self->name( join "::", File::Spec->splitdir($relpath) );
    }
    else {
        $self->name( join "/", File::Spec->splitdir($relpath) );
    }
    $self->relpath( $relpath . "." . $suffix . ".html" );
    return;
}

sub _check_dir {
    my ( $self, $dir, $path ) = @_;
    $self->_mkdir($path);
    my @dirs = File::Spec->splitdir($dir);
    foreach my $dir (@dirs) {
        $path = File::Spec->catdir( $path, $dir );
        $self->_mkdir($path);
    }
    return;
}

sub _mkdir {
    my ( $self, $path ) = @_;
    unless ( -e $path && -d _ ) {
        mkdir( $path, 0755 )
          or Carp::croak(qq/Can't make directory [$path]./);
    }
    return;
}

sub get_output_src_path {
    my $self    = shift;
    my $outroot = File::Spec->catdir( $self->config->outroot, "src" );
    my $relpath = $self->relpath;
    my $suffix  = $self->suffix;
    $relpath =~ s/\.html$//;
    my $path = File::Spec->catfile( $outroot, $relpath );
    return $path;
}

sub copy_src {
    my $self   = shift;
    my $origin = $self->origin;
    my $newsrc = $self->get_output_src_path;
    File::Copy::copy( $origin, $newsrc );
    return;
}

sub is_modified {
    my $self   = shift;
    my $origin = $self->origin;
    my $newsrc = $self->get_output_src_path;
    return 1 unless ( -e $newsrc );
    return ( -M $origin < -M $newsrc ) ? 1 : 0;
}

1;