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

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2009-01-20 01:12:32 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: grantw@unimelb.edu.au-20090120011232-mvxq6n1p8e0pq5z2
ivle.db: insert_problem_attempt and write_problem_save now take a user object,
    not a login, so they don't need to call get_user_loginid. Thus we also
    remove get_user_login_id.
www/apps/tutorialservice: Call the two functions with req.user, not
    req.user.login.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
    var callback1 = function(xhr)
59
59
        {
60
60
            var json_text = xhr.responseText;
61
 
            server_key = JSON.parse(json_text);
 
61
            server_key = JSON.parse(json_text).key;
62
62
            server_started = true;
63
63
            if (callback != null)
64
64
                callback();
65
65
        }
66
 
    ajax_call(callback1, "consoleservice", "start", {}, "POST");
 
66
 
 
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, "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
    }
67
91
}
68
92
 
69
93
/** Initialises the console. All apps which import console are required to
237
261
    else
238
262
    {
239
263
        GLOBAL_inputbox = inputbox;     /* For timer */
240
 
        var inputline = inputbox.value;
 
264
        var inputline = inputbox.value + "\n";
241
265
        var graytimer = setTimeout("GLOBAL_inputbox.setAttribute(\"class\", "
242
266
            + "\"disabled\");", 100);
243
267
    }
246
270
        // Print ">>>" span
247
271
        var span = document.createElement("span");
248
272
        span.setAttribute("class", "inputPrompt");
249
 
        span.appendChild(document.createTextNode(">>> "));
 
273
        span.appendChild(document.createTextNode(
 
274
              document.getElementById("console_prompt").firstChild.textContent)
 
275
                        );
250
276
        output.appendChild(span);
251
277
        // Print input line itself in a span
252
278
        var span = document.createElement("span");
253
279
        span.setAttribute("class", "inputMsg");
254
 
        span.appendChild(document.createTextNode(inputline + "\n"));
 
280
        span.appendChild(document.createTextNode(inputline));
255
281
        output.appendChild(span);
256
282
    }
257
283
    var args = {"key": server_key, "text":inputline};
286
312
            output.appendChild(span);
287
313
        }
288
314
        // set the prompt to >>>
289
 
        var prompt = document.getElementById("console_prompt");
290
 
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
 
315
        set_prompt(">>>");
291
316
    }
292
317
    else if (res.hasOwnProperty('exc'))
293
318
    {
294
319
        // Failure!
295
320
        // print out the error message (res.exc)
296
 
        var span = document.createElement("span");
297
 
        span.setAttribute("class", "errorMsg");
298
 
        span.appendChild(document.createTextNode(res.exc + "\n"));
299
 
        output.appendChild(span);
300
 
        // set the prompt to >>>
301
 
        var prompt = document.getElementById("console_prompt");
302
 
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
 
321
        print_error(res.exc);
 
322
        
 
323
        // set the prompt to >>>
 
324
        set_prompt(">>>");
 
325
    }
 
326
    else if (res.hasOwnProperty('restart') && res.hasOwnProperty('key'))
 
327
    {
 
328
        // Server has indicated that the console should be restarted
 
329
        
 
330
        // Get the new key (host, port, magic)
 
331
        server_key = res.key;
 
332
 
 
333
        // Print a reason to explain why we'd do such a horrible thing
 
334
        // (console timeout, server error etc.)
 
335
        print_error("Console Restart: " + res.restart);
 
336
        
 
337
        // set the prompt to >>>
 
338
        set_prompt(">>>");
303
339
    }
304
340
    else if (res.hasOwnProperty('more'))
305
341
    {
306
342
        // Need more input, so set the prompt to ...
307
 
        var prompt = document.getElementById("console_prompt");
308
 
        prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
 
343
        set_prompt("...");
309
344
    }
310
345
    else if (res.hasOwnProperty('output'))
311
346
    {
339
374
        // Return early, so we don't re-enable the input box.
340
375
        return;
341
376
    }
342
 
    else {
 
377
    else
 
378
    {
343
379
        // assert res.hasOwnProperty('input')
344
 
        var prompt = document.getElementById("console_prompt");
345
 
        prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
 
380
        set_prompt("...");
346
381
    }
347
382
 
348
383
    if (inputbox != null)
360
395
    divScroll.activeScroll();
361
396
 
362
397
    // Focus the input box by default
363
 
    document.getElementById("console_output").focus()
364
 
    document.getElementById("console_inputText").focus()
 
398
    document.getElementById("console_output").focus();
 
399
    document.getElementById("console_inputText").focus();
365
400
}
366
401
 
367
402
function catch_input(key)
420
455
    }
421
456
}
422
457
 
 
458
/** Resets the console by signalling the old console to expire and starting a 
 
459
 * new one.
 
460
 */
 
461
function console_reset()
 
462
{
 
463
    // FIXME: We show some feedback here - either disable input or at very 
 
464
    // least the reset button.
 
465
 
 
466
    // Restart the console
 
467
    if(!server_started)
 
468
    {
 
469
        start_server(null);
 
470
    }
 
471
    else
 
472
    {
 
473
        xhr = ajax_call(null, "consoleservice", "restart", {"key": server_key}, "POST");
 
474
        console_response(null, null, null, xhr.responseText);
 
475
    }
 
476
}
 
477
 
 
478
/** Prints an error line in the console **/
 
479
function print_error(error)
 
480
 
481
    var output = document.getElementById("console_output");
 
482
  
 
483
    // Create text block
 
484
    var span = document.createElement("span");
 
485
    span.setAttribute("class", "errorMsg");
 
486
    span.appendChild(document.createTextNode(error + "\n"));
 
487
    output.appendChild(span);
 
488
 
 
489
    // Autoscroll
 
490
    divScroll.activeScroll();
 
491
}
 
492
 
 
493
/** Sets the prompt text **/
 
494
function set_prompt(prompt_text)
 
495
{
 
496
    var prompt = document.getElementById("console_prompt");
 
497
    prompt.replaceChild(document.createTextNode(prompt_text + " "), prompt.firstChild);
 
498
}
 
499
 
423
500
/**** Following Code modified from ******************************************/
424
501
/**** http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html ***/
425
502
/****************************************************************************/
437
514
        
438
515
    if (scrollDiv.scrollHeight > 0)
439
516
        currentHeight = scrollDiv.scrollHeight;
440
 
    else 
441
 
        if (objDiv.offsetHeight > 0)
442
 
            currentHeight = scrollDiv.offsetHeight;
 
517
    else if (scrollDiv.offsetHeight > 0)
 
518
        currentHeight = scrollDiv.offsetHeight;
443
519
 
444
520
    scrollDiv.scrollTop = currentHeight;
445
521