/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: 2016-02-13 13:23:51 UTC
  • Revision ID: tim@ed.am-20160213132351-8ly2s0rtol5w1kpc
fixed syntax error and remove debug print

Show diffs side-by-side

added added

removed removed

29
29
# main command
30
30
command = None
31
31
 
32
 
# main repo
33
 
repo = None
34
 
 
35
 
# verbose?
 
32
# config
 
33
config = None
 
34
 
 
35
# repo name, set by late_init() to an instance of Repo
 
36
repo = 'home'
 
37
 
 
38
# verbose level
36
39
verbose = 0
37
40
 
38
41
# data directory
47
50
# fully qualified metadata directory
48
51
full_mddir = util.canonicalise_path( mddir )
49
52
 
50
 
# filesystem directory
51
 
fsdir = '~/test-stdhome'
52
 
 
53
 
# fully qualified filesystem directory
54
 
full_fsdir = util.canonicalise_path( fsdir )
55
 
 
56
 
 
57
 
def set_repo( repo_name ):
 
53
# home directory
 
54
home_dir = '~/'
 
55
 
 
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
 
58
69
        global repo
59
 
        from repo import Repo
60
 
        repo = Repo( repo_name if repo_name else 'test' )
61
 
 
 
70
        if repo is not None:
 
71
                from repo import Repo
 
72
                repo = Repo( repo )
 
73
                if verbose >= 2: print "repo at " + repo.dir