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

« back to all changes in this revision

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

  • Committer: agdimech
  • Date: 2008-02-29 00:03:08 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:615
media/common/edit_area/reg_syntax/brainfuck.js: Removed from Repository as inappropriate to have.
media/common/edit_area/edit_area_full.js: Edited to allow only js,xml,html,css and python.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
windowpane_mode = false;
35
35
server_started = false;
36
36
 
37
 
interrupted = false;
38
 
 
39
37
/* Starts the console server, if it isn't already.
40
38
 * This can be called any number of times - it only starts the one server.
41
39
 * Note that this is asynchronous. It will return after signalling to start
58
56
    var callback1 = function(xhr)
59
57
        {
60
58
            var json_text = xhr.responseText;
61
 
            server_key = JSON.parse(json_text).key;
 
59
            server_key = JSON.parse(json_text);
62
60
            server_started = true;
63
61
            if (callback != null)
64
62
                callback();
65
63
        }
66
 
 
67
 
    //var current_path;
68
 
    if((typeof(current_path) != 'undefined') && current_file)
69
 
    {
70
 
        // We have a current_path - give a suggestion to the server
71
 
        var path;
72
 
        if (current_file.isdir)
73
 
        {
74
 
            // Browser
75
 
            path = path_join("/home", current_path);
76
 
        }
77
 
        else
78
 
        {
79
 
            // Editor - need to chop off filename
80
 
            var tmp_path = current_path.split('/');
81
 
            tmp_path.pop();
82
 
            path = path_join("/home", tmp_path.join('/'));
83
 
        }
84
 
        ajax_call(callback1, "consoleservice", "start", {"startdir": path}, "POST");
85
 
    }
86
 
    else
87
 
    {
88
 
        // No current_path - let the server decide
89
 
        ajax_call(callback1, "consoleservice", "start", {}, "POST");
90
 
    }
 
64
    ajax_call(callback1, "consoleservice", "start", {}, "POST");
91
65
}
92
66
 
93
67
/** Initialises the console. All apps which import console are required to
110
84
        windowpane_mode = true;
111
85
        console_minimize();
112
86
    }
 
87
    /* TEMP: Start the server now.
 
88
     * Ultimately we want the server to start only when a line is typed, but
 
89
     * it currently does it asynchronously and doesn't start in time for the
 
90
     * first line. */
 
91
    start_server();
113
92
}
114
93
 
115
94
/** Hide the main console panel, so the console minimizes to just an input box
128
107
    if (!windowpane_mode) return;
129
108
    console_body.setAttribute("class", "windowpane maximal");
130
109
    console_filler.setAttribute("class", "windowpane maximal");
 
110
    /* Focus the input box by default */
 
111
    document.getElementById("console_inputText").focus()
131
112
}
132
113
 
133
114
/* current_text is the string currently on the command line.
230
211
 
231
212
var hist = new History();
232
213
 
233
 
function set_interrupt()
234
 
{
235
 
    interrupted = true;
236
 
}
237
 
 
238
 
function clear_output()
239
 
{
240
 
    var output = document.getElementById("console_output");
241
 
    while (output.firstChild)
242
 
    {
243
 
        output.removeChild(output.firstChild);
244
 
    }
245
 
}
246
 
 
247
214
/** Send a line of text to the Python server, wait for its return, and react
248
215
 * to its response by writing to the output box.
249
216
 * Also maximize the console window if not already.
250
217
 */
