This file is indexed.

/usr/share/games/flightgear/Phi/widgets/radiostack.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
44
45
46
47
<style>
.phi-widget {
       border: 3px ridge silver;
    
}

.phi-radiostack {
    font-family: "Liberation Mono";
    font-size: 11px;
    color: silver;
    background-color: #101010;
    padding: 4px;
}

.phi-radiostack span {
    width: 3.5em;
    display: inline-block;
    padding-left: 0.5em;
}

.phi-radiostack input {
    font-family: "Liberation Mono";
    font-size: 11px;
    background-color: #404040;
    color: red;
    font-weight: bold;
    border: 2px inset silver;
    width: 8ex;
    display: inline-block;
}

.phi-radiostack button {
    background-color: white;
    color: black;
    border: 2px outset gray;
    padding: 1px 2px 4px 2px;
    font-size: 11px;
}
</style>
<div class="phi-radiostack" data-bind="foreach: radios">
	<div class="phi-radio">
		<span data-bind="text: label"></span> 
		<input data-bind="value: use, attr: { title: stn }, tooltip: {}, event: { blur: onUseBlur, keyup: onUseKey }"/>
		<button data-bind="click: swap">&harr;</button>
		<input data-bind="value: stby, event: { blur: onStbyBlur, keyup: onStbyKey }"/>
	</div>
</div>