Thu, 07 May 2009 19:02:39 +0200 test-convert-bzr: use sed instead of awk
Martin Geisler <mg@lazybytes.net> [Thu, 07 May 2009 19:02:39 +0200] rev 8306
test-convert-bzr: use sed instead of awk The run-tests.py script has a list of required tools and awk is not one of them -- luckily it could be replaced by sed in this case.
Wed, 06 May 2009 17:48:03 -0400 convert/bzr: handle Bazaar timestamps correctly (issue1652).
Greg Ward <greg-hg@gerg.ca> [Wed, 06 May 2009 17:48:03 -0400] rev 8305
convert/bzr: handle Bazaar timestamps correctly (issue1652).
Thu, 07 May 2009 17:56:57 +0200 dispatch: remember loaded extensions in a real set
Martin Geisler <mg@lazybytes.net> [Thu, 07 May 2009 17:56:57 +0200] rev 8304
dispatch: remember loaded extensions in a real set
Thu, 07 May 2009 01:33:45 +0200 gpg: use reverse kwarg to sort sigs in reversed order
Martin Geisler <mg@lazybytes.net> [Thu, 07 May 2009 01:33:45 +0200] rev 8303
gpg: use reverse kwarg to sort sigs in reversed order
Thu, 07 May 2009 01:33:44 +0200 util: simplify pipefilter and avoid subprocess race
Martin Geisler <mg@lazybytes.net> [Thu, 07 May 2009 01:33:44 +0200] rev 8302
util: simplify pipefilter and avoid subprocess race The subprocess module is not thread safe. Spawning a thread to read the output leads to exceptions like this when Mercurial exits: Exception exceptions.TypeError: TypeError("'NoneType' object is not callable",) in <bound method Popen.__del__ of <subprocess.Popen object at 0x9ed0dcc>> ignored The bug is already reported in the Python bug tracker: http://bugs.python.org/issue1731717
Wed, 06 May 2009 23:35:20 +0200 Removed unnecessary call to dict.keys.
Martin Geisler <mg@lazybytes.net> [Wed, 06 May 2009 23:35:20 +0200] rev 8301
Removed unnecessary call to dict.keys.
Wed, 06 May 2009 20:30:46 +0300 gpg: fix traceback in revs{} display code
Giorgos Keramidas <keramida@ceid.upatras.gr> [Wed, 06 May 2009 20:30:46 +0300] rev 8300
gpg: fix traceback in revs{} display code
Mon, 04 May 2009 14:22:33 -0500 util: kill unused Popen3
Matt Mackall <mpm@selenic.com> [Mon, 04 May 2009 14:22:33 -0500] rev 8299
util: kill unused Popen3
Mon, 04 May 2009 14:21:43 -0500 config: make remap actually work
Matt Mackall <mpm@selenic.com> [Mon, 04 May 2009 14:21:43 -0500] rev 8298
config: make remap actually work
Mon, 04 May 2009 22:14:52 +0200 util: stop overwriting sha1, overwrite _fastsha1 instead
Martin Geisler <mg@lazybytes.net> [Mon, 04 May 2009 22:14:52 +0200] rev 8297
util: stop overwriting sha1, overwrite _fastsha1 instead Some modules (like revlog) would import util.sha1 as _sha1. This defeats the purpose of having util.sha1 overwrite itself with a faster version -- revlog would end up always calling the slow version. By always delegating to util._fastsha1 we avoid this at the cost of an extra (but unconditional) indirection.
Mon, 04 May 2009 21:30:39 +0200 util: remove md5
Martin Geisler <mg@lazybytes.net> [Mon, 04 May 2009 21:30:39 +0200] rev 8296
util: remove md5 This hash function is broken and should not be used by new code. It is currently only used by keepalive.
Mon, 04 May 2009 20:29:05 +0200 util: remove warnings when importing md5 and sha
Sune Foldager <cryo@cyanite.org> [Mon, 04 May 2009 20:29:05 +0200] rev 8295
util: remove warnings when importing md5 and sha
Mon, 04 May 2009 15:31:57 +0200 transaction: refactor transaction.abort and rollback to use the same code
Henrik Stuart <hg@hstuart.dk> [Mon, 04 May 2009 15:31:57 +0200] rev 8294
transaction: refactor transaction.abort and rollback to use the same code This adds a change to the way that abort is processed, as it will not continue truncating files beyond the first failure, otherwise the respective functionality is maintained, i.e. abort will not unlink files, but rollback will. Co-contributor: Sune Foldager <cryo@cyanite.org>
Mon, 04 May 2009 13:47:12 +0200 test: change repair strip test to illustrate manifest errors
Henrik Stuart <henrik.stuart@edlund.dk> [Mon, 04 May 2009 13:47:12 +0200] rev 8293
test: change repair strip test to illustrate manifest errors
Mon, 04 May 2009 19:51:08 +0200 verify: reference the correct linkrev when a filelog is missing
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Mon, 04 May 2009 19:51:08 +0200] rev 8292
verify: reference the correct linkrev when a filelog is missing when a filelog is missing, the first bad revision is the first revision where the filelog is referenced, not 0.
Fri, 24 Apr 2009 10:44:39 +0200 verify: avoid exception on missing file revlog
Henrik Stuart <hg@hstuart.dk> [Fri, 24 Apr 2009 10:44:39 +0200] rev 8291
verify: avoid exception on missing file revlog Previously, accessing the filelinkrevs of a specific file that happens to have already been unlinked from the filesystem, e.g. due to a partial rollback having occurred, will trigger a KeyError being raised. Co-contributor: Sune Foldager <cryo@cyanite.org>
Sun, 19 Apr 2009 20:02:32 +0200 transaction: reset transaction on abort
Henrik Stuart <hg@hstuart.dk> [Sun, 19 Apr 2009 20:02:32 +0200] rev 8290
transaction: reset transaction on abort Prevent the use of the transaction after it has been aborted. Co-contributor: Sune Foldager <cryo@cyanite.org>
Fri, 24 Apr 2009 09:56:53 +0200 transaction: ensure finished transactions are not reused
Henrik Stuart <hg@hstuart.dk> [Fri, 24 Apr 2009 09:56:53 +0200] rev 8289
transaction: ensure finished transactions are not reused All transactional methods on the transaction class have had a decorator added that ensures the transaction is running. Co-contributor: Sune Foldager <cryo@cyanite.org>
Mon, 04 May 2009 03:49:57 +0200 mq: simpler check of first character of guard name
Simon Heimberg <simohe@besonet.ch> [Mon, 04 May 2009 03:49:57 +0200] rev 8288
mq: simpler check of first character of guard name
Sun, 03 May 2009 20:34:12 +0200 commands: fix capitalization in revert help text
Martin Geisler <mg@lazybytes.net> [Sun, 03 May 2009 20:34:12 +0200] rev 8287
commands: fix capitalization in revert help text
Sun, 03 May 2009 17:36:58 +0200 setup: require Python 2.4
Martin Geisler <mg@lazybytes.net> [Sun, 03 May 2009 17:36:58 +0200] rev 8286
setup: require Python 2.4
Sun, 03 May 2009 13:49:04 +0200 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Sun, 03 May 2009 13:49:04 +0200] rev 8285
Merge with crew-stable
Sun, 03 May 2009 10:38:08 +0300 bisect: use subprocess to get command return code
Alexander Solovyov <piranha@piranha.org.ua> [Sun, 03 May 2009 10:38:08 +0300] rev 8284
bisect: use subprocess to get command return code
Sun, 03 May 2009 00:41:09 +0200 setup: cleanup old left-over code
Martin Geisler <mg@lazybytes.net> [Sun, 03 May 2009 00:41:09 +0200] rev 8283
setup: cleanup old left-over code
(0) -3000 -1000 -300 -100 -50 -24 +24 +50 +100 +300 +1000 +3000 +10000 +30000 tip