/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to lib/stdhome/the.py

  • Committer: Tim Marston
  • Date: 2014-03-08 00:47:23 UTC
  • Revision ID: tim@ed.am-20140308004723-hkl3s2hobsblf72o
added diff command; moved all command to commands subdir; made stage-revert
handle ongoing deployment automatically (now that initial revno is known); made
verbose level incremental; detect obstructing conflicts in ConflictWalker;
handle files deleted from repo during copy-out (update)

Show diffs side-by-side

added added

removed removed

20
20
 
21
21
 
22
22
import os
 
23
import util
23
24
 
24
25
 
25
26
# the program
31
32
# main repo
32
33
repo = None
33
34
 
34
 
# verbose?
35
 
verbose = False
 
35
# verbose level
 
36
verbose = 0
36
37
 
37
38
# data directory
38
39
dir = '~/.stdhome'
39
40
 
40
 
# expanded data dir
41
 
expanded_dir = os.path.expanduser( dir )
42
 
 
43
 
# filesystem dir
44
 
fsdir = '~/'
45
 
 
46
 
# expanded filesystem dir
47
 
expanded_fsdir = os.path.expanduser( fsdir )
 
41
# fully qualified data dir
 
42
full_dir = util.canonicalise_path( dir )
 
43
 
 
44
# metadata directory
 
45
mddir = os.path.join( dir, '.metadata' )
 
46
 
 
47
# fully qualified metadata directory
 
48
full_mddir = util.canonicalise_path( mddir )
 
49
 
 
50
# home directory
 
51
home_dir = '~/'
 
52
 
 
53
# fully qualified home directory
 
54
full_home_dir = util.canonicalise_path( home_dir )
48
55
 
49
56
 
50
57
def set_repo( repo_name ):
51
58
        global repo
52
59
        from repo import Repo
 
60
        if repo is not None:
 
61
                raise RuntimeError( 'logic error: the.repo is already set' )
53
62
        repo = Repo( repo_name if repo_name else 'home' )
54
63