~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-12-14 04:17:46 UTC
  • Revision ID: me@williamgrant.id.au-20091214041746-eurw04xssf4cvszc
Add ivle-dev-setup, a script to do most of the heavy lifting when setting up a new dev installation.

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
 
39
66
/* Starts the console server, if it isn't already.
40
67
 * This can be called any number of times - it only starts the one server.
41
68
 * Note that this is asynchronous. It will return after signalling to start
64
91
                callback();
65
92
        }
66
93
 
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
 
    }
 
94
    ajax_call(
 
95
        callback1, "console", "service",
 
96
        {"ivle.op": "start", "cwd": get_console_start_directory()}, 
 
97
        "POST");
91
98
}
92
99
 
93
100
/** Initialises the console. All apps which import console are required to
279
286
        span.appendChild(document.createTextNode(inputline));
280
287
        output.appendChild(span);
281
288
    }
282
 
    var args = {"ivle.op": "chat", "kind": which, "key": server_key, "text":inputline};
 
289
    var args = {
 
290
        "ivle.op": "chat", "kind": which, "key": server_key,
 
291
        "text": inputline, "cwd": get_console_start_directory()
 
292
        };
283
293
    var callback = function(xhr)
284
294
        {
285
295
            console_response(inputbox, inputline, xhr.responseText);
356
366
        {
357
367
            var kind = "chat";
358
368
        }
359
 
        var args = {"ivle.op": "chat", "kind": kind, "key": server_key, "text":''};
 
369
        var args = {
 
370
            "ivle.op": "chat", "kind": kind, "key": server_key,
 
371
            "text": '', "cwd": get_console_start_directory()
 
372
            };
360
373
        ajax_call(callback, "console", "service", args, "POST");
361
374
 
362
375
        // Open up the console so we can see the output
434
447
            hist.submit(inp.value);
435
448
            inp.value = hist.curr();
436
449
        }
 
450
 
 
451
        /* Disable the text box. This will be redone by
 
452
         * console_enter_line, but we do it here too in case start_server
 
453
         * takes a while.
 
454
         */
 
455
        inp.setAttribute("disabled", "disabled");
437
456
        /* Start the server if it hasn't already been started */
438
457
        start_server(callback);
439
458
        break;
440
459
    case 38:                /* Up arrow */
441
460
        hist.up(inp.value);
442
461
        inp.value = hist.curr();
 
462
        /* Inhibit further responses to this event, or WebKit moves the
 
463
         * cursor to the start. */
 
464
        return false;
443
465
        break;
444
466
    case 40:                /* Down arrow */
445
467
        hist.down(inp.value);
446
468
        inp.value = hist.curr();
 
469
        return false;
447
470
        break;
448
471
    }
449
472
}
463
486
    }
464
487
    else
465
488
    {
466
 
        xhr = ajax_call(null, "console", "service", {"ivle.op": "chat", "kind": "terminate", "key": server_key}, "POST");
 
489
        xhr = ajax_call(null, "console", "service", {"ivle.op": "chat", "kind": "terminate", "key": server_key, "cwd": get_console_start_directory()}, "POST");
467
490
        console_response(null, null, xhr.responseText);
468
491
    }
469
492
}