This file is indexed.

/usr/share/doc/libcdk-perl/examples/examples/calendar is in libcdk-perl 20150928-1build1.

This file is owned by root:root, with mode 0o755.

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
#!/usr/bin/perl -w
# $Id: calendar,v 1.3 2013/07/14 22:54:04 tom Exp $

#
# Purpose:
#	To demonstrate the Perl5 Cdk Calendar Widget

use strict;

#
# Initialize Cdk.
#
use Cdk;
Cdk::init();

# Create the celendar object.
my $calendar = new Cdk::Calendar();

# Activate the object.
my $ret = $calendar->activate();

# Exit Cdk.
Cdk::end();