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

« back to all changes in this revision

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

  • Committer: David Coles
  • Date: 2009-12-02 19:16:46 UTC
  • mfrom: (1332.1.4 console-fix)
  • Revision ID: coles.david@gmail.com-20091202191646-e55k83yd7sera1fk
When a console is restarted due to either being reset from the UI or killed 
due to inactivity/resource limits then will restart at the correct working 
directory.

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
}