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

« back to all changes in this revision

Viewing changes to src/common/util.py

  • Committer: mattgiuca
  • Date: 2007-12-17 05:20:17 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:74
apps/help: Full help file handling (now this module works).
apps/dummy: Added help file.
common/util: Added make_local_path.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    client."""
34
34
    return os.path.join(root_dir, path)
35
35
 
 
36
def make_local_path(path):
 
37
    """Given a path relative to the IVLE root, on the local file system, makes
 
38
    the path relative to the root using conf.ivlepath. This path can be used
 
39
    in reading files from the local file system."""
 
40
    return os.path.join(conf.ivlepath, path)
 
41
 
36
42
def unmake_path(path):
37
43
    """Given a path relative to the site root, makes the path relative to the
38
44
    IVLE root by removing conf.root_dir if it appears at the beginning. If it