~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/media/console/console.js

  • Committer: mattgiuca
  • Date: 2008-03-05 04:34:27 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:647
phpBB3 - Added svn:ignore on autoconfigged file, config.php.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * Date: 30/1/2008
21
21
 */
22
22
 
23
 
digest_constant = "hello";
24
 
 
25
 
var server_host;
26
 
var server_port;
27
 
var server_magic;
 
23
var server_key;
28
24
 
29
25
/* Begin religious debate (tabs vs spaces) here: */
30
26
/* (This string will be inserted in the console when the user presses the Tab
38
34
windowpane_mode = false;
39
35
server_started = false;
40
36
 
 
37
interrupted = false;
 
38
 
41
39
/* Starts the console server, if it isn't already.
42
40
 * This can be called any number of times - it only starts the one server.
 
41
 * Note that this is asynchronous. It will return after signalling to start
 
42
 * the server, but there is no guarantee that it has been started yet.
43
43
 * This is a separate step from console_init, as the server is only to be
44
44
 * started once the first command is entered.
45
45
 * Does not return a value. Writes to global variables
46
 
 * server_host, server_port, server_magic.
 
46
 * server_host, and server_port.
 
47
 *
 
48
 * \param callback Function which will be called after the server has been
 
49
 * started. No parameters are passed. May be null.
47
50
 */
48
 
function start_server()
 
51
function start_server(callback)
49
52
{
50
 
    if (server_started) return;
51
 
    var xhr = ajax_call("consoleservice", "start", {}, "POST");
52
 
    var json_text = xhr.responseText;
53
 
    var server_info = JSON.parse(json_text);
54
 
    server_host = server_info.host;
55
 
    server_port = server_info.port;
56
 
    server_magic = server_info.magic;
57
 
    server_started = true;
 
53
    if (server_started)
 
54
    {
 
55
        callback();
 
56
        return;
 
57
    }
 
58
    var callback1 = function(xhr)
 
59
        {
 
60
            var json_text = xhr.responseText;
 
61
            server_key = JSON.parse(json_text);
 
62
            server_started = true;
 
63
            if (callback != null)
 
64
                callback();
 
65
        }
 
66
    ajax_call(callback1, "consoleservice", "start", {}, "POST");
58
67
}
59
68
 
60
69
/** Initialises the console. All apps which import console are required to
100
109
    if (!windowpane_mode) return;
101
110
    console_body.setAttribute("class", "windowpane maximal");
102
111
    console_filler.setAttribute("class", "windowpane maximal");
103
 
    /* Focus the input box by default */
104
 
    document.getElementById("console_inputText").focus()
105
112
}
106
113
 
107
114
/* current_text is the string currently on the command line.
204
211
 
205
212
var hist = new History();
206
213
 
 
214
function set_interrupt()
 
215
{
 
216
    interrupted = true;
 
217
}
 
218
 
 
219
function clear_output()
 
220
{
 
221
    var output = document.getElementById("console_output");
 
222
    while (output.firstChild)
 
223
    {
 
224
        output.removeChild(output.firstChild);
 
225
    }
 
226
}
 
227
 
207
228
/** Send a line of text to the Python server, wait for its return, and react
208
229
 * to its response by writing to the output box.
209
230
 * Also maximize the console window if not already.
210
231
 */
211
 
function console_enter_line(inputline, which)
212
 
