- May 11, 2010
-
- May 08, 2010
-
-
Martin Geisler authored
-
Martin Geisler authored
-
- Dec 07, 2009
-
-
Alexander Solovyov authored
This avoids problem with unexpanded paths when it's not possible to expand it at higher level (for example, if file:~/path/ is supplied as path in schemes).
-
- May 11, 2010
-
-
Benoit Boissinot authored
-
- May 09, 2010
-
-
Patrick Mezard authored
-
Patrick Mezard authored
It gives us a way to not retrieve content of entries we know are no longer files. And it is faster when converting remote repositories.
-
Patrick Mezard authored
This recode call was removed in ede2247e61aa, because it looked the encode(decode()) construct was a no-op. In fact, the first decode() call was wrong, and entries still have to be encoded before being passed to the sink.
-
Patrick Mezard authored
For some reason, if a copy source is deleted in the same revision it is referenced, it is filtered out. This is silly, because this happens all the time with move operations. Fortunately, the filtering code is buggy and ends being a no-op 99% of the time, since it does not delete the right key. Just remove all this nonsense.
-
Patrick Mezard authored
-
- May 01, 2010
-
-
Patrick Mezard authored
-
- May 07, 2010
-
-
Martin Geisler authored
-
Martin Geisler authored
-
- May 03, 2010
-
-
Brendan Cully authored
-
- May 01, 2010
-
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
- Apr 30, 2010
-
-
Wagner Bruna authored
-
- May 01, 2010
-
-
Faheem Mitha authored
This patch is joint work with ilowe.
-
kiilerix authored
This fixes test failure on Solaris, as described on http://mercurial.selenic.com/wiki/WritingTests
-
kiilerix authored
^ is magic on Solaris and must be quoted
-
kiilerix authored
This fixes failure on Solaris because HGRCPATH wasn't unset.
-
- Apr 30, 2010
-
-
Wagner Bruna authored
-
Wagner Bruna authored
-
Matt Mackall authored
-
- Apr 26, 2010
-
-
Nicolas Dumazet authored
* httprangereader: name, __iter__ and close are needed to mimic file object * static-http opener: - disallow write/append modes - add (unused) atomictemp parameter * static-http repo: - root attribute is needed for localrepo.dirstate() - _branch* attributes are required for commitctx and branchmap calls * tags: force repo.opener.__iter__ call earlier to force httprangereader to try to read the cache early, to avoid raising IOError later.
-
- Apr 30, 2010
-
-
Dan Villiom Podlaski Christiansen authored
Previously, Mercurial assumed that the last word of the string representation was the name of the moduled that was imported. This assmption is incorrect, despite being true for the common case of an exception raised by the Python VM. For example, hgsubversion raises an ImportError with a helpful message if the Subversion bindings were not found. The final word of this message is not meaningful on its own, and is never the name of a module. This patch changes the output printed to be a simple stringification of the exception instance. In most cases, this will be `abort: No module named X!' rather than `abort: could not import module X!'. No functionality change; all tests pass.
-
- May 01, 2010
-
-
Benoit Boissinot authored
-
- Apr 08, 2010
-
-
Michael Glassford authored
Recent Pythons (e.g. 2.6.5 and 3.1) introduce a change that causes urlparse.urlunparse(urlparse.urlparse('x://')) to return 'x:' instead of 'x://'i and urlparse.urlunparse(urlparse.urlparse('x:///y')) to return 'x:/y' instead of 'x:///y'. Fix url.hidepassword() and url.removeauth() to handle these cases.
-
- Apr 28, 2010
-
-
Dan Connolly authored
-
Matt Mackall authored
-
- Apr 24, 2010
-
-
Wagner Bruna authored
-
Wagner Bruna authored
-
- Apr 19, 2010
-
-
Jens Bäckman authored
-
Jens Bäckman authored
-
- Apr 26, 2010
-
-
Patrick Mezard authored
sys.stdout.write('-'*80 + '\n') or sys.stdout.write('-'*80 + '\r') do not work on Windows as they do on unix. On a 80 columns Windows console, the extra CR or LF are interpreted as if belonging to the next line, so the first command displays 2 lines (only one on unix) and the second one leave the line visible and move back to the following line. To avoid this, we sacrifice one column under Windows.
-
Faheem Mitha authored
This patch was a collaborative effort between faheem, mg, timeless and ilowe.
-
Patrick Mezard authored
-
- Apr 25, 2010
-
-
Patrick Mezard authored
-