- Nov 11, 2012
-
-
durin42 authored
-
- Nov 01, 2012
- Oct 30, 2012
-
-
David M. Carr authored
This isn't a real implementation of phases support. Rather, it's just enough to avoid the traceback. Traceback (most recent call last): File "/usr/local/share/python/hg", line 38, in <module> mercurial.dispatch.run() File "/usr/local/lib/python2.7/site-packages/mercurial/dispatch.py", line 28, in run sys.exit((dispatch(request(sys.argv[1:])) or 0) & 255) File "/usr/local/lib/python2.7/site-packages/mercurial/dispatch.py", line 65, in dispatch return _runcatch(req) File "/usr/local/lib/python2.7/site-packages/mercurial/dispatch.py", line 88, in _runcatch return _dispatch(req) File "/usr/local/lib/python2.7/site-packages/mercurial/dispatch.py", line 741, in _dispatch cmdpats, cmdoptions) File "/usr/local/lib/python2.7/site-packages/mercurial/dispatch.py", line 514, in runcommand ret = _runcommand(ui, options, cmd, d) File "/usr/local/lib/python2.7/site-packages/mercurial/dispatch.py", line 831, in _runcommand return checkargs() File "/usr/local/lib/python2.7/site-packages/mercurial/dispatch.py", line 802, in checkargs return cmdfunc() File "/usr/local/lib/python2.7/site-packages/mercurial/dispatch.py", line 738, in <lambda> d = lambda: util.checksignature(func)(ui, *args, **cmdoptions) File "/usr/local/lib/python2.7/site-packages/mercurial/util.py", line 472, in check return func(*args, **kwargs) File "/usr/local/lib/python2.7/site-packages/mercurial/commands.py", line 3942, in incoming return hg.incoming(ui, repo, source, opts) File "/usr/local/lib/python2.7/site-packages/mercurial/hg.py", line 525, in incoming return _incoming(display, subreporecurse, ui, repo, source, opts) File "/usr/local/lib/python2.7/site-packages/mercurial/hg.py", line 494, in _incoming displaychlist(other, chlist, displayer) File "/usr/local/lib/python2.7/site-packages/mercurial/hg.py", line 524, in display displayer.show(other[n]) File "/usr/local/lib/python2.7/site-packages/mercurial/cmdutil.py", line 670, in show self._show(ctx, copies, matchfn, props) File "/usr/local/lib/python2.7/site-packages/mercurial/cmdutil.py", line 691, in _show label='log.changeset changeset.%s' % ctx.phasestr()) File "/usr/local/lib/python2.7/site-packages/mercurial/context.py", line 203, in phasestr return phases.phasenames[self.phase()] File "/usr/local/lib/python2.7/site-packages/mercurial/context.py", line 201, in phase return self._repo._phasecache.phase(self._repo, self._rev) AttributeError: 'overlaychangectx' object has no attribute '_repo'
-
- Oct 17, 2012
-
-
durin42 authored
Loading the mapping was costing about half a second for a user on IRC on the pidgin repo. There's no reason to load this data aggressively.
-
- Sep 06, 2012
-
-
David M. Carr authored
-
David M. Carr authored
-
David M. Carr authored
While working on some other tests, I noticed that the push command was returning exit code 1 on success. This changeset makes hgrepo.push use the same return code contract as localrepo.push, which makes the exit codes behave as expected.
-
David M. Carr authored
-
David M. Carr authored
This version is too old to support unified tests with all-version-tests.
-
David M. Carr authored
These tests were being skipped with "not executable" messages
-
- Aug 23, 2012
-
-
David M. Carr authored
Support for Hg 1.5.4 was removed, as it doesn't support revsets and is older than the earliest version we want to put special effort into supporting.
-
David M. Carr authored
-
David M. Carr authored
-
David M. Carr authored
-
- Aug 13, 2012
-
-
kiilerix authored
-
- Aug 06, 2012
- Aug 04, 2012
-
-
David M. Carr authored
This changeset doesn't remove any previous major releases. Instead, I just updated major releases to their latest minor release, and added major releases that have been released since this was last updated.
-
David M. Carr authored
On Hg 1.5.4, util.version() appears to return "unknown", which wasn't an expected value in the version parsing logic in test-incoming and test-outgoing. The net result of the change is that test-incoming no longer fails in 1.5.4, but is skipped instead.
-
David M. Carr authored
As demonstrated by the test suite, it was already broken. Specifically, the "Remove any dangling tag references." section of git_handler.py wasn't properly detecting Hg 1.4, and fell through to a call to util.safehasattr, which didn't yet exist.
-
- Aug 03, 2012
-
-
David M. Carr authored
Both were failing due to extra spaces in the output from merges, which seems to have been caused by a sed expression not working as intended. According to my copy of "man re_format", basic regular expressions (such as used by sed without the -E option) don't support using + as a special character. Thus, I replaced it with one of the recommended alternatives (x+ to xx*).
-
- Jul 31, 2012
-
-
durin42 authored
-
- Aug 01, 2012
-
-
David M. Carr authored
Without this change, the test is skipped for modern versions of Mercurial with minor version less than 5, despite the test actually passing for said versions.
-
- Jul 26, 2012
- Jul 08, 2012
-
-
Toshi MARUYAMA authored
-
- Jul 26, 2012
-
-
Artem Tikhomirov authored
-
- Jul 20, 2012
-
-
durin42 authored
-
- Jul 18, 2012
-
-
Bryan O'Sullivan authored
-
- Jul 04, 2012
-
-
Kevin Bullock authored
This resolves a traceback on pull where hg-git is looking for the nonexistent repo._tagtypes.
-
- Jul 05, 2012
-
-
Brian Warner authored
--- README.md | 4 ++++ 1 file changed, 4 insertions(+)
-
- May 12, 2012
-
-
durin42 authored
-
- Apr 21, 2012
- Mar 31, 2012
-
-
Augie Fackler authored
-
Sean Farley authored
-
Augie Fackler authored
-