##// END OF EJS Templates
Merge with crew-stable
Patrick Mezard -
r6816:d8159dd1 merge default
parent child Browse files
Show More
@@ -201,7 +201,7 b' class convert_cvs(converter_source):'
201
201
202 if not passw:
202 if not passw:
203 passw = "A"
203 passw = "A"
204 pf = open(os.path.join(os.environ["HOME"], ".cvspass"))
204 pf = open(os.path.expanduser("~/.cvspass"))
205 for line in pf.read().splitlines():
205 for line in pf.read().splitlines():
206 part1, part2 = line.split(' ', 1)
206 part1, part2 = line.split(' ', 1)
207 if part1 == '/1':
207 if part1 == '/1':
@@ -389,10 +389,10 b' def branches(ui, repo, active=False):'
389 if ui.quiet:
389 if ui.quiet:
390 ui.write("%s\n" % tag)
390 ui.write("%s\n" % tag)
391 else:
391 else:
392 rev = str(node).rjust(32 - util.locallen(tag))
392 rev = str(node).rjust(31 - util.locallen(tag))
393 isinactive = ((not isactive) and " (inactive)") or ''
393 isinactive = ((not isactive) and " (inactive)") or ''
394 data = tag, rev, hexfunc(repo.lookup(node)), isinactive
394 data = tag, rev, hexfunc(repo.lookup(node)), isinactive
395 ui.write("%s%s:%s%s\n" % data)
395 ui.write("%s %s:%s%s\n" % data)
396
396
397 def bundle(ui, repo, fname, dest=None, **opts):
397 def bundle(ui, repo, fname, dest=None, **opts):
398 """create a changegroup file
398 """create a changegroup file
@@ -33,7 +33,7 b' hg commit -d \'5 0\' -u test -m "Adding c '
33
33
34 echo 'd' >d
34 echo 'd' >d
35 hg add d
35 hg add d
36 hg branch d
36 hg branch 'a branch name much longer than the default justification used by branches'
37 hg commit -d '6 0' -u test -m "Adding d branch"
37 hg commit -d '6 0' -u test -m "Adding d branch"
38
38
39 hg branches
39 hg branches
@@ -5,14 +5,14 b' created new head'
5 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
5 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
6 created new head
6 created new head
7 marked working directory as branch c
7 marked working directory as branch c
8 marked working directory as branch d
8 marked working directory as branch a branch name much longer than the default justification used by branches
9 d 6:9c581c5ff105
9 a branch name much longer than the default justification used by branches 6:b8cb5af34c4d
10 b 4:22df7444f7c1
10 b 4:22df7444f7c1
11 a 1:dd6b440dd85a
11 a 1:dd6b440dd85a
12 c 5:5ca481e59b8c (inactive)
12 c 5:5ca481e59b8c (inactive)
13 default 0:19709c5a4e75 (inactive)
13 default 0:19709c5a4e75 (inactive)
14 -------
14 -------
15 d 6:9c581c5ff105
15 a branch name much longer than the default justification used by branches 6:b8cb5af34c4d
16 b 4:22df7444f7c1
16 b 4:22df7444f7c1
17 a 1:dd6b440dd85a
17 a 1:dd6b440dd85a
18 --- Branch a
18 --- Branch a
General Comments 0
You need to be logged in to leave comments. Login now