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

« back to all changes in this revision

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

  • Committer: apeel
  • Date: 2008-07-28 13:31:54 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:965
Added paragraph on checking the svn logs to see whether modifications have
been made to the database or jails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
interrupted = false;
38
38
 
39
 
 
40
 
function get_console_start_directory()
41
 
{
42
 
    if((typeof(current_path) != 'undefined') && current_file)
43
 
    {
44
 
        // We have a current_path - give a suggestion to the server
45
 
        var path;
46
 
        if (current_file.isdir)
47
 
        {
48
 
            // Browser
49
 
            return path_join("/home", current_path);
50
 
        }
51
 
        else
52
 
        {
53
 
            // Editor - need to chop off filename
54
 
            var tmp_path = current_path.split('/');
55
 
            tmp_path.pop();
56
 
            return path_join("/home", tmp_path.join('/'));
57
 
        }
58
 
    }
59
 
    else
60
 
    {
61
 
        // No current_path - let the server decide
62
 
        return '';
63
 
    }
64
 
}
65
 
 
66
39
/* Starts the console server, if it isn't already.
67
40
 * This can be called any number of times - it only starts the one server.
68
41
 * Note that this is asynchronous. It will return after signalling to start
85
58
    var callback1 = function(xhr)
86
59
        {
87
60
            var json_text = xhr.responseText;
88
 
            try
89
 
            {
90
 
                server_key = JSON.parse(json_text).key;
91
 
                server_started = true;
92
 
                if (callback != null)
93
 
                    callback();
94
 
            }
95
 
            catch (e)
96
 
            {
97
 
                alert("An error occured when starting the IVLE console. " +
98
 
                    "Please refresh the page and try again.\n" +
99
 
                    "Details have been logged for further examination.")
100
 
            }
 
61
            server_key = JSON.parse(json_text);
 
62
            server_started = true;
 
63
            if (callback != null)
 
64
                callback();
101
65
        }
102
66
 
103
 
    ajax_call(
104
 
        callback1, "console", "service",
105
 
        {"ivle.op": "start", "cwd": get_console_start_directory()}, 
106
 
        "POST");
 
67
    //var current_path;
 
68
    if(typeof(current_path) != 'undefined')
 
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
    }
107
91
}
108
92
 
109
93
/** Initialises the console. All apps which import console are required to
133
117
function console_minimize()
134
118
{
135
119
    if (!windowpane_mode) return;
136
 
    console_body.setAttribute("class", "console_body windowpane minimal");
 
120
    console_body.setAttribute("class", "windowpane minimal");
137
121
    console_filler.setAttribute("class", "windowpane minimal");
138
122
}
139
123
 
142
126
function console_maximize()
143
127
{
144
128
    if (!windowpane_mode) return;
145
 
    console_body.setAttribute("class", "console_body windowpane maximal");
 
129
    console_body.setAttribute("class", "windowpane maximal");
146
130
    console_filler.setAttribute("class", "windowpane maximal");
147
131
}
148
132
 
270
254
 
271
255
    if (typeof(inputbox) == "string")
272
256
    {
273
 
        var inputline = inputbox + "\n";
 
257
        var inputline = inputbox;
274
258
        inputbox = null;
 
259
        var graytimer = null;
275
260
    }
276
261
    else
277
262
    {
278
 
        /* Disable the text box */
279
 
        inputbox.setAttribute("disabled", "disabled");
280
 
 
281
 
        var inputline = inputbox.value + "\n";
 
263
        GLOBAL_inputbox = inputbox;     /* For timer */
 
264
        var inputline = inputbox.value;
 
265
        var graytimer = setTimeout("GLOBAL_inputbox.setAttribute(\"class\", "
 
266
            + "\"disabled\");", 100);
282
267
    }
283
268
    var output = document.getElementById("console_output");
284
269
    {
285
270
        // Print ">>>" span
286
271
        var span = document.createElement("span");
287
272
        span.setAttribute("class", "inputPrompt");
288
 
        span.appendChild(document.createTextNode(
289
 
              document.getElementById("console_prompt").firstChild.nodeValue)
290
 
                        );
 
273
        span.appendChild(document.createTextNode(">>> "));
291
274
        output.appendChild(span);
292
275
        // Print input line itself in a span
293
276
        var span = document.createElement("span");
294
277
        span.setAttribute("class", "inputMsg");
295
 
        span.appendChild(document.createTextNode(inputline));
 
278
        span.appendChild(document.createTextNode(inputline + "\n"));
296
279
        output.appendChild(span);
297
280
    }
