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

« back to all changes in this revision

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

  • Committer: dcoles
  • Date: 2008-03-04 11:38:02 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:642
makeuser.py: Needs to import random

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, "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
 
    }
 
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
254
235
 
255
236
    if (typeof(inputbox) == "string")
256
237
    {
257
 
        var inputline = inputbox + "\n";
 
238
        var inputline = inputbox;
258
239
        inputbox = null;
 
240
        var graytimer = null;
259
241
    }
260
242
    else
261
243
    {
262
 
        /* Disable the text box */
263
 
        inputbox.setAttribute("disabled", "disabled");
264
 
 
265
 
        var inputline = inputbox.value + "\n";
 
244
        GLOBAL_inputbox = inputbox;     /* For timer */
 
245
        var inputline = inputbox.value;
 
246
        var graytimer = setTimeout("GLOBAL_inputbox.setAttribute(\"class\", "
 
247
            + "\"disabled\");", 100);
266
248
    }
267
249
    var output = document.getElementById("console_output");
268
250
    {
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
251
        var span = document.createElement("span");
278
252
        span.setAttribute("class", "inputMsg");
279
 
        span.appendChild(document.createTextNode(inputline));
 
253
        span.appendChild(document.createTextNode(inputline + "\n"));
280
254
        output.appendChild(span);
281
255
    }
282
 
    var args = {"ivle.op": "chat", "kind": which, "key": server_key, "text":inputline};
 
256
    var args = {"key": server_key, "text":inputline};
283
257
    var callback = function(xhr)
284
258
        {
285
 
            console_response(inputbox, inputline, xhr.responseText);
 
259
            console_response(inputbox, graytimer, inputline, xhr.responseText);
286
260
        }
287
 
    ajax_call(callback, "console", "service", args, "POST");
 
261
    /* Disable the text box */
 
262
    if (inputbox != null)
 
263
        inputbox.setAttribute("disabled", "disabled");
 
264
    ajax_call(callback, "consoleservice", which, args, "POST");
288
265
}
289
266
 
290
 
function console_response(inputbox, inputline, responseText)
 
267
function console_response(inputbox, graytimer, inputline, responseText)
291
268
{
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
 
    }
 
269
    var res = JSON.parse(responseText);
301
270
    var output = document.getElementById("console_output");
302
271
    if (res.hasOwnProperty('okay'))
303
272
    {
308
277
            output.appendChild(span);
309
278
        }
310
279
        // set the prompt to >>>
311
 
        set_prompt(">>>");
 
280
        var prompt = document.getElementById("console_prompt");
 
281
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
312
282
    }
313
283
    else if (res.hasOwnProperty('exc'))
314
284
    {
315
285
        // Failure!
316
286
        // print out the error message (res.exc)
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(">>>");
 
287
        var span = document.createElement("span");
 
288
        span.setAttribute("class", "errorMsg");
 
289
        span.appendChild(document.createTextNode(res.exc + "\n"));
 
290
        output.appendChild(span);
335
291
    }
336
292
    else if (res.hasOwnProperty('more'))
337
293
    {
338
294
        // Need more input, so set the prompt to ...
339
 
        set_prompt("...");
 
295
        var prompt = document.getElementById("console_prompt");
 
296
        prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
340
297
    }
341
298
    else if (res.hasOwnProperty('output'))
342
299
    {
346
303
        }
347
304
        var callback = function(xhr)
348
305
            {
349
 
                console_response(inputbox, null, xhr.responseText);
 
306
                console_response(inputbox, graytimer,
 
307
                                 null, xhr.responseText);
350
308
            }
351
309
        if (interrupted)
352
310
        {
356
314
        {
357
315
            var kind = "chat";
358
316
        }
359
 
        var args = {"ivle.op": "chat", "kind": kind, "key": server_key, "text":''};
360
 
        ajax_call(callback, "console", "service", args, "POST");
 
317
        var args = {"key": server_key, "text":''};
 
318
        ajax_call(callback, "consoleservice", kind, args, "POST");
361
319
 
362
320
        // Open up the console so we can see the output
363
321
        // FIXME: do we need to maximize here?
369
327
        // Return early, so we don't re-enable the input box.
370
328
        return;
371
329
    }
372
 
    else
373
 
    {
 
330
    else {
374
331
        // assert res.hasOwnProperty('input')
375
 
        set_prompt("...");
 
332
        var prompt = document.getElementById("console_prompt");
 
333
        prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
376
334
    }
377
335
 
378
336
    if (inputbox != null)
379
337
    {
380
338
        /* Re-enable the text box */
 
339
        clearTimeout(graytimer);
381
340
        inputbox.removeAttribute("disabled");
 
341
        inputbox.removeAttribute("class");
382
342
        interrupted = false;
383
343
    }
384
344
 
388
348
    divScroll.activeScroll();
389
349
 
390
350
    // Focus the input box by default
391
 
    document.getElementById("console_output").focus();
392
 
    document.getElementById("console_inputText").focus();
 
351
    // document.getElementById("console_inputText").focus()
393
352
}
394
353
 
395
354
function catch_input(key)
448
407
    }
449
408
}
450
409
 
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
410
/**** Following Code modified from ******************************************/
494
411
/**** http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html ***/
495
412
/****************************************************************************/
507
424
        
508
425
    if (scrollDiv.scrollHeight > 0)
509
426
        currentHeight = scrollDiv.scrollHeight;
510
 
    else if (scrollDiv.offsetHeight > 0)
511
 
        currentHeight = scrollDiv.offsetHeight;
 
427
    else 
 
428
        if (objDiv.offsetHeight > 0)
 
429
            currentHeight = scrollDiv.offsetHeight;
512
430
 
513
431
    scrollDiv.scrollTop = currentHeight;
514
432