This file is indexed.

/usr/share/games/flightgear/Phi/topics/Aircraft/MassBalance.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
 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
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
<style>
.phi-mb-table {
	margin-bottom: 1ex;
	width: 100%;
}

.phi-mb-table-slider div {
	font-size: 75%;
}

.phi-mb-table caption {
	font-weight: bold;
}

.phi-mb-table-name {
	text-align: left;
	width: 8em;
}

.phi-mb-table-value {
	width: 4em;
	max-width: 4em;
	text-align: right;
}

#phi-mb-tablecolumn {
	min-width: 20em;
    max-width: 30em;
    width: 100%;
    display: inline;
	float: left;
    padding-right: 1em;
}

#phi-mb-graphcolumn {
	min-width: 300px;
    max-width: 30em;
    width: 100%;
	float: left;
    display: inline;
}
</style>
<div id="phi-mb-tablecolumn">

    <table id="phi-mb-fueltable" class="phi-mb-table ui-widget-content ui-corner-all">
        <caption class="ui-widget-header ui-corner-all">Fuel Tanks</caption>
        <thead>
            <tr>
                <th class="phi-mb-table-name">Name</th>
                <th class="phi-mb-table-slider">Level</th>
                <th class="phi-mb-table-value">GAL</th>
                <th class="phi-mb-table-value">IN-LBS</th>

            </tr>
        </thead>
        <tbody data-bind="foreach: tanks">
            <tr data-bind="ifnot: hidden">
                <td class="phi-mb-table-name" data-bind="text: name"></td>
                <td class="phi-mb-table-slider"><div
                        data-bind="slider: { value: content, realtime: true, max: capacity, change: setTankLevel }"></div></td>
                <td class="phi-mb-table-value" data-bind="text: content().toFixed(0)"></td>
                <td class="phi-mb-table-value" data-bind="text: moment().toFixed(0)"></td>

            </tr>
        </tbody>
    </table>
    <table id="phi-mb-loadtable" class="phi-mb-table ui-widget-content ui-corner-all">
        <caption class="ui-widget-header ui-corner-all">Payload</caption>
        <thead>
            <tr>
                <th class="phi-mb-table-name">Name</th>
                <th class="phi-mb-table-slider">Load</th>
                <th class="phi-mb-table-value">LBS</th>
                <th class="phi-mb-table-value">IN-LBS</th>
            </tr>
        </thead>
        <tbody data-bind="foreach: loads">
            <tr>
                <td class="phi-mb-table-name" data-bind="text: name"></td>
                <td class="phi-mb-table-slider"><div
                        data-bind="slider: { value: mass, realtime: true, 'max': max, 'min': min, change: setLoad  }"></div></td>
                <td class="phi-mb-table-value" data-bind="text: mass().toFixed(0)"></td>
                <td class="phi-mb-table-value" data-bind="text: moment().toFixed(0)"></td>
            </tr>
        </tbody>
    </table>
</div>
<div id="phi-mb-graphcolumn">
    <div class="ui-widget">
        <div class="ui-widget-header ui-corner-all">Envelope</div>
        <div class="ui-widget-content ui-corner-all">
            <div style="height: 300px" data-bind="flotchart: { data: envelopeData, options: envelopeOptions, hover: hover }"></div>
            <div data-bind="visible: hoverLabel">
                <div>
                    <span data-bind="text: hoverLabel"></span> <span data-bind="text: hoverMass().toFixed(0)"></span><span>lbs</span>
                    <span data-bind="text: hoverCG().toFixed(0)"></span><span>@in</span>
                </div>
            </div>
        </div>
    </div>
</div>