{
213
 
    /* Start the server if it hasn't already been started */
214
 
    start_server();
215
 
    var digest = hex_md5(inputline + server_magic);
216
 
    var args = {"host": server_host, "port": server_port,
217
 
                    "digest":digest, "text":inputline};
218
 
    var xmlhttp = ajax_call("consoleservice", which, args, "POST");
219
 
 
220
 
    var res = JSON.parse(xmlhttp.responseText);
221
 
    var output = document.getElementById("console_output");
222
 
    {
223
 
        var pre = document.createElement("pre");
224
 
        pre.setAttribute("class", "inputMsg");
225
 
        pre.appendChild(document.createTextNode(inputline + "\n"));
226
 
        output.appendChild(pre);
227
 
    }
 
232
function console_enter_line(inputbox, which)
 
233
{
 
234
    interrupted = false;
 
235
 
 
236
    if (typeof(inputbox) == "string")
 
237
    {
 
238
        var inputline = inputbox;
 
239
        inputbox = null;
 
240
        var graytimer = null;
 
241
    }
 
242
    else
 
243
    {
 
244
        GLOBAL_inputbox = inputbox;     /* For timer */
 
245
        var inputline = inputbox.value;
 
246
        var graytimer = setTimeout("GLOBAL_inputbox.setAttribute(\"class\", "
 
247
            + "\"disabled\");", 100);
 
248
    }
 
249
    var output = document.getElementById("console_output");
 
250
    {
 
251
        var span = document.createElement("span");
 
252
        span.setAttribute("class", "inputMsg");
 
253
        span.appendChild(document.createTextNode(inputline + "\n"));
 
254
        output.appendChild(span);
 
255
    }
 
256
    var args = {"key": server_key, "text":inputline};
 
257
    var callback = function(xhr)
 
258
        {
 
259
            console_response(inputbox, graytimer, inputline, xhr.responseText);
 
260
        }
 
261
    /* Disable the text box */
 
262
    if (inputbox != null)
 
263
        inputbox.setAttribute("disabled", "disabled");
 
264
    ajax_call(callback, "consoleservice", which, args, "POST");
 
265
}
 
266
 
 
267
function console_response(inputbox, graytimer, inputline, responseText)
 
268
{
 
269
    try
 
270
    {
 
271
        var res = JSON.parse(responseText);
 
272
    }
 
273
    catch (e)
 
274
    {
 
275
        alert("An internal error occurred in the python console.");
 
276
        return;
 
277
    }
 
278
    var output = document.getElementById("console_output");
228
279
    if (res.hasOwnProperty('okay'))
229
280
    {
230
281
        // Success!
231
 
        // print out the output (res.okay[0])
232
 
        var pre = document.createElement("pre");
233
 
        pre.setAttribute("class", "outputMsg");
234
 
        pre.appendChild(document.createTextNode(res.okay[0]));
235
 
        output.appendChild(pre);
236
 
        // print out the return value (res.okay[1])
237
 
        if (res.okay[1])
 
282
        if (res.okay)
238
283
        {
239
 
            var pre = document.createElement("pre");
240
 
            pre.setAttribute("class", "outputMsg");
241
 
            pre.appendChild(document.createTextNode(res.okay[1] + "\n"));
242
 
            output.appendChild(pre);
 
284
            output.appendChild(document.createTextNode(res.okay + "\n"));
 
285
            output.appendChild(span);
243
286
        }
244
287
        // set the prompt to >>>
245
288
        var prompt = document.getElementById("console_prompt");
248
291
    else if (res.hasOwnProperty('exc'))
249
292
    {
250
293
        // Failure!
251
 
        // print out any output that came before the error
252
 
        if (res.exc[0].length > 0)
253
 
        {
254
 
            var pre = document.createElement("pre");
255
 
            pre.setAttribute("class", "outputMsg");
256
 
            pre.appendChild(document.createTextNode(res.exc[0]));
257
 
            output.appendChild(pre);
258
 
        }
259
 
 
260
294
        // print out the error message (res.exc)
261
 
        var pre = document.createElement("pre");
262
 
        pre.setAttribute("class", "errorMsg");
263
 
        pre.appendChild(document.createTextNode(res.exc[1]));
264
 
        output.appendChild(pre);
 
295
        var span = document.createElement("span");
 
296
        span.setAttribute("class", "errorMsg");
 
297
        span.appendChild(document.createTextNode(res.exc + "\n"));
 
298
        output.appendChild(span);
265
299
    }
266
300
    else if (res.hasOwnProperty('more'))
267
301
    {
269
303
        var prompt = document.getElementById("console_prompt");
270
304
        prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
271
305
    }
 
306
    else if (res.hasOwnProperty('output'))
 
307
    {
 
308
        if (res.output.length > 0)
 
309
        {
 
310
            output.appendChild(document.createTextNode(res.output));
 
311
        }
 
312
        var callback = function(xhr)
 
313
            {
 
314
                console_response(inputbox, graytimer,
 
315
                                 null, xhr.responseText);
 
316
            }
 
317
        if (interrupted)
 
318
        {
 
319
            var kind = "interrupt";
 
320
        }
 
321
        else
 
322
        {
 
323
            var kind = "chat";
 
324
        }
 
325
        var args = {"key": server_key, "text":''};
 
326
        ajax_call(callback, "consoleservice", kind, args, "POST");
 
327
 
 
328
        // Open up the console so we can see the output
 
329
        // FIXME: do we need to maximize here?
 
330
        console_maximize();
 
331
 
 
332
        /* Auto-scrolling */
 
333
        divScroll.activeScroll();
 
334
 
 
335
        // Return early, so we don't re-enable the input box.
 
336
        return;
 
337
    }
272
338
    else {
273
339
        // assert res.hasOwnProperty('input')
274
340
        var prompt = document.getElementById("console_prompt");
275
341
        prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
276
342
    }
 
343
 
 
344
    if (inputbox != null)
 
345
    {
 
346
        /* Re-enable the text box */
 
347
        clearTimeout(graytimer);
 
348
        inputbox.removeAttribute("disabled");
 
349
        inputbox.removeAttribute("class");
 
350
        interrupted = false;
 
351
    }
 
352
 
277
353
    /* Open up the console so we can see the output */
278
354
    console_maximize();
 
355
    /* Auto-scrolling */
 
356
    divScroll.activeScroll();
 
357
 
 
358
    // Focus the input box by default
 
359
    document.getElementById("console_output").focus()
 
360
    document.getElementById("console_inputText").focus()
279
361
}
280
362
 
281
363
function catch_input(key)
313
395
         */
314
396
        break;
315
397
    case 13:                /* Enter key */
316
 
        /* Send the line of text to the server */
317
 
        console_enter_line(inp.value, "chat");
318
 
        hist.submit(inp.value);
319
 
        inp.value = hist.curr();
 
398
        var callback = function()
 
399
        {
 
400
            /* Send the line of text to the server */
 
401
            console_enter_line(inp, "chat");
 
402
            hist.submit(inp.value);
 
403
            inp.value = hist.curr();
 
404
        }
 
405
        /* Start the server if it hasn't already been started */
 
406
        start_server(callback);
320
407
        break;
321
408
    case 38:                /* Up arrow */
322
409
        hist.up(inp.value);
328
415
        break;
329
416
    }
330
417
}
 
418
 
 
419
/**** Following Code modified from ******************************************/
 
420
/**** http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html ***/
 
421
/****************************************************************************/
 
422
var chatscroll = new Object();
 
423
 
 
424
chatscroll.Pane = function(scrollContainerId)
 
425
{
 
426
    this.scrollContainerId = scrollContainerId;
 
427
}
 
428
 
 
429
chatscroll.Pane.prototype.activeScroll = function()
 
430
{
 
431
    var scrollDiv = document.getElementById(this.scrollContainerId);
 
432
    var currentHeight = 0;
 
433
        
 
434
    if (scrollDiv.scrollHeight > 0)
 
435
        currentHeight = scrollDiv.scrollHeight;
 
436
    else 
 
437
        if (objDiv.offsetHeight > 0)
 
438
            currentHeight = scrollDiv.offsetHeight;
 
439
 
 
440
    scrollDiv.scrollTop = currentHeight;
 
441
 
 
442
    scrollDiv = null;
 
443
}
 
444
 
 
445
var divScroll = new chatscroll.Pane('console_output');