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;
97
alert("An error occured when starting the IVLE console. " +
98
"Please refresh the page and try again.\n" +
99
"Details have been logged for further examination.")
61
server_key = JSON.parse(json_text).key;
62
server_started = true;
104
callback1, "console", "service",
105
{"ivle.op": "start", "cwd": get_console_start_directory()},
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, "consoleservice", "start", {"startdir": path}, "POST");
88
// No current_path - let the server decide
89
ajax_call(callback1, "consoleservice", "start", {}, "POST");
109
93
/** Initialises the console. All apps which import console are required to
133
117
function console_minimize()
135
119
if (!windowpane_mode) return;
136
console_body.setAttribute("class", "console_body windowpane minimal");
120
console_body.setAttribute("class", "windowpane minimal");
137
121
console_filler.setAttribute("class", "windowpane minimal");
142
126
function console_maximize()
144
128
if (!windowpane_mode) return;
145
console_body.setAttribute("class", "console_body windowpane maximal");
129
console_body.setAttribute("class", "windowpane maximal");
146
130
console_filler.setAttribute("class", "windowpane maximal");
271
255
if (typeof(inputbox) == "string")
273
var inputline = inputbox + "\n";
257
var inputline = inputbox;
259
var graytimer = null;
278
/* Disable the text box */
279
inputbox.setAttribute("disabled", "disabled");
263
GLOBAL_inputbox = inputbox; /* For timer */
281
264
var inputline = inputbox.value + "\n";
265
var graytimer = setTimeout("GLOBAL_inputbox.setAttribute(\"class\", "
266
+ "\"disabled\");", 100);
283
268
var output = document.getElementById("console_output");
286
271
var span = document.createElement("span");
287
272
span.setAttribute("class", "inputPrompt");
288
273
span.appendChild(document.createTextNode(
289
document.getElementById("console_prompt").firstChild.nodeValue)
274
document.getElementById("console_prompt").firstChild.textContent)
291
276
output.appendChild(span);
292
277
// Print input line itself in a span
295
280
span.appendChild(document.createTextNode(inputline));
296
281
output.appendChild(span);
299
"ivle.op": "chat", "kind": which, "key": server_key,
300
"text": inputline, "cwd": get_console_start_directory()
283
var args = {"key": server_key, "text":inputline};
302
284
var callback = function(xhr)
304
console_response(inputbox, inputline, xhr.responseText);
286
console_response(inputbox, graytimer, inputline, xhr.responseText);
306
ajax_call(callback, "console", "service", args, "POST");
288
/* Disable the text box */
289
if (inputbox != null)
290
inputbox.setAttribute("disabled", "disabled");
291
ajax_call(callback, "consoleservice", which, args, "POST");
309
function console_response(inputbox, inputline, responseText)
294
function console_response(inputbox, graytimer, inputline, responseText)
366
351
var callback = function(xhr)
368
console_response(inputbox, null, xhr.responseText);
353
console_response(inputbox, graytimer,
354
null, xhr.responseText);
376
362
var kind = "chat";
379
"ivle.op": "chat", "kind": kind, "key": server_key,
380
"text": '', "cwd": get_console_start_directory()
382
ajax_call(callback, "console", "service", args, "POST");
364
var args = {"key": server_key, "text":''};
365
ajax_call(callback, "consoleservice", kind, args, "POST");
384
367
// Open up the console so we can see the output
385
368
// FIXME: do we need to maximize here?
456
441
hist.submit(inp.value);
457
442
inp.value = hist.curr();
460
/* Disable the text box. This will be redone by
461
* console_enter_line, but we do it here too in case start_server
464
inp.setAttribute("disabled", "disabled");
465
444
/* Start the server if it hasn't already been started */
466
445
start_server(callback);
468
447
case 38: /* Up arrow */
469
448
hist.up(inp.value);
470
449
inp.value = hist.curr();
471
/* Inhibit further responses to this event, or WebKit moves the
472
* cursor to the start. */
475
451
case 40: /* Down arrow */
476
452
hist.down(inp.value);
477
453
inp.value = hist.curr();
498
xhr = ajax_call(null, "console", "service", {"ivle.op": "chat", "kind": "terminate", "key": server_key, "cwd": get_console_start_directory()}, "POST");
499
console_response(null, null, xhr.responseText);
473
xhr = ajax_call(null, "consoleservice", "restart", {"key": server_key}, "POST");
474
console_response(null, null, null, xhr.responseText);