Tue, 01 Aug 2006 10:57:28 -0700 mq: add qmv as alias for qrename
Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 01 Aug 2006 10:57:28 -0700] rev 2751
mq: add qmv as alias for qrename
Tue, 01 Aug 2006 10:55:06 -0700 New self-explanatory command qrename.
Brendan Cully <brendan@kublai.com> [Tue, 01 Aug 2006 10:55:06 -0700] rev 2750
New self-explanatory command qrename.
Tue, 01 Aug 2006 09:51:36 -0400 [darcs2hg] Windows compatibilty patct
Sébastien Pierre <sebastien@xprima.com> [Tue, 01 Aug 2006 09:51:36 -0400] rev 2749
[darcs2hg] Windows compatibilty patct Originally submitted by Daiju Kito 1. single quote didn't work in several cases 2. os.unlink tries to delete tmpfile when it's called. It won't wait like unix.
Mon, 31 Jul 2006 20:33:56 -0700 New mq command qfold: Merge patches into the current patch.
Brendan Cully <brendan@kublai.com> [Mon, 31 Jul 2006 20:33:56 -0700] rev 2748
New mq command qfold: Merge patches into the current patch. Patches should be in the series file but not yet applied.
Mon, 31 Jul 2006 18:39:31 -0700 Add command qheader to display the header of a given patch.
Brendan Cully <brendan@kublai.com> [Mon, 31 Jul 2006 18:39:31 -0700] rev 2747
Add command qheader to display the header of a given patch.
Mon, 31 Jul 2006 17:55:43 -0700 Add option -e/--edit to qrefresh, to edit the existing header.
Brendan Cully <brendan@kublai.com> [Mon, 31 Jul 2006 17:55:43 -0700] rev 2746
Add option -e/--edit to qrefresh, to edit the existing header.
Mon, 31 Jul 2006 18:47:43 -0700 Change patch header as well as commit message with qrefresh -m or -l.
Brendan Cully <brendan@kublai.com> [Mon, 31 Jul 2006 18:47:43 -0700] rev 2745
Change patch header as well as commit message with qrefresh -m or -l.
Tue, 01 Aug 2006 02:23:05 -0700 Remove pointless reposetup hook from hgk.py
Brendan Cully <brendan@kublai.com> [Tue, 01 Aug 2006 02:23:05 -0700] rev 2744
Remove pointless reposetup hook from hgk.py
Mon, 31 Jul 2006 12:02:13 -0700 import: switch from application/x-patch to text/x-diff
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 31 Jul 2006 12:02:13 -0700] rev 2743
import: switch from application/x-patch to text/x-diff christian ebert says his mailer was broken.
Mon, 31 Jul 2006 14:22:17 -0300 mq: correct the use of super
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Mon, 31 Jul 2006 14:22:17 -0300] rev 2742
mq: correct the use of super The first argument passed to super is supposed to be the class where it's being used, not self.__class__ - the two can be different when there's inheritance involved.
Mon, 31 Jul 2006 07:31:31 -0700 log: add -f/--follow option, to follow rename/copy
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 31 Jul 2006 07:31:31 -0700] rev 2741
log: add -f/--follow option, to follow rename/copy
Mon, 31 Jul 2006 07:11:12 -0700 clean up hg.py: move repo constructor code into each repo module
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 31 Jul 2006 07:11:12 -0700] rev 2740
clean up hg.py: move repo constructor code into each repo module
Sun, 30 Jul 2006 22:52:34 -0700 merge with mpm.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 30 Jul 2006 22:52:34 -0700] rev 2739
merge with mpm.
Mon, 31 Jul 2006 00:47:43 -0500 Kill ui.setconfig_remoteopts
Matt Mackall <mpm@selenic.com> [Mon, 31 Jul 2006 00:47:43 -0500] rev 2738
Kill ui.setconfig_remoteopts This brought too much knowledge about command line particulars into the ui code. Moved to commands.py.
Sun, 30 Jul 2006 21:46:38 -0700 pull: allow to pull from bundle file without need for bundle: syntax
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 30 Jul 2006 21:46:38 -0700] rev 2737
pull: allow to pull from bundle file without need for bundle: syntax
Sun, 30 Jul 2006 09:37:08 +0300 avoid calling (cd ...) with `nil' as a directory name
Giorgos Keramidas <keramida@ceid.upatras.gr> [Sun, 30 Jul 2006 09:37:08 +0300] rev 2736
avoid calling (cd ...) with `nil' as a directory name When (hg-root) cannot determine the current Mercurial root, print an error message instead of trying to evaluate (cd nil).
Sat, 29 Jul 2006 18:15:08 +0200 fix output file format %r
Christian Ebert <blacktrash@gmx.net> [Sat, 29 Jul 2006 18:15:08 +0200] rev 2735
fix output file format %r
Fri, 28 Jul 2006 21:20:41 -0300 hbisect.py: don't rely on __del__ to write the current state.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Fri, 28 Jul 2006 21:20:41 -0300] rev 2734
hbisect.py: don't rely on __del__ to write the current state. This is yet another page of the "Thou shalt not do too much inside __del__ methods" book, in the "demandload and __del__ don't go well together" chapter. The bisect extension is broken in 0.9.1: $ hg bisect init $ hg bisect bad Fatal Python error: Interpreter not initialized (version mismatch?) Aborted (yes, I tripled checked my instalation to make sure the problem is not there) It's been broken since revision fe1689273f84 moved the import of the binascii module into a demandload. (In details: the first time that "hg bisect bad" (or good) is called, there are still no revisions saved in .hg/bisect/*, so bisect.__init__ doesn't call hg.bin on anything. So, when we reach __del__, the binascii module still hasn't been imported and we get that "nice" message above.)
Sat, 29 Jul 2006 01:58:12 +0200 hgcommand.vim: cleanup of doc self-install code
Christian Ebert <blacktrash@gmx.net> [Sat, 29 Jul 2006 01:58:12 +0200] rev 2733
hgcommand.vim: cleanup of doc self-install code
Sun, 30 Jul 2006 21:24:06 -0700 import: allow application/x-patch for funny patch from christian ebert
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 30 Jul 2006 21:24:06 -0700] rev 2732
import: allow application/x-patch for funny patch from christian ebert
Sat, 29 Jul 2006 10:27:54 +0200 patchbomb: do not write Bcc
Christian Ebert <blacktrash@gmx.net> [Sat, 29 Jul 2006 10:27:54 +0200] rev 2731
patchbomb: do not write Bcc
Sun, 30 Jul 2006 13:29:19 -0700 merge with crew.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 30 Jul 2006 13:29:19 -0700] rev 2730
merge with crew.
Sat, 29 Jul 2006 11:14:32 -0700 mq: add basic tests
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 29 Jul 2006 11:14:32 -0700] rev 2729
mq: add basic tests
Sat, 29 Jul 2006 11:05:39 -0700 mq: allow to apply patches in subdir of repo again
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 29 Jul 2006 11:05:39 -0700] rev 2728
mq: allow to apply patches in subdir of repo again i broke it in 35caf437a201.
Sat, 29 Jul 2006 08:11:41 +0200 merge with tah
Thomas Arendsen Hein <thomas@intevation.de> [Sat, 29 Jul 2006 08:11:41 +0200] rev 2727
merge with tah
Fri, 28 Jul 2006 08:59:06 +0200 Add test mq keeping a reference to localrepo which can't remove journal on exit.
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 28 Jul 2006 08:59:06 +0200] rev 2726
Add test mq keeping a reference to localrepo which can't remove journal on exit.
Fri, 28 Jul 2006 14:31:20 -0700 mq: update to handle repomap not longer used
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 28 Jul 2006 14:31:20 -0700] rev 2725
mq: update to handle repomap not longer used
Fri, 28 Jul 2006 13:08:25 -0700 mq: replace module-wide repo hash with a repo attribute
Brendan Cully <brendan@kublai.com> [Fri, 28 Jul 2006 13:08:25 -0700] rev 2724
mq: replace module-wide repo hash with a repo attribute
Fri, 28 Jul 2006 13:08:21 -0700 mq: do not hold a reference to repo in tags override
Brendan Cully <brendan@kublai.com> [Fri, 28 Jul 2006 13:08:21 -0700] rev 2723
mq: do not hold a reference to repo in tags override Instead, replace repo's class object with a subclass.
Fri, 28 Jul 2006 22:17:32 +0200 patchbomb: fix generation of message-id when sending attachments
Christian Ebert <blacktrash@gmx.net> [Fri, 28 Jul 2006 22:17:32 +0200] rev 2722
patchbomb: fix generation of message-id when sending attachments node was set to bin(node) before message-id was created
(0) -1000 -300 -100 -50 -30 +30 +50 +100 +300 +1000 tip