~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-01 01:59:10 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:630
subjects: Added subjects/subjects.css to correctly style the iframe.
    Added "sample" subject home page with minimal instructions on how to make
    a subject home page.
    Link to subjects.css.
Set svn:ignore on apps/subjects and apps/home (*.pyc).

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
    var callback1 = function(xhr)
59
59
        {
60
60
            var json_text = xhr.responseText;
61
 
            server_key = JSON.parse(json_text).key;
 
61
            server_key = JSON.parse(json_text);
62
62
            server_started = true;
63
63
            if (callback != null)
64
64
                callback();
65
65
        }
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
 
    }
 
66
    ajax_call(callback1, "consoleservice", "start", {}, "POST");
91
67
}
92
68
 
93
69
/** Initialises the console. All apps which import console are required to
110
86
        windowpane_mode = true;
111
87
        console_minimize();
112
88
    }
 
89
    /* TEMP: Start the server now.
 
90
     * Ultimately we want the server to start only when a line is typed, but
 
91
     * it currently does it asynchronously and doesn't start in time for the
 
92
     * first line. */
 
93
    start_server();
113
94
}
114
95
 
115
96
/** Hide the main console panel, so the console minimizes to just an input box
261
242
    else
262
243
    {
263
244
        GLOBAL_inputbox = inputbox;     /* For timer */
264
 
        var inputline = inputbox.value + "\n";
 
245
        var inputline = inputbox.value;
265
246
        var graytimer = setTimeout("GLOBAL_inputbox.setAttribute(\"class\", "
266
247
            + "\"disabled\");", 100);
267
248
    }
268
249
    var output = document.getElementById("console_output");
269
250
    {
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
251
        var span = document.createElement("span");
279
252
        span.setAttribute("class", "inputMsg");
280
 
        span.appendChild(document.createTextNode(inputline));
 
253
        span.appendChild(document.createTextNode(inputline + "\n"));
281
254
        output.appendChild(span);
282
255
    }
283
256
    var args = {"key": server_key, "text":inputline};
293
266
 
294
267
function console_response(inputbox, graytimer, inputline, responseText)
295
268
{
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
 
    }
 
269
    var res = JSON.parse(responseText);
305
270
    var output = document.getElementById("console_output");
306
271
    if (res.hasOwnProperty('okay'))
307
272
    {
312
277
            output.appendChild(span);
313
278
        }
314
279
        // set the prompt to >>>
315
 
        set_prompt(">>>");
 
280
        var prompt = document.getElementById("console_prompt");
 
281
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
316
282
    }
317
283
    else if (res.hasOwnProperty('exc'))
318
284
    {
319
285
        // Failure!
320
286
        // 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(">>>");
 
287
        var span = document.createElement("span");
 
288
        span.setAttribute("class", "errorMsg");
 
289
        span.appendChild(document.createTextNode(res.exc + "\n"));
 
290
        output.appendChild(span);
339
291
    }
340
292
    else if (res.hasOwnProperty('more'))
341
293
    {
342
294
        // Need more input, so set the prompt to ...
343
 
        set_prompt("...");
 
295
        var prompt = document.getElementById("console_prompt");
 
296
        prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
344
297
    }
345
298
    else if (res.hasOwnProperty('output'))
346
299
    {
374
327
        // Return early, so we don't re-enable the input box.
375
328
        return;
376
329
    }
377
 
    else
378
 
    {
 
330
    else {
379
331
        // assert res.hasOwnProperty('input')
380
 
        set_prompt("...");
 
332
        var prompt = document.getElementById("console_prompt");
 
333
        prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
381
334
    }
382
335
 
383
336
    if (inputbox != null)
395
348
    divScroll.activeScroll();
396
349
 
397
350
    // Focus the input box by default
398
 
    document.getElementById("console_output").focus();
399
 
    document.getElementById("console_inputText").focus();
 
351
    // document.getElementById("console_inputText").focus()
400
352
}
401
353
 
402
354
function catch_input(key)
455
407
    }
456
408
}
457
409
 
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
410
/**** Following Code modified from ******************************************/
501
411
/**** http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html ***/
502
412
/****************************************************************************/
514
424
        
515
425
    if (scrollDiv.scrollHeight > 0)
516
426
        currentHeight = scrollDiv.scrollHeight;
517
 
    else if (scrollDiv.offsetHeight > 0)
518
 
        currentHeight = scrollDiv.offsetHeight;
 
427
    else 
 
428
        if (objDiv.offsetHeight > 0)
 
429
            currentHeight = scrollDiv.offsetHeight;
519
430
 
520
431
    scrollDiv.scrollTop = currentHeight;
521
432