This file is indexed.

/usr/lib/petscdir/3.7.5/x86_64-linux-gnu-complex-debug/share/petsc/saws/js/utils.js is in libpetsc-complex-3.7.5-dbg 3.7.5+dfsg1-4+b1.

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
//gets the endtag of the given name in the data object. must also specify parent because we allow same fieldsplit names under different parents
function getEndtagByName(data,name,parent) {

    for (var key in data) {
        if (data.hasOwnProperty(key)) {
            if(data[key].name == name && key.indexOf(parent) == 0)
                return key;
        }
    }
    return "-1";
}

//count the number of children that currently exist for the given parent
function getNumChildren(data,parent) {

    var childNumUnderscores = getNumUnderscores(parent) + 1;
    var count               = 0;

    for (var key in data) {
        if (data.hasOwnProperty(key)) {
            if(getNumUnderscores(key) == childNumUnderscores && key.indexOf(parent) == 0)
                count ++;
        }
    }

    return count;
}

//returns the number of underscores in the endtag
function getNumUnderscores(endtag) {

    var count = 0;
    for(var i=0; i<endtag.length; i++) {
        if(endtag.charAt(i) == "_")
            count ++;
    }
    return count;
}

//returns the endtag of the parent (if any)
function getParent(endtag) {

    if(endtag.indexOf('_') == -1)
        return "-1"; //has no parent (root case) or invalid endtag

    return endtag.substring(0,endtag.lastIndexOf('_'));
}

//returns the number of occurances of a string in another string
function countNumOccurances(small_string, big_string) {

    var count = 0;

    while(small_string.length <= big_string.length && big_string.indexOf(small_string) != -1) {
        count ++;
        var loc = big_string.indexOf(small_string);
        big_string = big_string.substring(loc + small_string.length, big_string.length);
    }

    return count;
}

//scrolls the page
function scrollTo(id)
{
    $('html,body').animate({scrollTop: $("#"+id).offset().top},'fast');
}