298
 
    var args = {
299
 
        "ivle.op": "chat", "kind": which, "key": server_key,
300
 
        "text": inputline, "cwd": get_console_start_directory()
301
 
        };
 
281
    var args = {"key": server_key, "text":inputline};
302
282
    var callback = function(xhr)
303
283
        {
304
 
            console_response(inputbox, inputline, xhr.responseText);
 
284
            console_response(inputbox, graytimer, inputline, xhr.responseText);
305
285
        }
306
 
    ajax_call(callback, "console", "service", args, "POST");
 
286
    /* Disable the text box */
 
287
    if (inputbox != null)
 
288
        inputbox.setAttribute("disabled", "disabled");
 
289
    ajax_call(callback, "consoleservice", which, args, "POST");
307
290
}
308
291
 
309
 
function console_response(inputbox, inputline, responseText)
 
292
function console_response(inputbox, graytimer, inputline, responseText)
310
293
{
311
294
    try
312
295
    {
320
303
    var output = document.getElementById("console_output");
321
304
    if (res.hasOwnProperty('okay'))
322
305
    {
323
 
        // Success!
324
 
        if (res.okay)
325
 
        {
326
 
            output.appendChild(document.createTextNode(res.okay + "\n"));
327
 
            output.appendChild(span);
328
 
        }
329
306
        // set the prompt to >>>
330
 
        set_prompt(">>>");
 
307
        var prompt = document.getElementById("console_prompt");
 
308
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
331
309
    }
332
310
    else if (res.hasOwnProperty('exc'))
333
311
    {
334
312
        // Failure!
335
313
        // print out the error message (res.exc)
336
 
        print_error(res.exc);
337
 
        
 
314
        var span = document.createElement("span");
 
315
        span.setAttribute("class", "errorMsg");
 
316
        span.appendChild(document.createTextNode(res.exc + "\n"));
 
317
        output.appendChild(span);
338
318
        // set the prompt to >>>
339
 
        set_prompt(">>>");
 
319
        var prompt = document.getElementById("console_prompt");
 
320
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
340
321
    }
341
322
    else if (res.hasOwnProperty('restart') && res.hasOwnProperty('key'))
342
323
    {
347
328
 
348
329
        // Print a reason to explain why we'd do such a horrible thing
349
330
        // (console timeout, server error etc.)
350
 
        print_error("Console Restart: " + res.restart);
351
 
        
 
331
        var span = document.createElement("span");
 
332
        span.setAttribute("class", "errorMsg");
 
333
        span.appendChild(document.createTextNode("Console Restart: " + res.restart + "\n"));
 
334
        output.appendChild(span);
352
335
        // set the prompt to >>>
353
 
        set_prompt(">>>");
 
336
        var prompt = document.getElementById("console_prompt");
 
337
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
 
338
 
354
339
    }
355
340
    else if (res.hasOwnProperty('more'))
356
341
    {
357
342
        // Need more input, so set the prompt to ...
358
 
        set_prompt("...");
 
343
        var prompt = document.getElementById("console_prompt");
 
344
        prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
359
345
    }
360
346
    else if (res.hasOwnProperty('output'))
361
347
    {
365
351
        }
366
352
        var callback = function(xhr)
367
353
            {
368
 
                console_response(inputbox, null, xhr.responseText);
 
354
                console_response(inputbox, graytimer,
 
355
                                 null, xhr.responseText);
369
356
            }
370
357
        if (interrupted)
371
358
        {
375
362
        {
376
363
            var kind = "chat";
377
364
        }
378
 
        var args = {
379
 
            "ivle.op": "chat", "kind": kind, "key": server_key,
380
 
            "text": '', "cwd": get_console_start_directory()
381
 
            };
382
 
        ajax_call(callback, "console", "service", args, "POST");
 
365
        var args = {"key": server_key, "text":''};
 
366
        ajax_call(callback, "consoleservice", kind, args, "POST");
383
367
 
384
368
        // Open up the console so we can see the output
385
369
        // FIXME: do we need to maximize here?
391
375
        // Return early, so we don't re-enable the input box.
392
376
        return;
393
377
    }
394
 
    else if (res.hasOwnProperty('input'))
395
 
    {
396
 
        set_prompt("+++");
397
 
    }
398
 
    else
399
 
    {
400
 
        alert("An internal error occurred in the python console.");
401
 
        return;
 
378
    else {
 
379
        // assert res.hasOwnProperty('input')
 
380
        var prompt = document.getElementById("console_prompt");
 
381
        prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
402
382
    }
403
383
 
404
384
    if (inputbox != null)
405
385
    {
406
386
        /* Re-enable the text box */
 
387
        clearTimeout(graytimer);
407
388
        inputbox.removeAttribute("disabled");
 
389
        inputbox.removeAttribute("class");
408
390
        interrupted = false;
409
391
    }
410
392
 
414
396
    divScroll.activeScroll();
415
397
 
416
398
    // Focus the input box by default
417
 
    document.getElementById("console_output").focus();
418
 
    document.getElementById("console_inputText").focus();
 
399
    document.getElementById("console_output").focus()
 
400
    document.getElementById("console_inputText").focus()
419
401
}
420
402
 
421
403
function catch_input(key)
460
442
            hist.submit(inp.value);
461
443
            inp.value = hist.curr();
462
444
        }
463
 
 
464
 
        /* Disable the text box. This will be redone by
465
 
         * console_enter_line, but we do it here too in case start_server
466
 
         * takes a while.
467
 
         */
468
 
        inp.setAttribute("disabled", "disabled");
469
445
        /* Start the server if it hasn't already been started */
470
446
        start_server(callback);
471
447
        break;
472
448
    case 38:                /* Up arrow */
473
449
        hist.up(inp.value);
474
450
        inp.value = hist.curr();
475
 
        /* Inhibit further responses to this event, or WebKit moves the
476
 
         * cursor to the start. */
477
 
        return false;
478
451
        break;
479
452
    case 40:                /* Down arrow */
480
453
        hist.down(inp.value);
481
454
        inp.value = hist.curr();
482
 
        return false;
483
455
        break;
484
456
    }
