This file is indexed.

/usr/share/games/flightgear/Phi/topics/Simulator/Config.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
<div>
    <fieldset>
        <legend>AI</legend>
        <div>
            <input type="checkbox" id="sim-config-aitraffic-on" data-bind="button: { refreshOn: aiEnabled }, checked: aiEnabled">
            <label for="sim-config-aitraffic-on" data-bind="css: { 'ui-state-active': aiEnabled }">AI Traffic</label>
        </div>
    </fieldset>
    <fieldset>
        <legend>Multiplayer</legend>
        
        <div>
            <label for="sim-config-multiplayer-callsign">Callsign</label> <span
                class="ui-spinner ui-widget ui-widget-content ui-corner-all"> <input class="ui-spinner-input"
                id="sim-config-multiplayer-callsign" data-bind="value: callsign, disable: online" maxlength="8">
            </span>
            <input type="checkbox" id="sim-config-multiplayer-hidereplay"
                data-bind="button: { refreshOn: multiplayerHideReplay }, checked: multiplayerHideReplay"> <label
                for="sim-config-multiplayer-hidereplay" data-bind="css: { 'ui-state-active': multiplayerHideReplay }">Hide
                replay sessions over MP</label>
        </div>
        <div>
            <button data-bind="button: { disabled: offline, label: 'Disconnect from ' + selectedServer() }, click: toggleConnect"></button>
        </div>
        <div>
            <button data-bind="button: { disabled: online }, click: toggleConnect">Connect to</button>
            <select data-bind="enable: offline
                               value: selectedServer, 
                               options: serverList, 
                               optionsText: 'longname',
                               optionsValue: 'longname',
                               "></select>
        </div>

    </fieldset>
    <!--div data-bind="text: ko.toJSON($data)"></div-->
</div>