(serverProcessorURL)
| 7913 | scheduler2.setDp(); |
| 7914 | } |
| 7915 | function DataProcessor(serverProcessorURL) { |
| 7916 | this.serverProcessor = serverProcessorURL; |
| 7917 | this.action_param = "!nativeeditor_status"; |
| 7918 | this.object = null; |
| 7919 | this.updatedRows = []; |
| 7920 | this.autoUpdate = true; |
| 7921 | this.updateMode = "cell"; |
| 7922 | this._tMode = "GET"; |
| 7923 | this._headers = null; |
| 7924 | this._payload = null; |
| 7925 | this.post_delim = "_"; |
| 7926 | this._waitMode = 0; |
| 7927 | this._in_progress = {}; |
| 7928 | this._invalid = {}; |
| 7929 | this.messages = []; |
| 7930 | this.styles = { updated: "font-weight:bold;", inserted: "font-weight:bold;", deleted: "text-decoration : line-through;", invalid: "background-color:FFE0E0;", invalid_cell: "border-bottom:2px solid red;", error: "color:red;", clear: "font-weight:normal;text-decoration:none;" }; |
| 7931 | this.enableUTFencoding(true); |
| 7932 | makeEventable(this); |
| 7933 | return this; |
| 7934 | } |
| 7935 | DataProcessor.prototype = { setTransactionMode: function(mode, total) { |
| 7936 | if (typeof mode == "object") { |
| 7937 | this._tMode = mode.mode || this._tMode; |
nothing calls this directly
no test coverage detected