Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Matt Mackall
- Wed, 29 Feb 2012 23:27:24
Show More
hgext/bugzilla.py
0
+1
0
@@
-497,6
+497,7
b' class cookietransportrequest(object):'
497
497
498
def request ( self , host , handler , request_body , verbose = 0 ):
498
def request ( self , host , handler , request_body , verbose = 0 ):
499
self . verbose = verbose
499
self . verbose = verbose
500
self . accept_gzip_encoding = False
500
501
501
# issue XML-RPC request
502
# issue XML-RPC request
502
h = self . make_connection ( host )
503
h = self . make_connection ( host )
mercurial/bookmarks.py
0
+6
-5
@@
-129,11
+129,12
b' def setcurrent(repo, mark):'
129
def unsetcurrent ( repo ):
129
def unsetcurrent ( repo ):
130
wlock = repo . wlock ()
130
wlock = repo . wlock ()
131
try :
131
try :
132
util . unlink ( repo . join ( 'bookmarks.current' ))
132
try :
133
repo . _bookmarkcurrent = None
133
util . unlink ( repo . join ( ' bookmarks. current' ))
134
except OSError , inst :
134
repo . _bookmarkcurrent = None
135
if inst . errno != errno . ENOENT :
135
except OSError , inst :
136
raise
136
if inst . errno != errno . ENOENT :
137
raise
137
finally :
138
finally :
138
wlock . release ()
139
wlock . release ()
139
140
mercurial/bundlerepo.py
0
+1
0
@@
-168,6
+168,7
b' class bundlerepository(localrepo.localre'
168
self . _tempparent = tempfile . mkdtemp ()
168
self . _tempparent = tempfile . mkdtemp ()
169
localrepo . instance ( ui , self . _tempparent , 1 )
169
localrepo . instance ( ui , self . _tempparent , 1 )
170
localrepo . localrepository . __init__ ( self , ui , self . _tempparent )
170
localrepo . localrepository . __init__ ( self , ui , self . _tempparent )
171
self . ui . setconfig ( 'phases' , 'publish' , False )
171
172
172
if path :
173
if path :
173
self . _url = 'bundle:' + util . expandpath ( path ) + '+' + bundlename
174
self . _url = 'bundle:' + util . expandpath ( path ) + '+' + bundlename
mercurial/subrepo.py
0
+1
-1
@@
-508,7
+508,7
b' class hgsubrepo(abstractsubrepo):'
508
anc = dst . ancestor ( cur )
508
anc = dst . ancestor ( cur )
509
509
510
def mergefunc ():
510
def mergefunc ():
511
if anc == cur :
511
if anc == cur and dst . branch () == cur . branch () :
512
self . _repo . ui . debug ( "updating subrepo %s \n " % subrelpath ( self ))
512
self . _repo . ui . debug ( "updating subrepo %s \n " % subrelpath ( self ))
513
hg . update ( self . _repo , state [ 1 ])
513
hg . update ( self . _repo , state [ 1 ])
514
elif anc == dst :
514
elif anc == dst :
tests/test-phases-exchange.t
0
+32
0
@@
-465,6
+465,38
b' initial setup'
465
o 0 public a - A - 054250 a37db4
465
o 0 public a - A - 054250 a37db4
466
466
467
467
468
Pulling from bundle does not alter phases of changeset not present in the bundle
469
470
$ hg bundle -- base 1 - r 6 - r 3 ../ partial - bundle . hg
471
5 changesets found
472
$ hg pull .. / partial - bundle . hg
473
pulling from .. / partial - bundle . hg
474
searching for changes
475
no changes found
476
$ hgph
477
@ 10 draft a - H - 967 b449fbc94
478
|
479
| o 9 draft a - G - 3e27 b6f1eee1
480
| |
481
| o 8 draft a - F - b740e3e5c05d
482
| |
483
| o 7 draft a - E - e9f537e46dea
484
| |
485
+--- o 6 public n - B - 145e75495359
486
| |
487
o | 5 public n - A - d6bcb4f74035
488
| |
489
o | 4 public b - A - f54f1bb90ff3
490
| |
491
| o 3 public a - D - b555f63b6063
492
| |
493
| o 2 public a - C - 54 acac6f23ab
494
|/
495
o 1 public a - B - 548 a3d25dbf0
496
|
497
o 0 public a - A - 054250 a37db4
498
499
468
Pushing to Publish = False ( unknown changeset )
500
Pushing to Publish = False ( unknown changeset )
469
501
470
$ hg push .. / mu - r b740e3e5c05d # a - F
502
$ hg push .. / mu - r b740e3e5c05d # a - F
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages