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

« back to all changes in this revision

Viewing changes to ivle/webapp/coremedia/util.js

  • Committer: William Grant
  • Date: 2009-12-07 04:22:22 UTC
  • Revision ID: grantw@unimelb.edu.au-20091207042222-lor5fixbzwniti3i
Revert client-side parts of r1333; reliance on the deprecated tab mechanism is to be avoided.

Show diffs side-by-side

added added

removed removed

Lines of Context:
712
712
    
713
713
     return null;
714
714
}
715
 
 
716
 
/** Gets the current path of the window. Requires this_app to be defined */
717
 
function get_path() {
718
 
    var path = parse_url(window.location.href).path;
719
 
    /* Strip out root_dir + "/files" from the front of the path */
720
 
    var strip = make_path(this_app);
721
 
    if (path.substr(0, strip.length) == strip)
722
 
        path = path.substr(strip.length+1);
723
 
    else
724
 
    {
725
 
        /* See if this is an edit path */
726
 
        strip = make_path(edit_app);
727
 
        if (path.substr(0, strip.length) == strip)
728
 
        {
729
 
            path = path.substr(strip.length+1);
730
 
        }
731
 
    }
732
 
 
733
 
    if (path.length == 0)
734
 
    {
735
 
        /* Navigate to the user's home directory by default */
736
 
        /* TEMP? */
737
 
        path = username;
738
 
    }
739
 
 
740
 
    return path;
741
 
}