485
457
}
486
458
 
487
 
/** Resets the console by signalling the old console to expire and starting a 
488
 
 * new one.
489
 
 */
490
 
function console_reset()
491
 
{
492
 
    // FIXME: We show some feedback here - either disable input or at very 
493
 
    // least the reset button.
494
 
 
495
 
    // Restart the console
496
 
    if(!server_started)
497
 
    {
498
 
        start_server(null);
499
 
    }
500
 
    else
501
 
    {
502
 
        xhr = ajax_call(null, "console", "service", {"ivle.op": "chat", "kind": "terminate", "key": server_key, "cwd": get_console_start_directory()}, "POST");
503
 
        console_response(null, null, xhr.responseText);
504
 
    }
505
 
}
506
 
 
507
 
/** Prints an error line in the console **/
508
 
function print_error(error)
509
 
510
 
    var output = document.getElementById("console_output");
511
 
  
512
 
    // Create text block
513
 
    var span = document.createElement("span");
514
 
    span.setAttribute("class", "errorMsg");
515
 
    span.appendChild(document.createTextNode(error + "\n"));
516
 
    output.appendChild(span);
517
 
 
518
 
    // Autoscroll
519
 
    divScroll.activeScroll();
520
 
}
521
 
 
522
 
/** Sets the prompt text **/
523
 
function set_prompt(prompt_text)
524
 
{
525
 
    var prompt = document.getElementById("console_prompt");
526
 
    prompt.replaceChild(document.createTextNode(prompt_text + " "), prompt.firstChild);
527
 
}
528
 
 
529
459
/**** Following Code modified from ******************************************/
530
460
/**** http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html ***/
531
461
/****************************************************************************/
543
473
        
544
474
    if (scrollDiv.scrollHeight > 0)
545
475
        currentHeight = scrollDiv.scrollHeight;
546
 
    else if (scrollDiv.offsetHeight > 0)
547
 
        currentHeight = scrollDiv.offsetHeight;
 
476
    else 
 
477
        if (objDiv.offsetHeight > 0)
 
478
            currentHeight = scrollDiv.offsetHeight;
548
479
 
549
480
    scrollDiv.scrollTop = currentHeight;
550
481