251
218
function console_enter_line(inputbox, which)
252
219
{
253
 
    interrupted = false;
254
 
 
255
220
    if (typeof(inputbox) == "string")
256
221
    {
257
222
        var inputline = inputbox;
261
226
    else
262
227
    {
263
228
        GLOBAL_inputbox = inputbox;     /* For timer */
264
 
        var inputline = inputbox.value + "\n";
 
229
        var inputline = inputbox.value;
265
230
        var graytimer = setTimeout("GLOBAL_inputbox.setAttribute(\"class\", "
266
231
            + "\"disabled\");", 100);
267
232
    }
268
 
    var output = document.getElementById("console_output");
269
 
    {
270
 
        // Print ">>>" span
271
 
        var span = document.createElement("span");
272
 
        span.setAttribute("class", "inputPrompt");
273
 
        span.appendChild(document.createTextNode(
274
 
              document.getElementById("console_prompt").firstChild.textContent)
275
 
                        );
276
 
        output.appendChild(span);
277
 
        // Print input line itself in a span
278
 
        var span = document.createElement("span");
279
 
        span.setAttribute("class", "inputMsg");
280
 
        span.appendChild(document.createTextNode(inputline));
281
 
        output.appendChild(span);
282
 
    }
283
233
    var args = {"key": server_key, "text":inputline};
284
234
    var callback = function(xhr)
285
235
        {
293
243
 
294
244
function console_response(inputbox, graytimer, inputline, responseText)
295
245
{
296
 
    try
297
 
    {
298
 
        var res = JSON.parse(responseText);
299
 
    }
300
 
    catch (e)
301
 
    {
302
 
        alert("An internal error occurred in the python console.");
303
 
        return;
304
 
    }
 
246
    var res = JSON.parse(responseText);
305
247
    var output = document.getElementById("console_output");
 
248
    if (inputline)
 
249
    {
 
250
        var pre = document.createElement("pre");
 
251
        pre.setAttribute("class", "inputMsg");
 
252
        pre.appendChild(document.createTextNode(inputline + "\n"));
 
253
        output.appendChild(pre);
 
254
    }
306
255
    if (res.hasOwnProperty('okay'))
307
256
    {
308
257
        // Success!
309
258
        if (res.okay)
310
259
        {
311
 
            output.appendChild(document.createTextNode(res.okay + "\n"));
312
 
            output.appendChild(span);
 
260
            var pre = document.createElement("pre");
 
261
            pre.setAttribute("class", "outputMsg");
 
262
            pre.appendChild(document.createTextNode(res.okay + "\n"));
 
263
            output.appendChild(pre);
313
264
        }
314
265
        // set the prompt to >>>
315
 
        set_prompt(">>>");
 
266
        var prompt = document.getElementById("console_prompt");
 
267
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
316
268
    }
317
269
    else if (res.hasOwnProperty('exc'))
318
270
    {
319
271
        // Failure!
320
272
        // print out the error message (res.exc)
321
 
        print_error(res.exc);
322
 
        
323
 
        // set the prompt to >>>
324
 
        set_prompt(">>>");
325
 
    }
326
 
    else if (res.hasOwnProperty('restart') && res.hasOwnProperty('key'))
327
 
    {
328
 
        // Server has indicated that the console should be restarted
329
 
        
330
 
        // Get the new key (host, port, magic)
331
 
        server_key = res.key;
332
 
 
333
 
        // Print a reason to explain why we'd do such a horrible thing
334
 
        // (console timeout, server error etc.)
335
 
        print_error("Console Restart: " + res.restart);
336
 
        
337
 
        // set the prompt to >>>
338
 
        set_prompt(">>>");
 
273
        var pre = document.createElement("pre");
 
274
        pre.setAttribute("class", "errorMsg");
 
275
        pre.appendChild(document.createTextNode(res.exc));
 
276
        output.appendChild(pre);
339
277
    }
340
278
    else if (res.hasOwnProperty('more'))
341
279
    {
342
280
        // Need more input, so set the prompt to ...
343
 
        set_prompt("...");
 
281
        var prompt = document.getElementById("console_prompt");
 
282
        prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
344
283
    }
345
284
    else if (res.hasOwnProperty('output'))
346
285
    {
347
286
        if (res.output.length > 0)
348
287
        {
349
 
            output.appendChild(document.createTextNode(res.output));
 
288
            var pre = document.createElement("pre");
 
289
            pre.setAttribute("class", "outputMsg");
 
290
            pre.appendChild(document.createTextNode(res.output));
 
291
            output.appendChild(pre);
350
292
        }
351
293
        var callback = function(xhr)
352
294
            {
353
295
                console_response(inputbox, graytimer,
354
296
                                 null, xhr.responseText);
355
297
            }
356
 
        if (interrupted)
357
 
        {
358
 
            var kind = "interrupt";
359
 
        }
360
 
        else
361
 
        {
362
 
            var kind = "chat";
363
 
        }
364
298
        var args = {"key": server_key, "text":''};
365
 
        ajax_call(callback, "consoleservice", kind, args, "POST");
366
 
 
367
 
        // Open up the console so we can see the output
368
 
        // FIXME: do we need to maximize here?
369
 
        console_maximize();
370
 
 
371
 
        /* Auto-scrolling */
372
 
        divScroll.activeScroll();
373
 
 
 
299
        ajax_call(callback, "consoleservice", "chat", args, "POST");
374
300
        // Return early, so we don't re-enable the input box.
375
301
        return;
376
302
    }
377
 
    else
378
 
    {
 
303
    else {
379
304
        // assert res.hasOwnProperty('input')
380
 
        set_prompt("...");
 
305
        var prompt = document.getElementById("console_prompt");
 
306
        prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
381
307
    }
382
308
 
383
309
    if (inputbox != null)
386
312
        clearTimeout(graytimer);
387
313
        inputbox.removeAttribute("disabled");
388
314
        inputbox.removeAttribute("class");
389
 
        interrupted = false;
390
315
    }
391
316
 
392
317
    /* Open up the console so we can see the output */
393
318
    console_maximize();
394
 
    /* Auto-scrolling */
395
 
    divScroll.activeScroll();
396
 
 
397
 
    // Focus the input box by default
398
 
    document.getElementById("console_output").focus();
399
 
    document.getElementById("console_inputText").focus();
400
319
}
401
320
 
402
321
function catch_input(key)
454
373
        break;
455
374
    }
456
375
}
457
 
 
458
 
/** Resets the console by signalling the old console to expire and starting a 
459
 
 * new one.
460
 
 */
461
 
function console_reset()
462
 
{
463
 
    // FIXME: We show some feedback here - either disable input or at very 
464
 
    // least the reset button.
465
 
 
466
 
    // Restart the console
467
 
    if(!server_started)
468
 
    {
469
 
        start_server(null);
470
 
    }
471
 
    else
472
 
    {
473
 
        xhr = ajax_call(null, "consoleservice", "restart", {"key": server_key}, "POST");
474
 
        console_response(null, null, null, xhr.responseText);
475
 
    }
476
 
}
477
 
 
478
 
/** Prints an error line in the console **/
479
 
function print_error(error)
480
 
481
 
    var output = document.getElementById("console_output");
482
 
  
483
 
    // Create text block
484
 
    var span = document.createElement("span");
485
 
    span.setAttribute("class", "errorMsg");
486
 
    span.appendChild(document.createTextNode(error + "\n"));
487
 
    output.appendChild(span);
488
 
 
489
 
    // Autoscroll
490
 
    divScroll.activeScroll();
491
 
}
492
 
 
493
 
