This file is indexed.

/usr/share/games/flightgear/Phi/topics/Simulator.js 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
define([
        'knockout', 'text!./Simulator.html', './SubtopicViewmodel'
], function(ko, htmlString, SubtopicViewmodel) {
    ko.components.register('Simulator/Screenshot', {
        require : 'topics/Simulator/Screenshot'
    });

    ko.components.register('Simulator/Properties', {
        require : 'topics/Simulator/Properties'
    });

    ko.components.register('Simulator/Config', {
        require : 'topics/Simulator/Config'
    });

    ko.components.register('Simulator/Reset', {
        require : 'topics/Simulator/Reset'
    });

    ko.components.register('Simulator/Exit', {
        require : 'topics/Simulator/Exit'
    });

    // Return component definition
    return {
        viewModel : {
            createViewModel : function(params, componentInfo) {
                return new SubtopicViewmodel([
                        'Screenshot', 'Properties', 'Config', 'Reset', 'Exit'
                ], "Simulator", params);
            },
        },
        template : htmlString
    };
});