19
19
from sets import Set
23
22
from osutils import format_date
26
# surely there's a builtin for this?
26
37
print 'branch format:', b.controlfile('branch-format', 'r').readline().rstrip('\n')
28
39
def plural(n, base='', pl=None):
36
47
count_version_dirs = 0
38
count_status = {'A': 0, 'D': 0, 'M': 0, 'R': 0, '?': 0, 'I': 0, '.': 0}
39
for st_tup in bzrlib.diff_trees(b.basis_tree(), b.working_tree()):
42
if fs not in ['I', '?'] and st_tup[4] == 'directory':
43
count_version_dirs += 1
49
basis = b.basis_tree()
50
working = b.working_tree()
51
work_inv = working.inventory
52
delta = diff.compare_trees(basis, working, want_unchanged=True)
46
55
print 'in the working tree:'
47
for name, fs in (('unchanged', '.'),
48
('modified', 'M'), ('added', 'A'), ('removed', 'D'),
49
('renamed', 'R'), ('unknown', '?'), ('ignored', 'I'),
51
print ' %8d %s' % (count_status[fs], name)
52
print ' %8d versioned subdirector%s' % (count_version_dirs,
53
plural(count_version_dirs, 'y', 'ies'))
56
print ' %8s unchanged' % len(delta.unchanged)
57
print ' %8d modified' % len(delta.modified)
58
print ' %8d added' % len(delta.added)
59
print ' %8d removed' % len(delta.removed)
60
print ' %8d renamed' % len(delta.renamed)
62
ignore_cnt = unknown_cnt = 0
63
for path in working.extras():
64
if working.is_ignored(path):
69
print ' %8d unknown' % unknown_cnt
70
print ' %8d ignored' % ignore_cnt
73
for file_id in work_inv:
74
if work_inv.get_file_kind(file_id) == 'directory':
76
print ' %8d versioned %s' \
78
plural(dir_cnt, 'subdirectory', 'subdirectories'))
56
81
print 'branch history:'