/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-09 01:57:23 UTC
  • Revision ID: tim@ed.am-20140309015723-kwd7kklc76jq0idr
reduced set of available commands to those implemented

Show diffs side-by-side

added added

removed removed

29
29
# main command
30
30
command = None
31
31
 
32
 
# config
33
 
config = None
34
 
 
35
 
# repo name, set by late_init() to an instance of Repo
36
 
repo = 'home'
 
32
# main repo
 
33
repo = None
37
34
 
38
35
# verbose level
39
36
verbose = 0
53
50
# home directory
54
51
home_dir = '~/'
55
52
 
56
 
# fully qualified home directory, set by late_init()
57
 
full_home_dir = None
58
 
 
59
 
# config file
60
 
config_file = os.path.expanduser( '~/.stdhomerc' )
61
 
 
62
 
 
63
 
def late_init():
64
 
 
65
 
        global home_dir, full_home_dir
66
 
        full_home_dir = util.canonicalise_path( home_dir )
67
 
        if verbose >= 2: print "home-dir at " + home_dir
68
 
 
 
53
# fully qualified home directory
 
54
full_home_dir = util.canonicalise_path( home_dir )
 
55
 
 
56
 
 
57
def set_repo( repo_name ):
69
58
        global repo
 
59
        from repo import Repo
70
60
        if repo is not None:
71
 
                from repo import Repo
72
 
                repo = Repo( repo )
73
 
                if verbose >= 2: print "repo at " + repo.dir
 
61
                raise RuntimeError( 'logic error: the.repo is already set' )
 
62
        repo = Repo( repo_name if repo_name else 'home' )
 
63