This file is indexed.

/usr/share/hotot/js/hotkey.js is in hotot-common 1:0.9.8.14-2.

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
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
var hotkey = hotkey || {}
hotkey = {
map: [],

// mod key definition
shiftKey: 1,
ctrlKey: 2,
altKey: 4,

init:
function init() {
    $(document).bind("keypress keydown keyup", hotkey.crack);
},

crack:
function crack(event) {
    if (event.keyCode == 27) { //ESC, reset all input queues
        for (var i = 0, i_max = hotkey.map.length; i < i_max; i++) {
            hotkey.map[i].pos = 0;
        }
        if (ui.Previewer.visible)
            ui.Previewer.close();
        // @TODO close dialog.
        return;
    }

    var checkKey = function(map, evt) {
        var key = map.seq[map.pos];
        if (typeof key === "string") {
            var modkeys = key.substring(0, key.length - 1);
            if (evt.ctrlKey !== (modkeys.indexOf("C") >= 0)
                 || evt.altKey !== (modkeys.indexOf("A") >= 0)
                 || key.charCodeAt(key.length - 1) !== evt.charCode) {
                return false;
            }
        } else {
            var ckey = hotkey.calculate(evt.keyCode,
                evt.shiftKey?hotkey.shiftKey:null,
                evt.ctrlKey?hotkey.ctrlKey:null,
                evt.altKey?hotkey.altKey:null);
            if (key !== ckey) {
                return false;
            }
        }
        return true;
    }

    var isFocusOnInput = (/^INPUT$|^TEXTAREA$/.test(event.target.tagName)) && $(event.target).is(':visible');
    var isViewVisible = globals.signed_in;
    var isMenuVisible = $(".hotot_menu:visible").length > 0;

    var etype = event.type[3].toUpperCase();
    var mi = null, mpos = -1;
    for (var i = 0, i_max = hotkey.map.length; i < i_max; i++) {
        var map = hotkey.map[i];
        var flags = map.flags;
        if (flags.indexOf(etype) >= 0) {
            var c = true;
            if (flags.indexOf("*") < 0) {
                if (isFocusOnInput && flags.indexOf("i") < 0) {
                    c = false;
                } else if (!isViewVisible && flags.indexOf("g") < 0) {
                    c = false;
                } else if (isMenuVisible && flags.indexOf("m") < 0) {
                    c = false;
                }
            }
            if (c && checkKey(map, event)) {
                if (map.pos + 1 === map.seq.length) {
                    // only the callback function of the longest sequence should be called.
                    // e.g. "r" vs. "ar"
                    if (map.pos > mpos) {
                        mi = i;
                        mpos = map.pos;
                    }
                    map.pos = 0;
                } else {
                    map.pos++;
                }
            } else {
                map.pos = 0;
            }
        }
    }
    if (mi != null) {
        event.preventDefault();
        try {
            hotkey.map[mi].f();
        } catch(ex) {
        }
    }
},

register:
function register(keySeq, flags, callback) {
// flags:
//   "*": call callback function in any cases
//   "i": call callback function, even typing text
//   "g": call callback function, even not login
//   "m": call callback function, even a popup menu showed
//   "U": call callback function at keyup event
//   "D": call callback function at keydown event
//   "P": call callback function at keypress event
    if (typeof flags === "function") {
        callback = flags;
        flags = "";
    }
    var keys;
    if (typeof keySeq === "string") {
        keys = [];
        for (var i = 0, i_max = keySeq.length; i < i_max; i++) {
            var keyChar = keySeq[i];
            if (keyChar === "<") {
                var p = keySeq.indexOf(">", i + 1);
                if (p == -1) {
                    return false;
                }
                keyChar = keySeq.substring(i + 1, p).replace(/([AC])-/g, "$1");
                i = p;
            }
            keys.push(keyChar);
        }
        flags = flags.replace(/[UD]/g, "");
        if (flags.indexOf("P") < 0) {
            flags += "P";
        }
    } else {
        if (typeof keySeq === "number") {
            keys = [ keySeq ];
        } else if (keySeq instanceof Array) {
            keys = [].concat(keySeq);
        } else {
            return false;
        }
        flags = flags.replace(/P/g, "");
        if (!/[UD]/.test(flags)) {
            flags += "U";
        }
    }
    hotkey.map.push({ seq:keys, f:callback, pos:0, flags:flags });
    return true;
},

calculate:
function calculate(keyCode, modkeys) {
    var idx = keyCode << 3;
    for (var i = 1, i_max = arguments.length; i < i_max; i++) {
        var key = arguments[i];
        if (key === hotkey.shiftKey || key === hotkey.ctrlKey || key === hotkey.altKey) {
            idx |= key;
        }
    }
    return idx;
}

};