Tue, 24 Mar 2009 18:52:48 +0100 i18n: more commands.py translations
Fabian Kreutz <fabian.kreutz@qvantel.com> [Tue, 24 Mar 2009 18:52:48 +0100] rev 7896
i18n: more commands.py translations
Tue, 24 Mar 2009 18:50:46 +0100 i18n: more commands.py reworking + new translations
Fabian Kreutz <fabian.kreutz@qvantel.com> [Tue, 24 Mar 2009 18:50:46 +0100] rev 7895
i18n: more commands.py reworking + new translations
Fri, 27 Mar 2009 17:35:00 +0100 cmdutil: fix untranslatable string in copy
Martin Geisler <mg@daimi.au.dk> [Fri, 27 Mar 2009 17:35:00 +0100] rev 7894
cmdutil: fix untranslatable string in copy
Thu, 26 Mar 2009 08:07:28 +0100 enhance Makefile for language translators
Tobias Bell <tobias.bell@gmail.com> [Thu, 26 Mar 2009 08:07:28 +0100] rev 7893
enhance Makefile for language translators To update a po-file just do 'make i18n/xx.po'. No other po-file will be touched.
Thu, 26 Mar 2009 19:01:06 +0900 Fixing issue1542, adding a relevant test
Nicolas Dumazet <nicdumz.commits@gmail.com> [Thu, 26 Mar 2009 19:01:06 +0900] rev 7892
Fixing issue1542, adding a relevant test inotify is smart enough to notify you about any changes in a directory, even if you only watch the directory, and none if its contents: the recursive add_watch I added was unnecessary. The only thing that matters here is the recursive status update on directory deletion. And scan() has to be called _before_ the deferred call is registered. (race condition: depending on the times, the previous patch could apparently fail on the provided test. It's not the case anymore.)
Wed, 11 Mar 2009 20:28:09 +0100 rebase: remove unused statement
Stefano Tortarolo <stefano.tortarolo@gmail.com> [Wed, 11 Mar 2009 20:28:09 +0100] rev 7891
rebase: remove unused statement
Thu, 26 Mar 2009 13:54:44 -0500 util: split out posix, windows, and win32 modules
Matt Mackall <mpm@selenic.com> [Thu, 26 Mar 2009 13:54:44 -0500] rev 7890
util: split out posix, windows, and win32 modules
Sat, 14 Mar 2009 10:46:48 -0400 patchbomb: option to set the name of bundle attachment (issue1452)
John Mulligan <phlogistonjohn@asynchrono.us> [Sat, 14 Mar 2009 10:46:48 -0400] rev 7889
patchbomb: option to set the name of bundle attachment (issue1452) specifying --bundlename=NAME will create a "NAME.hg" attachment
Tue, 24 Mar 2009 16:41:41 -0500 Merge with -stable
Matt Mackall <mpm@selenic.com> [Tue, 24 Mar 2009 16:41:41 -0500] rev 7888
Merge with -stable
Mon, 23 Mar 2009 15:04:26 -0400 Typo fix in help.
Greg Ward <gerg-hg@gerg.ca> [Mon, 23 Mar 2009 15:04:26 -0400] rev 7887
Typo fix in help.
Sun, 22 Mar 2009 20:59:03 +0100 i18n: add German translation
Tobias Bell <tobias.bell@gmail.com> [Sun, 22 Mar 2009 20:59:03 +0100] rev 7886
i18n: add German translation * Most basic commands are translated * hgext/alias.py * hgext/acl.py * hgext/fetch.py * help topics * urls * dates * patterns * diffs 433 translated messages, 1350 untranslated messages. Translators: * Tobias Bell * Fabian Kreutz (fabian DOT kreutz AT qvantel.com) * Lutz Horn (lutz DOT horn AT fastmail DOT fm) Please report issues to http://bitbucket.org/tobidope/i18n-german-translation/issues/ or to the mailing list.
Fri, 20 Mar 2009 14:28:48 +0800 i18n: updated Chinese translation
Dongsheng Song <dongsheng.song@gmail.com> [Fri, 20 Mar 2009 14:28:48 +0800] rev 7885
i18n: updated Chinese translation
Tue, 10 Mar 2009 19:16:16 +0100 i18n: update italian translation
Stefano Tortarolo <stefano.tortarolo@gmail.com> [Tue, 10 Mar 2009 19:16:16 +0100] rev 7884
i18n: update italian translation
Mon, 23 Mar 2009 15:32:29 +0100 revlog: faster hash computation when one of the parent node is null
Nicolas Dumazet <nicdumz.commits@gmail.com> [Mon, 23 Mar 2009 15:32:29 +0100] rev 7883
revlog: faster hash computation when one of the parent node is null Because we often compute sha1(nullid), it's interesting to copy a precomputed hash of nullid instead of computing everytime the same hash. Similarly, when one of the parents is null, we can avoid a < comparison (sort). Overall, this change adds a string equality comparison on each hash() call, but when p2 is null, we drop one string < comparison, and copy a hash instead of computing it. Since it is common to have revisions with only one parent, this change makes hash() 25% faster when cloning a big repository.
Mon, 23 Mar 2009 15:36:30 +0100 ancestor: caching the parent list to improve performance
Nicolas Dumazet <nicdumz.commits@gmail.com> [Mon, 23 Mar 2009 15:36:30 +0100] rev 7882
ancestor: caching the parent list to improve performance When computing the DAG depth, we walk through all ancestors: this commit adds memoization during that first step. Then, the memorized parents are fetched from a dict instead of calling parents() on each vertex. This tweak, according to Kcachegrind, improves ancestor() performance by 16% when cloning a big repository.
(0) -3000 -1000 -300 -100 -15 +15 +100 +300 +1000 +3000 +10000 +30000 tip