This file is indexed.

/usr/share/doc/racket/root-info.js is in racket-doc 6.1-4.

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
AddOnLoad(function(){
    var u = GetCookie("PLT_Root."+racket_root_version, null);
    if (u) {
        var info = document.getElementById("rootPathInfo");
        info.style.display = "block";
    }
})

function GoToRootPath() {
    return GotoPLTRoot(racket_root_version, "index.html");
}

function DisableRootPath() {
    SetCookie("PLT_Root."+racket_root_version, "");

    var info = document.getElementById("rootPathInfo");
    info.style.display = "none";
    
    return false;
}