37
37
interrupted = false;
40
function get_console_start_directory()
42
if((typeof(current_path) != 'undefined') && current_file)
44
// We have a current_path - give a suggestion to the server
46
if (current_file.isdir)
49
return path_join("/home", current_path);
53
// Editor - need to chop off filename
54
var tmp_path = current_path.split('/');
56
return path_join("/home", tmp_path.join('/'));
61
// No current_path - let the server decide
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)
87
60
var json_text = xhr.responseText;
90
server_key = JSON.parse(json_text).key;
91
server_started = true;
93
"ivle.op": "chat", "kind": "splash", "key": server_key
95
var callback2 = function(xhr)
97
console_response(null, null, xhr.responseText);
101
ajax_call(callback2, "console", "service", args, "POST");
105
alert("An error occured when starting the IVLE console. " +
106
"Please refresh the page and try again.\n" +
107
"Details have been logged for further examination.")
111
$("#console_output").append(
112
'<span class="console_message">IVLE console starting up...</span>\n');
113
console_maximize(true);
115
callback1, "console", "service",
116
{"ivle.op": "start", "cwd": get_console_start_directory()},
120
/** Start up the console backend before the user has entered text.
121
* This will disable the text input, start a backend, and enable the input
124
function start_server_early()
126
var inputbox = document.getElementById("console_inputText");
127
inputbox.setAttribute("disabled", "disabled");
128
var callback = function(xhr)
130
inputbox.removeAttribute("disabled")
132
start_server(callback);
61
server_key = JSON.parse(json_text).key;
62
server_started = true;
68
if((typeof(current_path) != 'undefined') && current_file)
70
// We have a current_path - give a suggestion to the server
72
if (current_file.isdir)
75
path = path_join("/home", current_path);
79
// Editor - need to chop off filename
80
var tmp_path = current_path.split('/');
82
path = path_join("/home", tmp_path.join('/'));
84
ajax_call(callback1, "console", "service", {"ivle.op": "start", "cwd": path}, "POST");
88
// No current_path - let the server decide
89
ajax_call(callback1, "console", "service", {"ivle.op": "start"}, "POST");
135
93
/** Initialises the console. All apps which import console are required to
159
117
function console_minimize()
161
119
if (!windowpane_mode) return;
162
console_body.setAttribute("class", "console_body windowpane minimal");
120
console_body.setAttribute("class", "windowpane minimal");
163
121
console_filler.setAttribute("class", "windowpane minimal");
166
124
/** Show the main console panel, so it enlarges out to its full size.
168
function console_maximize(do_not_start)
126
function console_maximize()
170
128
if (!windowpane_mode) return;
171
if (!do_not_start && !server_started) start_server_early();
172
console_body.setAttribute("class", "console_body windowpane maximal");
129
console_body.setAttribute("class", "windowpane maximal");
173
130
console_filler.setAttribute("class", "windowpane maximal");
324
278
span.setAttribute("class", "inputMsg");
325
279
span.appendChild(document.createTextNode(inputline));
326
280
output.appendChild(span);
327
divScroll.activeScroll();
330
"ivle.op": "chat", "kind": which, "key": server_key,
331
"text": inputline, "cwd": get_console_start_directory()
282
var args = {"ivle.op": "chat", "kind": which, "key": server_key, "text":inputline};
333
283
var callback = function(xhr)
335
285
console_response(inputbox, inputline, xhr.responseText);
410
357
var kind = "chat";
413
"ivle.op": "chat", "kind": kind, "key": server_key,
414
"text": '', "cwd": get_console_start_directory()
359
var args = {"ivle.op": "chat", "kind": kind, "key": server_key, "text":''};
416
360
ajax_call(callback, "console", "service", args, "POST");
418
362
// Open up the console so we can see the output
363
// FIXME: do we need to maximize here?
419
364
console_maximize();
367
divScroll.activeScroll();
421
369
// Return early, so we don't re-enable the input box.
424
else if (res.hasOwnProperty('input'))
430
alert("An internal error occurred in the python console.");
374
// assert res.hasOwnProperty('input')
434
378
if (inputbox != null)
488
434
hist.submit(inp.value);
489
435
inp.value = hist.curr();
492
/* Disable the text box. This will be redone by
493
* console_enter_line, but we do it here too in case start_server
496
inp.setAttribute("disabled", "disabled");
497
437
/* Start the server if it hasn't already been started */
498
438
start_server(callback);
500
440
case 38: /* Up arrow */
501
441
hist.up(inp.value);
502
442
inp.value = hist.curr();
503
/* Inhibit further responses to this event, or WebKit moves the
504
* cursor to the start. */
507
444
case 40: /* Down arrow */
508
445
hist.down(inp.value);
509
446
inp.value = hist.curr();
530
xhr = ajax_call(null, "console", "service", {"ivle.op": "chat", "kind": "terminate", "key": server_key, "cwd": get_console_start_directory()}, "POST");
466
xhr = ajax_call(null, "console", "service", {"ivle.op": "chat", "kind": "terminate", "key": server_key}, "POST");
531
467
console_response(null, null, xhr.responseText);
535
471
/** Prints an error line in the console **/
536
function print_error(error, cls)
472
function print_error(error)
541
474
var output = document.getElementById("console_output");
543
476
// Create text block
544
477
var span = document.createElement("span");
545
span.setAttribute("class", cls);
478
span.setAttribute("class", "errorMsg");
546
479
span.appendChild(document.createTextNode(error + "\n"));
547
480
output.appendChild(span);