This file is indexed.

/usr/share/hotot/js/widget.bubble.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
if (typeof(widget) == 'undefined') widget = {}
function WidgetBubble(obj, target) {
    /* .bubble 
     * .bubble > .bubble_container > .bubble_body
     * */

    var self = this;
    self._me = null;
    self._target = null;
    self._body = null;
    WidgetBubble.TOP_LEFT = 0;
    WidgetBubble.TOP = 1;
    WidgetBubble.TOP_RIGHT = 2;
    WidgetBubble.LEFT = 3;
    WidgetBubble.RIGHT = 4;
    WidgetBubble.BOTTOM_LEFT = 5;
    WidgetBubble.BOTTOM = 6;
    WidgetBubble.BOTTOM_RIGHT = 7;
    
    WidgetBubble.ALIGN_LEFT = 0;
    WidgetBubble.ALIGN_RIGHT = 1;
    WidgetBubble.ALIGN_TOP = 2;
    WidgetBubble.ALIGN_BOTTOM = 3;
    WidgetBubble.ALIGN_CENTER = 4;

    self._default_bubble_html = '<div id="{%ID%}" target="{%TARGET%}" class="bubble"><div class="bubble_container"><div class="bubble_body"></div></div></div>'

    self.init = function init(obj, target) {
        self.build_default_bubble(obj, target);
        self._me = $(obj);
        self._target = $(target);
        self._body = self._me.find('.bubble_body');
    };

    self.build_default_bubble=function build_default_bubble(id, target_id) {
        var html = self._default_bubble_html;
        html = html.replace('{%ID%}', id.substring(1));
        html = html.replace('{%TARGET%}', target_id);
        $('body').append(html);
    };

    self.create = function create() {
        self._me.mouseout(function(){self._me.hide();})
    };

    self.cal_align = function cal_align(pos, align) {
        if (pos == WidgetBubble.TOP || pos == WidgetBubble.BOTTOM) {
            ret = self._target.offset().left;
            switch (align) {
            case WidgetBubble.ALIGN_CENTER:
                ret -= (self._me.width() - self._target.width()) / 2;
            break;
            case WidgetBubble.ALIGN_RIGHT:
                ret -= (self._me.width() - self._target.width());
            break;
            default : break; //default WidgetBubble.ALIGN_LEFT
            }
        } else {
            ret = self._target.offset().top;
            switch (align) {
            case WidgetBubble.ALIGN_CENTER:
                ret -= (self._me.height() - self._target.height()) / 2;
            break;
            case WidgetBubble.ALIGN_BOTTOM:
                ret -= (self._me.height() - self._target.height());
            break;
            default : break; //default WidgetBubble.ALIGN_TOP
            }
        }
        return ret;
    };

    self.place = function place(pos, align) {
        var offset = self._target.offset();
        var th = self._target.height(); var tw = self._target.width();
        var bub_x = offset.left; var bub_y = offset.top;
        
        switch (pos) {
        case WidgetBubble.TOP:
            bub_y -= self._me.height() - 5;
            bub_x = self.cal_align(pos, align);
        break;
        case WidgetBubble.LEFT:
            bub_x -= self._me.width() - 5;
            bub_y = self.cal_align(pos, align);
        break;
        case WidgetBubble.RIGHT:
            bub_x += self._target.width() + 5;
            bub_y = self.cal_align(pos, align);
        break;
        case WidgetBubble.BOTTOM:
            bub_y += self._target.height() + 5;
            bub_x = self.cal_align(pos, align);
        break;
        default:
        break;
        }
        self._x = bub_x; self._y = bub_y;
    };

    self.show = function show() {
        self._me.css({'left': self._x + 'px', 'top': self._y + 'px'});
        self._me.show();
    };

    self.hide = function hide() {
        self._me.hide();
    };

    self.destroy = function destroy() {
        self._me.unbind();
        self._me.remove();
        delete self;
    };

    self.set_content = function set_content(content) {
        self._body.html(content);
    };
    
    self.set_styles = function set_styles(styles) {
        self._body.css(styles);
    };

    self.set_order = function set_order(index) {
        self._me.css('z-index', index);
    };
    self.init(obj, target);
}

widget.Bubble = WidgetBubble;