This file is indexed.

/usr/share/perl5/Jifty/Plugin/Chart/Renderer/GoogleViz/AnnotatedTimeline.pm is in libjifty-plugin-chart-perl 1.01+dfsg-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
package Jifty::Plugin::Chart::Renderer::GoogleViz::AnnotatedTimeline;
use strict;
use warnings;
use base 'Jifty::Plugin::Chart::Renderer::GoogleViz';

use constant packages_to_load => 'annotatedtimeline';
use constant chart_class => 'google.visualization.AnnotatedTimeLine';

sub draw_params {
    my $self = shift;
    my $opts = shift || {};
    return { displayAnnotations => 'true', %$opts };
}

1;