This file is indexed.

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

    ko.components.register('Environment/Weather', {
        require : 'topics/Environment/Weather2'
    });

    ko.components.register('Environment/Position', {
        require : 'topics/Environment/Position'
    });

    // Return component definition
    return {
        viewModel : {
            createViewModel : function(params, componentInfo) {
                return new SubtopicViewmodel([
                        'Date & Time', 'Weather', 'Position',
                ], "Environment", params);
            },
        },
        template : htmlString
    };
});