/** Sets the prompt text **/
494
 
function set_prompt(prompt_text)
495
 
{
496
 
    var prompt = document.getElementById("console_prompt");
497
 
    prompt.replaceChild(document.createTextNode(prompt_text + " "), prompt.firstChild);
498
 
}
499
 
 
500
 
/**** Following Code modified from ******************************************/
501
 
/**** http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html ***/
502
 
/****************************************************************************/
503
 
var chatscroll = new Object();
504
 
 
505
 
chatscroll.Pane = function(scrollContainerId)
506
 
{
507
 
    this.scrollContainerId = scrollContainerId;
508
 
}
509
 
 
510
 
chatscroll.Pane.prototype.activeScroll = function()
511
 
{
512
 
    var scrollDiv = document.getElementById(this.scrollContainerId);
513
 
    var currentHeight = 0;
514
 
        
515
 
    if (scrollDiv.scrollHeight > 0)
516
 
        currentHeight = scrollDiv.scrollHeight;
517
 
    else if (scrollDiv.offsetHeight > 0)
518
 
        currentHeight = scrollDiv.offsetHeight;
519
 
 
520
 
    scrollDiv.scrollTop = currentHeight;
521
 
 
522
 
    scrollDiv = null;
523
 
}
524
 
 
525
 
var divScroll = new chatscroll.Pane('console_output');