/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: 2021-07-05 20:27:11 UTC
  • Revision ID: tim@ed.am-20210705202711-vklvsctrh5yhgjj7
added staging commands; updated command helps

Show diffs side-by-side

added added

removed removed

20
20
 
21
21
 
22
22
import os
23
 
import util
 
23
from . import util
24
24
 
25
25
 
26
26
# the program
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)
 
74
                repo.detect_vcs()