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

« back to all changes in this revision

Viewing changes to src/common/studpath.py

  • Committer: mattgiuca
  • Date: 2007-12-20 01:47:43 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:91
common/studpath.py: url_to_jailpaths - The "jail" path returned is now
    absolute instead of relative to the common jails dir.
    Reason: Much less specific to our system and easier to check that it's in
    the correct directory than explain all over the place what the jails root
    is.
common/interpret.py: Updated comments to the above effect.
trampolines: Accept absolute jails and check their root instead of doing a
    path join.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
def url_to_jailpaths(urlpath):
64
64
    """Given a URL path (part of a URL query string), returns a tuple of
65
65
        * the username of the student whose directory is being browsed
66
 
        * the path where the jail will be located relative to conf.student_dir
67
 
          (the jail directory relative to the system jails root).
 
66
        * the absolute path where the jail will be located.
68
67
        * the path of the file relative to the jail.
69
68
 
70
69
    urlpath: See urlpath in url_to_local.
71
70
 
72
71
    >>> url_to_jailpaths("joe/home/mydir/myfile")
73
 
    ("joe", "joe", "home/joe/home/mydir/myfile")
 
72
    ("joe", "/home/informatics/jails/joe", "home/joe/home/mydir/myfile")
74
73
 
75
74
    >>> url_to_jailpaths("")
76
75
    (None, None, None)
80
79
    (user, subpath) = util.split_path(urlpath)
81
80
    if user is None: return (None, None, None)
82
81
 
 
82
    jail = os.path.join(conf.student_dir, user)
83
83
    path = os.path.join('home', urlpath)
84
84
 
85
 
    return (user, user, path)
 
85
    return (user, jail, path)