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

« back to all changes in this revision

Viewing changes to ivle/webapp/console/media/console.js

  • Committer: William Grant
  • Date: 2009-06-29 01:55:55 UTC
  • mto: This revision was merged to the branch mainline in revision 1322.
  • Revision ID: grantw@unimelb.edu.au-20090629015555-49xxv0piiieunx8e
Add docs on configuring Apache.

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