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
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
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");
95
callback1, "console", "service",
96
{"ivle.op": "start", "cwd": get_console_start_directory()},
93
100
/** Initialises the console. All apps which import console are required to
255
262
if (typeof(inputbox) == "string")
257
var inputline = inputbox;
264
var inputline = inputbox + "\n";
259
var graytimer = null;
263
GLOBAL_inputbox = inputbox; /* For timer */
269
/* Disable the text box */
270
inputbox.setAttribute("disabled", "disabled");
264
272
var inputline = inputbox.value + "\n";
265
var graytimer = setTimeout("GLOBAL_inputbox.setAttribute(\"class\", "
266
+ "\"disabled\");", 100);
268
274
var output = document.getElementById("console_output");
271
277
var span = document.createElement("span");
272
278
span.setAttribute("class", "inputPrompt");
273
279
span.appendChild(document.createTextNode(
274
document.getElementById("console_prompt").firstChild.textContent)
280
document.getElementById("console_prompt").firstChild.nodeValue)
276
282
output.appendChild(span);
277
283
// Print input line itself in a span
280
286
span.appendChild(document.createTextNode(inputline));
281
287
output.appendChild(span);
283
var args = {"key": server_key, "text":inputline};
290
"ivle.op": "chat", "kind": which, "key": server_key,
291
"text": inputline, "cwd": get_console_start_directory()
284
293
var callback = function(xhr)
286
console_response(inputbox, graytimer, inputline, xhr.responseText);
295
console_response(inputbox, inputline, xhr.responseText);
288
/* Disable the text box */
289
if (inputbox != null)
290
inputbox.setAttribute("disabled", "disabled");
291
ajax_call(callback, "consoleservice", which, args, "POST");
297
ajax_call(callback, "console", "service", args, "POST");
294
function console_response(inputbox, graytimer, inputline, responseText)
300
function console_response(inputbox, inputline, responseText)
351
357
var callback = function(xhr)
353
console_response(inputbox, graytimer,
354
null, xhr.responseText);
359
console_response(inputbox, null, xhr.responseText);
362
367
var kind = "chat";
364
var args = {"key": server_key, "text":''};
365
ajax_call(callback, "consoleservice", kind, args, "POST");
370
"ivle.op": "chat", "kind": kind, "key": server_key,
371
"text": '', "cwd": get_console_start_directory()
373
ajax_call(callback, "console", "service", args, "POST");
367
375
// Open up the console so we can see the output
368
376
// FIXME: do we need to maximize here?
441
447
hist.submit(inp.value);
442
448
inp.value = hist.curr();
451
/* Disable the text box. This will be redone by
452
* console_enter_line, but we do it here too in case start_server
455
inp.setAttribute("disabled", "disabled");
444
456
/* Start the server if it hasn't already been started */
445
457
start_server(callback);
447
459
case 38: /* Up arrow */
448
460
hist.up(inp.value);
449
461
inp.value = hist.curr();
462
/* Inhibit further responses to this event, or WebKit moves the
463
* cursor to the start. */
451
466
case 40: /* Down arrow */
452
467
hist.down(inp.value);
453
468
inp.value = hist.curr();
473
xhr = ajax_call(null, "consoleservice", "restart", {"key": server_key}, "POST");
474
console_response(null, null, null, xhr.responseText);
489
xhr = ajax_call(null, "console", "service", {"ivle.op": "chat", "kind": "terminate", "key": server_key, "cwd": get_console_start_directory()}, "POST");
490
console_response(null, null, xhr.responseText);