This file is indexed.

/usr/share/doc/calf/scripts/manual.js is in calf-plugins 0.0.19+git20131202-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
$(document).ready(function () {
    var items = [
        [
            "Basics",
            [
                ["Index", "index.html", "images/Index.png"],
                ["About", "About.html", "images/About.png"],
                ["Controls", "Controls.html", "images/Calf - Controls.png"],
                ["Calf Rack", "Calf.html", "images/Calf.png"]
            ]
        ],
        [
            "Synthesizer",
            [
                ["(Organ)", "Organ.html", "images/Calf - Organ - Tone Generator.png"],
                ["(Monosynth)", "Monosynth.html", "images/Calf - Monosynth - Audio Path.png"],
            ]
        ],
        [
            "Delay FX",
            [
                ["(Vintage Delay)", "Vintage Delay.html", "images/Calf - Vintage Delay.png"],
                ["(Reverb)", "Reverb.html", "images/Calf - Reverb.png"],
                ["(Multi Chorus)", "Multi Chorus.html", "images/Calf - Multi Chorus.png"],
                ["(Flanger)", "Flanger.html", "images/Calf - Flanger.png"],
                ["(Phaser)", "Phaser.html", "images/Calf - Phaser.png"],
                ["Compensation Delay Line", "Compensation Delay Line.html", "images/Calf - Compensation Delay Line.png"],
            ]
        ],
        [
            "Dynamics",
            [
                ["Compressor", "Compressor.html", "images/Calf - Compressor.png"],
                ["Sidechain Compressor", "Sidechain Compressor.html", "images/Calf - Sidechain Compressor.png"],
                ["Multiband Compressor", "Multiband Compressor.html", "images/Calf - Multiband Compressor.png"],
                ["Deesser", "Deesser.html", "images/Calf - Deesser.png"],
                ["Limiter", "Limiter.html", "images/Calf - Limiter.png"],
                ["Multiband Limiter", "Multiband Limiter.html", "images/Calf - Multiband Limiter.png"],
                ["Gate", "Gate.html", "images/Calf - Gate.png"],
                ["Sidechain Gate", "Sidechain Gate.html", "images/Calf - Sidechain Gate.png"],
                ["Multiband Gate", "Multiband Gate.html", "images/Calf - Multiband Gate.png"],
                ["Transient Designer", "Transient Designer.html", "images/Calf - Transient Designer.png"]
            ]
        ],
        [
            "Filter",
            [
                ["Filter", "Filter.html", "images/Calf - Filter.png"],
                ["(Filterclavier)", "Filterclavier.html", "images/Calf - Filterclavier.png"],
                ["Equalizer 5 Band", "Equalizer 5 Band.html", "images/Calf - Equalizer 5 Band.png"],
                ["Equalizer 8 Band", "Equalizer 8 Band.html", "images/Calf - Equalizer 8 Band.png"],
                ["Equalizer 12 Band", "Equalizer 12 Band.html", "images/Calf - Equalizer 12 Band.png"],
            ]
        ],
        [
            "Other",
            [
                ["Pulsator", "Pulsator.html", "images/Calf - Pulsator.png"],
                ["(Rotary Speaker)", "Rotary Speaker.html", "images/Calf - Rotary Speaker.png"],
                ["(Saturator)", "Saturator.html", "images/Calf - Saturator.png"],
                ["Exciter", "Exciter.html", "images/Calf - Exciter.png"],
                ["Bass Enhancer", "Bass Enhancer.html", "images/Calf - Bass Enhancer.png"],
                ["Mono Input", "Mono Input.html", "images/Calf - Mono Input.png"],
                ["Stereo Tools", "Stereo Tools.html", "images/Calf - Stereo Tools.png"],
                ["Analyzer", "Analyzer.html", "images/Calf - Analyzer.png"],
                ["Tape Simulator", "Tape Simulator.html", "images/Calf - Tape Simulator.png"],
            ]
        ]
    ];

    var header = '<div class="header"><img src="images/style_logo.png" align="middle" />';
    var menu = "";
    for(var i = 0; i < items.length; i++) {
        menu += "<div class='menu'><h3>" + items[i][0] + "</h3><ul>";
        for(var j = 0; j < items[i][1].length; j++) {
            menu += "<li>";
            if(items[i][1][j][2]) {
//                menu += "<a class='thickbox' href='" + items[i][1][j][2] + "' title='" + items[i][1][j][0] + "'>";
//                menu += "<a href=\"" + items[i][1][j][1] + "\" title=\"" + items[i][1][j][0] + "\">"
                menu += "<img src=\"" + items[i][1][j][2] + "\" alt=\"" + items[i][1][j][0] + "\">";
//                menu += "</a>";
            }
            cl=""
            if(items[i][1][j][0][0] == "(")
                cl=" class='inactive'"
            menu += "<a" + cl + " href=\"" + items[i][1][j][1] + "\" title=\"" + items[i][1][j][0] + "\">" + items[i][1][j][0] + "</a></li>";
        }
        menu +="<br clear='all'></ul><br clear='all'/></div>";
    }
    header += menu + "<br clear='all'></div>";
    $("body").prepend("<div class='headerbg'>" + header + "</div>");
    $(".index").prepend(menu);
    $("h2").append("&nbsp;&laquo;").prepend("&raquo;&nbsp;");

});