Martin Geisler <mg@lazybytes.net> [Wed, 17 Feb 2010 23:07:50 +0100] rev 10496
progress: mark strings for translation
Christian Ebert <blacktrash@gmx.net> [Wed, 17 Feb 2010 17:11:20 +0100] rev 10495
keyword: do not postpone commit hooks
With 0e64d814d7d0 in place, this hack is not needed any more.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 17 Feb 2010 20:44:49 +0100] rev 10494
inotify/inserve: implement --timeout-idle option (issue885)
hg inserve was ignoring and miscomputing the --timeout-idle option (seconds
vs. minutes).
Thanks to Jesse Glick for the bugreport and the initial patch.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 17 Feb 2010 20:30:57 +0100] rev 10493
regression: missing arg from 24ce8f0c0a39 dirstate.{walk,status} changes
Sune Foldager <cryo@cyanite.org> [Wed, 17 Feb 2010 15:43:21 +0100] rev 10492
run commit and update hooks after command completion (issue1827)
Previously, the working dir state hadn't been written when these
hooks were invoked, so external commands couldn't see all changes.
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 17 Feb 2010 11:00:48 +0100] rev 10491
http: len(x) fails if it doesn't fit into an int, use __len__() instead
len(x) raises OverflowError if it's bigger than 2**31-1, we need to call
__len__() ourself instead.
Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> [Tue, 16 Feb 2010 21:04:04 +0100] rev 10490
filelog: sort meta entries, ensure deterministic order
Martin Geisler <mg@lazybytes.net> [Tue, 16 Feb 2010 23:28:46 +0100] rev 10489
Merge with i18n
Jens Bäckman <jens.backman@gmail.com> [Tue, 16 Feb 2010 22:01:27 +0100] rev 10488
i18n-sv: synchronized with 44b4a2a31623
Steve Losh <steve@stevelosh.com> [Tue, 16 Feb 2010 09:31:35 -0500] rev 10487
util: use the built-in any() and all() methods if they are available