This file is indexed.

/usr/share/games/flightgear/Phi/topics/Environment/Weather/Aloft.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
<table class="ui-widget-content ui-corner-all">
    <thead>
        <tr>
            <th>Altitude (ft)</th>
            <th colspan="2">Wind (dir/kt)</th>
            <th>Vis (m)</th>
            <th>Temp (&deg;C)</th>
            <th>Dewp (&deg;C)</th>
            <th>Turbulence</th>
        </tr>
    </thead>
    <tbody data-bind="foreach: layerData">
        <tr>
            <td><input data-bind="spinner: { value: altitude }" style="width: 4em;"></td>
            <td><input data-bind="spinner: { value: windDir }" style="width: 2em;"></td>
            <td><input data-bind="spinner: { value: windSpeed }" style="width: 1.5em;"></td>
            <td><input data-bind="spinner: { value: visibility }" style="width: 4em;"></td>
            <td><input data-bind="spinner: { value: temperature }" style="width: 1.5em;"></td>
            <td><input data-bind="spinner: { value: dewpoint }" style="width: 1.5em;"></td>
            <td><select
                data-bind="value: turbulenceValue, selectmenu: {}, options: turbulence, optionsValue: 'id', optionsText: 'text'"
                style="width: 10em;"></select></td>
        </tr>
    </tbody>
</table>