This file is indexed.

/usr/share/games/flightgear/Phi/examples/FGPanel-Sample.html is in flightgear-phi 2016.4.2+dfsg1-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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<title>FlightGear - FGPanel 2.0</title>
<style type="text/css" media="screen">
body,html {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 0;
	margin: 0;
	padding: 0;
}

.big {
	width: 512px;
	height: 512px;
}

.instrument {
}


#Position1 {
	position: absolute;
	left: 0;
	top: 0;
}

</style>

<script type="text/javascript" charset="utf-8"
	src="/gui/3rdparty/jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="/gui/lib/jquery.fganimate.js"></script>
<script type="text/javascript" charset="utf-8" src="/gui/lib/fgfs.js"></script>
</head>
<body data-fgpanel="true" data-fgpanel-props="fgpanel.json">
  <div id="Position1" class="big instrument" data-fgpanel-instrument="FGPanel-Sample.json"></div>
</body>
</html>