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

« back to all changes in this revision

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

  • Committer: wagrant
  • Date: 2008-07-24 06:54:29 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:952
specialhome: Also be nice if a directory is blocked.

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.
 
41
 * Note that this is asynchronous. It will return after signalling to start
 
42
 * the server, but there is no guarantee that it has been started yet.
39
43
 * This is a separate step from console_init, as the server is only to be
40
44
 * started once the first command is entered.
41
45
 * Does not return a value. Writes to global variables
42
46
 * server_host, and server_port.
 
47
 *
 
48
 * \param callback Function which will be called after the server has been
 
49
 * started. No parameters are passed. May be null.
43
50
 */
44
 
function start_server()
 
51
function start_server(callback)
45
52
{
46
 
    if (server_started) return;
47
 
    var xhr = ajax_call("consoleservice", "start", {}, "POST");
48
 
    var json_text = xhr.responseText;
49
 
    server_key = JSON.parse(json_text);
50
 
    server_started = true;
 
53
    if (server_started)
 
54
    {
 
55
        callback();
 
56
        return;
 
57
    }
 
58
    var callback1 = function(xhr)
 
59
        {
 
60
            var json_text = xhr.responseText;
 
61
            server_key = JSON.parse(json_text);
 
62
            server_started = true;
 
63
            if (callback != null)
 
64
                callback();
 
65
        }
 
66
 
 
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
    }
51
91
}
52
92
 
53
93
/** Initialises the console. All apps which import console are required to
70
110
        windowpane_mode = true;
71
111
        console_minimize();
72
112
    }
73
 
    /* TEMP: Start the server now.
74
 
     * Ultimately we want the server to start only when a line is typed, but
75
 
     * it currently does it asynchronously and doesn't start in time for the
76
 
     * first line. */
77
 
    start_server();
78
113
}
79
114
 
80
115
/** Hide the main console panel, so the console minimizes to just an input box
93
128
    if (!windowpane_mode) return;
94
129
    console_body.setAttribute("class", "windowpane maximal");
95
130
    console_filler.setAttribute("class", "windowpane maximal");
96
 
    /* Focus the input box by default */
97
 
    document.getElementById("console_inputText").focus()
98
131
}
99
132
 
100
133
/* current_text is the string currently on the command line.
197
230
 
198
231
var hist = new History();
199
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
 
200
247
/** Send a line of text to the Python server, wait for its return, and react
201
248
 * to its response by writing to the output box.
202
249
 * Also maximize the console window if not already.
203
250
 */
204
 
function console_enter_line(inputline, which)
 
251
function console_enter_line(inputbox, which)
205
252
{
206
 
    /* Start the server if it hasn't already been started */
207
 
    start_server();
 
253
    interrupted = false;
 
254
 
 
255
    if (typeof(inputbox) == "string")
 
256
    {
 
257
        var inputline = inputbox;
 
258
        inputbox = null;
 
259
        var graytimer = null;
 
260
    }
 
261
    else
 
262
    {
 
263
        GLOBAL_inputbox = inputbox;     /* For timer */
 
264
        var inputline = inputbox.value;
 
265
        var graytimer = setTimeout("GLOBAL_inputbox.setAttribute(\"class\", "
 
266
            + "\"disabled\");", 100);
 
267
    }
 
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
        output.appendChild(span);
 
275
        // Print input line itself in a span
 
276
        var span = document.createElement("span");
 
277
        span.setAttribute("class", "inputMsg");
 
278
        span.appendChild(document.createTextNode(inputline + "\n"));
 
279
        output.appendChild(span);
 
280
    }
208
281
    var args = {"key": server_key, "text":inputline};
209
 
    var xmlhttp = ajax_call("consoleservice", which, args, "POST");
 
282
    var callback = function(xhr)
 
283
        {
 
284
            console_response(inputbox, graytimer, inputline, xhr.responseText);
 
285
        }
 
286
    /* Disable the text box */
 
287
    if (inputbox != null)
 
288
        inputbox.setAttribute("disabled", "disabled");
 
289
    ajax_call(callback, "consoleservice", which, args, "POST");
 
290
}
210
291
 
211
 
    var res = JSON.parse(xmlhttp.responseText);
 
292
function console_response(inputbox, graytimer, inputline, responseText)
 
