This file is indexed.

/usr/share/GNUstep/SOGo/WebServerResources/RowEditionController.js is in sogo-common 2.2.17a-1.1build1.

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
/* bind method: attachToRowElement(row: TD or LI)
 * callback methods:
     notifyStartEditingCallback(this)
     notifyEndEditingCallback(this)
     notifyNewValueCallback(this, newValue),
 */

function RowEditionController() {
}

RowEditionController.prototype = {
    initialValue: null,
    rowElement: null,
    textField: null,

    /*  notification callbacks */
    notifyStartEditingCallback: null,
    notifyEndEditingCallback: null,
    notifyNewValueCallback: null,

    /* bind method */
    attachToRowElement: function REC_attachToRowElement(rowElement) {
        var onRowDblClickBound = this.onRowDblClick.bindAsEventListener(this);
        rowElement.observe("dblclick", onRowDblClickBound);
        this.rowElement = rowElement;
        rowElement.editionController = this;
    },

    /* internal */
    emptyRow: function REC_emptyRow() {
        var rowElement = this.rowElement;
        while (rowElement.firstChild) {
            rowElement.removeChild(rowElement.firstChild);
        }
    },

    startEditing: function REC_startEditing() {
        var rowElement = this.rowElement;
        rowElement.addClassName("editing");

        var value = "";
        for (var i = 0; i < rowElement.childNodes.length; i++) {
            var child = rowElement.childNodes[i];
            if (child.nodeType == Node.TEXT_NODE) {
                value += child.nodeValue;
            }
        }
        this.initialValue = value;
        this.emptyRow();

        this.showInputField(value);

        this.onBodyMouseDownBound = this.onBodyMouseDown.bindAsEventListener(this);
        $(document.body).observe("mousedown", this.onBodyMouseDownBound);

        if (this.notifyStartEditingCallback) {
            this.notifyStartEditingCallback(this);
        }
    },
    showInputField: function REC_showInputField(value) {
        var textField = createElement("input", null, null, {"type": "text"});
        this.textField = textField;
        if (value) {
            textField.value = value;
        }
        this.rowElement.appendChild(textField);
        var onInputKeyDownBound = this.onInputKeyDown.bindAsEventListener(this);
        textField.observe("keydown", onInputKeyDownBound);
        textField.focus();
        textField.select();
    },

    stopEditing: function REC_stopEditing(accept) {
        var displayValue = (accept ? this.textField.value : this.initialValue);
        this.textField = null;
        this.emptyRow();
        var rowElement = this.rowElement;
        rowElement.removeClassName("editing");
        rowElement.appendChild(document.createTextNode(displayValue));
        this.initialValue = null;

        $(document.body).stopObserving("mousedown", this.onBodyMouseDownBound);
        this.onBodyMouseDownBound = null;

        if (this.notifyEndEditingCallback) {
            this.notifyEndEditingCallback(this);
        }
    },

    acceptEdition: function REC_acceptEdition() {
        var newValue = this.textField.value;
        var isValid = (newValue && newValue.length > 0);
        if (this.initialValue != newValue
            && isValid
            && this.notifyNewValueCallback) {
            this.notifyNewValueCallback(this, newValue);
        }
        this.stopEditing(isValid);
    },
    cancelEdition: function REC_acceptEdition() {
        this.stopEditing(false);
    },

    /* event handlers */
    onRowDblClick: function REC_onRowDblClick(event) {
        if (!this.textField) {
            this.startEditing();
            event.stop();
        }
    },

    onInputKeyDown: function REC_onInputKeyDown(event) {
        if (event.keyCode == Event.KEY_ESC) {
            this.cancelEdition();
            event.stop();
        }
        else if (event.keyCode == Event.KEY_RETURN) {
            this.acceptEdition();
            event.stop();
        }
        else if (event.keyCode == Event.KEY_TAB) {
            this.acceptEdition();
        }
    },
    onBodyMouseDown: function REC_onBodyMouseDown(event) {
        if (event.target != this.textField) {
            this.acceptEdition();
        }
    }
};