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

« back to all changes in this revision

Viewing changes to ivle/webapp/console/media/console.js

  • Committer: David Coles
  • Date: 2010-07-28 10:52:48 UTC
  • mfrom: (1791.2.10 mediahandlers)
  • Revision ID: coles.david@gmail.com-20100728105248-zvbn9g72v1nsskvd
A series of HTML5 based media handlers using the <audio> and <video> tags.  
This replaces the previous page that just showed a download link (which is 
already available on the menu).

Also solves issue where media files were downloaded by the client twice (once 
in an AJAX request intended only for text).

Known issues:
    * Bug #588285: External BHO will not be able to play media due to not
      having IVLE cookie.
    * Bug #610745: Does not correctly preview revisions
    * Bug #610780: Ogg media does not work in Chromium

Show diffs side-by-side

added added

removed removed

Lines of Context:
533
533
}
534
534
 
535
535
/** Prints an error line in the console **/
536
 
function print_error(error, class)
537
 
538
 
    if (!class)
539
 
        class = "errorMsg";
 
536
function print_error(error, cls)
 
537
{
 
538
    if (!cls)
 
539
        cls = "errorMsg";
540
540
 
541
541
    var output = document.getElementById("console_output");
542
542
  
543
543
    // Create text block
544
544
    var span = document.createElement("span");
545
 
    span.setAttribute("class", class);
 
545
    span.setAttribute("class", cls);
546
546
    span.appendChild(document.createTextNode(error + "\n"));
547
547
    output.appendChild(span);
548
548