This file is indexed.

/usr/share/php/kohana2/modules/kodoc/views/kodoc/template.php is in libkohana2-modules-php 2.3.4-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
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
<?php defined('SYSPATH') OR die('No direct access allowed.'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

<title><?php echo empty($title) ? '' : $title.' &ndash; ' ?> Kohana API Documentation</title>

<?php

echo html::script(array
(
	'kodoc/media/js/jquery',
	'kodoc/media/js/plugins',
	'kodoc/media/js/effects'
), TRUE)

?>

<style type="text/css">

* { padding:0; margin:0; border:0; }

body { background: #f7fbf1; color: #111; font-size: 82%; font-family: Arial, Verdana, sans-serif; }

h2, h3, h4, h5 { padding: 0.2em 0 0.5em; }
p { padding: 0.5em 0; }
hr { margin: 1em 0; border-bottom: solid 2px #ccc; }

ul { margin-left: 1.5em; }

dt { float: left; clear: left; display: block; width: 12em; font-weight: bold; }
dt tt { display: inline-block; display: -moz-inline-box; width: 5em;}
dd { display: block; padding-left: 1em; }

code { white-space: pre; display: none; }

#container { position: relative; margin: 0 16em 2em 1em; border: solid 0 #e7f5d7; border-width: 0 0.2em 0.3em 0.2em; }

#menu { position: fixed; top: 0; right: 1.5em; width: 14em; padding: 0.2em 0; }
* html body #menu { position: absolute; } /* Add this style for IE6 */
#menu ul { margin: 0 0.2em; list-style: none; color: #b43f11; }
#menu li.first { padding-top: 0.2em; }
#menu li.active li.lite { color: #b43f11; }
#menu li ul { padding: 0.1em 0; margin-right: 0; color: #444; }
#menu li ul a { padding-left: 0.4em; color: #333; }
#menu li ul a:hover { font-weight: bold; color: #2f4f14; }
#menu li ul li:before { content: "«"; }
#menu ul.expanded li { padding-left: 0.6em; }
#menu li span { text-shadow: 1px 1px 1px #333; font-size: 1.3em; cursor: pointer; }
* html body #menu li span { text-shadow: 0 0 0 transparent; } /* Remove the text shadow in IE6 */

#content { padding: 0.2em 0.5em; }

#stats { clear: both; padding: 1em 0; text-align: center; font-size: 0.8em; }
</style>

</head>
<body>
<div id="container">

<?php echo $menu ?>

<!-- Dynamically generated content -->
<div id="content">
<?php echo $content ?>
</div>
<!-- End of dynamic content -->

<div id="stats"><?php echo Kohana::lang('core.stats_footer') ?></div>

</div>
</body>
</html>