- Aug 23, 2007
-
-
Benoit Boissinot authored
-
Benoit Boissinot authored
-
Benoit Boissinot authored
If there is any error while checking if exec is supported, we can return fallback. fix issue705
-
Brendan Cully authored
-
- Aug 19, 2007
-
-
Matt Mackall authored
Some Python versions don't handle large regexes, so when we hit an overflow, split our regex in two.
-
- Aug 18, 2007
-
-
Alexis S. L. Carvalho authored
We weren't reading all the data sent by the server. Depending on the system, the remote hg (actually, the remote python) could send a "close failed: [Errno 32] Broken pipe", making some tests fail.
-
Alexis S. L. Carvalho authored
This avoids possible problems when the user has a ~/.pydistutils.cfg. Fixes issue638. Patch provided by Ralf Schmitt.
-
Peter Meerwald authored
when giving user/pwd in an URL, eg. hg pull http://user:pwd@host.com:666/hg/something, hg would still ask for user/pwd in interactive mode (or fail in non-interactive)
-
- Aug 16, 2007
-
-
Benoit Boissinot authored
-
Patrick Mezard authored
-
- Aug 15, 2007
-
-
Brendan Cully authored
-
Matt Mackall authored
-
Patrick Mezard authored
-
Patrick Mezard authored
-
- Aug 02, 2007
-
-
Thomas Arendsen Hein authored
-
- Aug 14, 2007
-
-
Patrick Mezard authored
-
Patrick Mezard authored
-
Benoit Boissinot authored
-
Guillaume Chazarain authored
-
Patrick Mezard authored
-
Patrick Mezard authored
-
- Aug 13, 2007
-
-
Patrick Mezard authored
Both are unavailable under Windows and tarfile detects them via ImportError.
-
- Aug 12, 2007
-
-
Alexis S. L. Carvalho authored
When merging rev1 and rev2, we want to search for copies that happened in rev1 but not in rev2 and vice-versa. We were starting the search at rev1/rev2 and then going back, stopping as soon as we reached the revno of the ancestor, but that can miss some cases (see the new test-issue672). Now we calculate the revisions that are ancestors of rev1 or rev2 (but not both) and make sure the search doesn't stop too early. Simplified test provided by mpm, based on a test case provided by Edward Lee.
-
- Aug 11, 2007
-
-
Thomas Arendsen Hein authored
-
Thomas Arendsen Hein authored
-
Thomas Arendsen Hein authored
Before this, executing commands.dispatch(['log', '-r', '0']) commands.dispatch(['log', '-r', 'tip']) would look like: hg log -r 0 hg log -r 0 -r tip Reported by TK Soh, patch by Alexis S. L. Carvalho
-
Thomas Arendsen Hein authored
"Skipping test-no-symlinks: system supports symbolic links" instead of "Skipping test-no-symlinks: unexpected feature: symbolic links"
-
Thomas Arendsen Hein authored
And add missing eol and remove trailing space which where introduced by the patches adding this test.
-
- Aug 09, 2007
-
-
Patrick Mezard authored
-
Patrick Mezard authored
-
Brendan Cully authored
-
Brendan Cully authored
hg commands call extensions.loadall twice, once during dispatch and once when the repository is instantiated. Without this change, load caches successful loads, but not unsuccessful, causing errors to be displayed twice.
-
- Aug 08, 2007
-
-
Benoit Boissinot authored
-
Patrick Mezard authored
-
Patrick Mezard authored
-
Eric Hopper authored
-
- Aug 07, 2007
-
-
Thomas Arendsen Hein authored
Based on an email from Ralf.Leibold at nuance dot com
-
Thomas Arendsen Hein authored
-
- Aug 06, 2007
-
-
Thomas Arendsen Hein authored
Patch written by Benoit Boissinot. This should probably be improved in the future to handle long-living branches, as joining two "other" heads will switch to that new head. But this is not a new problem, as adding to the "other" head would have switched to that new head, too.
-
- Jul 06, 2007
-
-
Brendan Cully authored
-