293
{
 
294
    try
 
295
    {
 
296
        var res = JSON.parse(responseText);
 
297
    }
 
298
    catch (e)
 
299
    {
 
300
        alert("An internal error occurred in the python console.");
 
301
        return;
 
302
    }
212
303
    var output = document.getElementById("console_output");
213
 
    {
214
 
        var pre = document.createElement("pre");
215
 
        pre.setAttribute("class", "inputMsg");
216
 
        pre.appendChild(document.createTextNode(inputline + "\n"));
217
 
        output.appendChild(pre);
218
 
    }
219
304
    if (res.hasOwnProperty('okay'))
220
305
    {
221
 
        // Success!
222
 
        // print out the output (res.okay[0])
223
 
        var pre = document.createElement("pre");
224
 
        pre.setAttribute("class", "outputMsg");
225
 
        pre.appendChild(document.createTextNode(res.okay[0]));
226
 
        output.appendChild(pre);
227
 
        // print out the return value (res.okay[1])
228
 
        if (res.okay[1])
229
 
        {
230
 
            var pre = document.createElement("pre");
231
 
            pre.setAttribute("class", "outputMsg");
232
 
            pre.appendChild(document.createTextNode(res.okay[1] + "\n"));
233
 
            output.appendChild(pre);
234
 
        }
235
306
        // set the prompt to >>>
236
307
        var prompt = document.getElementById("console_prompt");
237
308
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
239
310
    else if (res.hasOwnProperty('exc'))
240
311
    {
241
312
        // Failure!
242
 
        // print out any output that came before the error
243
 
        if (res.exc[0].length > 0)
244
 
        {
245
 
            var pre = document.createElement("pre");
246
 
            pre.setAttribute("class", "outputMsg");
247
 
            pre.appendChild(document.createTextNode(res.exc[0]));
248
 
            output.appendChild(pre);
249
 
        }
250
 
 
251
313
        // print out the error message (res.exc)
252
 
        var pre = document.createElement("pre");
253
 
        pre.setAttribute("class", "errorMsg");
254
 
        pre.appendChild(document.createTextNode(res.exc[1]));
255
 
        output.appendChild(pre);
 
314
        var span = document.createElement("span");
 
315
        span.setAttribute("class", "errorMsg");
 
316
        span.appendChild(document.createTextNode(res.exc + "\n"));
 
317
        output.appendChild(span);
 
318
        // set the prompt to >>>
 
319
        var prompt = document.getElementById("console_prompt");
 
320
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
 
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
        var span = document.createElement("span");
 
332
        span.setAttribute("class", "errorMsg");
 
333
        span.appendChild(document.createTextNode("Console Restart: " + res.restart + "\n"));
 
334
        output.appendChild(span);
 
335
        // set the prompt to >>>
 
336
        var prompt = document.getElementById("console_prompt");
 
337
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
 
338
 
256
339
    }
257
340
    else if (res.hasOwnProperty('more'))
258
341
    {
260
343
        var prompt = document.getElementById("console_prompt");
261
344
        prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
262
345
    }
 
346
    else if (res.hasOwnProperty('output'))
 
347
    {
 
348
        if (res.output.length > 0)
 
349
        {
 
350
            output.appendChild(document.createTextNode(res.output));
 
351
        }
 
352
        var callback = function(xhr)
 
353
            {
 
354
                console_response(inputbox, graytimer,
 
355
                                 null, xhr.responseText);
 
356
            }
 
357
        if (interrupted)
 
358
        {
 
359
            var kind = "interrupt";
 
360
        }
 
361
        else
 
362
        {
 
363
            var kind = "chat";
 
364
        }
 
365
        var args = {"key": server_key, "text":''};
 
366
        ajax_call(callback, "consoleservice", kind, args, "POST");
 
367
 
 
368
        // Open up the console so we can see the output
 
369
        // FIXME: do we need to maximize here?
 
370
        console_maximize();
 
371
 
 
372
        /* Auto-scrolling */
 
373
        divScroll.activeScroll();
 
374
 
 
375
        // Return early, so we don't re-enable the input box.
 
376
        return;
 
377
    }
263
378
    else {
264
379
        // assert res.hasOwnProperty('input')
265
380
        var prompt = document.getElementById("console_prompt");
266
381
        prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
267
382
    }
 
383
 
 
384
    if (inputbox != null)
 
385
    {
 
386
        /* Re-enable the text box */
 
387
        clearTimeout(graytimer);
 
388
        inputbox.removeAttribute("disabled");
 
389
        inputbox.removeAttribute("class");
 
390
        interrupted = false;
 
391
    }
 
392
 
268
393
    /* Open up the console so we can see the output */
269
394
    console_maximize();
 
395
    /* Auto-scrolling */
 
396
    divScroll.activeScroll();
 
397
 
 
398
    // Focus the input box by default
 
399
    document.getElementById("console_output").focus()
 
400
    document.getElementById("console_inputText").focus()
270
401
}
271
402
 
272
403
function catch_input(key)
304
435
         */
305
436
        break;
306
437
    case 13:                /* Enter key */
307
 
        /* Send the line of text to the server */
308
 
        console_enter_line(inp.value, "chat");
309
 
        hist.submit(inp.value);
310
 
        inp.value = hist.curr();
 
438
        var callback = function()
 
439
        {
 
440
            /* Send the line of text to the server */
 
441
            console_enter_line(inp, "chat");
 
442
            hist.submit(inp.value);
 
443
            inp.value = hist.curr();
 
444
        }
 
445
        /* Start the server if it hasn't already been started */
 
446
        start_server(callback);
311
447
        break;
312
448
    case 38:                /* Up arrow */
313
449
        hist.up(inp.value);
319
455
        break;
320
456
    }
321
457
}
 
458
 
 
459
/**** Following Code modified from ******************************************/
 
460
/**** http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html ***/
 
461
/****************************************************************************/
 
462
var chatscroll = new Object();
 
463
 
 
464
chatscroll.Pane = function(scrollContainerId)
 
465
{
 
466
    this.scrollContainerId = scrollContainerId;
 
467
}
 
468
 
 
469
chatscroll.Pane.prototype.activeScroll = function()
 
470
{
 
471
    var scrollDiv = document.getElementById(this.scrollContainerId);
 
472
    var currentHeight = 0;
 
473
        
 
474
    if (scrollDiv.scrollHeight > 0)
 
475
        currentHeight = scrollDiv.scrollHeight;
 
476
    else 
 
477
        if (objDiv.offsetHeight > 0)
 
478
            currentHeight = scrollDiv.offsetHeight;
 
479
 
 
480
    scrollDiv.scrollTop = currentHeight;
 
481
 
 
482
    scrollDiv = null;
 
483
}
 
484
 
 
485
var divScroll = new chatscroll.Pane('console_output');