This file is indexed.

/usr/share/perl5/Kwiki/BrowserDetect.pm is in libkwiki-perl 0.39-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
package Kwiki::BrowserDetect;
use Kwiki::Plugin -Base;
use HTTP::BrowserDetect;

const class_id => 'browser_detect';

field 'browser_detect';

sub AUTOLOAD {
    our $AUTOLOAD;
    my ($method) = $AUTOLOAD =~ /::(\w+)$/;
    return if $method eq 'DESTROY';
    $self->browser_detect(HTTP::BrowserDetect->new)
      unless $self->browser_detect;
    $self->browser_detect->$method(@_);
}