Tue, 07 Jul 2009 23:54:30 +0200 commands: wrapped docstrings at 78 characters
Martin Geisler <mg@lazybytes.net> [Tue, 07 Jul 2009 23:54:30 +0200] rev 9051
commands: wrapped docstrings at 78 characters We have always had a left margin of 4 characters -- probably just because that's how docstrings for top-level functions turn out by default, but it also looks nice in the built-in help. The docstrings were wrapped at 70 characters, which is the default for Emacs. However, this gives a right margin of 10 characters in a standard 80 character terminal. I've now wrapped the relevant docstrings at 78 characters, effectively killing the right margin. The asymmetric margins looked a bit odd and some of the text looked cramped with a right margin, so Dirkjan and I felt that it was best to remove it entirely. The two character gap was kept to have some space between the border of the terminal -- it will also make diffs involving the docstrings fit in a 80 character line.
Tue, 07 Jul 2009 23:30:48 +0200 extdiff: fix indentation and use gettext
Martin Geisler <mg@lazybytes.net> [Tue, 07 Jul 2009 23:30:48 +0200] rev 9050
extdiff: fix indentation and use gettext
Tue, 07 Jul 2009 17:26:20 +0200 filemerge, subrepo: correct indention
Martin Geisler <mg@lazybytes.net> [Tue, 07 Jul 2009 17:26:20 +0200] rev 9049
filemerge, subrepo: correct indention
Sun, 21 Jun 2009 01:13:19 +0200 ui: extract choice from prompt
Simon Heimberg <simohe@besonet.ch> [Sun, 21 Jun 2009 01:13:19 +0200] rev 9048
ui: extract choice from prompt avoid translating single characters (as l for _local or sym_link)
Sun, 05 Jul 2009 17:09:01 +0200 patchbomb: use local time for the Date: header
Cédric Duval <cedricduval@free.fr> [Sun, 05 Jul 2009 17:09:01 +0200] rev 9047
patchbomb: use local time for the Date: header
Sun, 05 Jul 2009 16:42:10 +0200 patchbomb: fix From_ in the message's envelope
Cédric Duval <cedricduval@free.fr> [Sun, 05 Jul 2009 16:42:10 +0200] rev 9046
patchbomb: fix From_ in the message's envelope Localized date in the From_ prevents MUAs like mutt from parsing mbox files generated by patchbomb. Using a 24 characters date in asctime format instead.
Tue, 07 Jul 2009 14:20:58 +0200 merge with crew-stable
Martin Geisler <mg@lazybytes.net> [Tue, 07 Jul 2009 14:20:58 +0200] rev 9045
merge with crew-stable
Tue, 07 Jul 2009 01:25:44 +0200 Bourne shells do not maintain $PWD; update tests accordingly
David Champion <dgc@uchicago.edu> [Tue, 07 Jul 2009 01:25:44 +0200] rev 9044
Bourne shells do not maintain $PWD; update tests accordingly
Sun, 05 Jul 2009 18:52:55 -0400 tests: remove more instances of export FOO=bar bashism
Brodie Rao <me+hg@dackz.net> [Sun, 05 Jul 2009 18:52:55 -0400] rev 9043
tests: remove more instances of export FOO=bar bashism
Sun, 05 Jul 2009 18:52:55 -0400 tests: remove more instances of export FOO=bar bashism
Brodie Rao <me+hg@dackz.net> [Sun, 05 Jul 2009 18:52:55 -0400] rev 9042
tests: remove more instances of export FOO=bar bashism
Sun, 05 Jul 2009 13:59:25 -0500 test-gpg: suppress secure memory warning
David Champion <dgc@uchicago.edu> [Sun, 05 Jul 2009 13:59:25 -0500] rev 9041
test-gpg: suppress secure memory warning Some platforms (Solaris for one) does not support secure memory and would give a warning.
Sun, 05 Jul 2009 13:58:37 -0500 test: fix for compatibilty with true Bourne /bin/sh
David Champion <dgc@uchicago.edu> [Sun, 05 Jul 2009 13:58:37 -0500] rev 9040
test: fix for compatibilty with true Bourne /bin/sh 'export foo=bar' is an extension, replaced with 'foo=bar; export foo'
Sun, 05 Jul 2009 12:50:14 +0200 p4: simplify sort key
Martin Geisler <mg@lazybytes.net> [Sun, 05 Jul 2009 12:50:14 +0200] rev 9039
p4: simplify sort key
Sun, 05 Jul 2009 12:43:40 +0200 localrepo: removed unnecessary revkey sort helper
Martin Geisler <mg@lazybytes.net> [Sun, 05 Jul 2009 12:43:40 +0200] rev 9038
localrepo: removed unnecessary revkey sort helper
Sun, 05 Jul 2009 11:06:41 +0200 compat: remove unnecessary diamond-shaped multiple inheritance
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 11:06:41 +0200] rev 9037
compat: remove unnecessary diamond-shaped multiple inheritance
Sun, 05 Jul 2009 11:06:09 +0200 split local and stdlib module imports (eases migration issues)
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 11:06:09 +0200] rev 9036
split local and stdlib module imports (eases migration issues)
Sun, 05 Jul 2009 11:05:31 +0200 compat: don't reference an exception var inside a lambda
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 11:05:31 +0200] rev 9035
compat: don't reference an exception var inside a lambda
Sun, 05 Jul 2009 11:04:55 +0200 compat: use email in favor of mimetools
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 11:04:55 +0200] rev 9034
compat: use email in favor of mimetools
Sun, 05 Jul 2009 11:04:31 +0200 verify: fix scope issues with del statement
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 11:04:31 +0200] rev 9033
verify: fix scope issues with del statement
Sun, 05 Jul 2009 11:02:00 +0200 compat: use 'key' argument instead of 'cmp' when sorting a list
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 11:02:00 +0200] rev 9032
compat: use 'key' argument instead of 'cmp' when sorting a list
Sun, 05 Jul 2009 11:01:30 +0200 compat: use open() instead of file() everywhere
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 11:01:30 +0200] rev 9031
compat: use open() instead of file() everywhere
Sun, 05 Jul 2009 11:01:01 +0200 compat: can't compare two values of unequal datatypes
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 11:01:01 +0200] rev 9030
compat: can't compare two values of unequal datatypes
Sun, 05 Jul 2009 11:00:44 +0200 compat: use // for integer division
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 11:00:44 +0200] rev 9029
compat: use // for integer division
Sun, 05 Jul 2009 10:59:54 +0200 tests: add -3 switch to run-tests.py
Alejandro Santos <alejolp@alejolp.com> [Sun, 05 Jul 2009 10:59:54 +0200] rev 9028
tests: add -3 switch to run-tests.py
Sat, 04 Jul 2009 15:26:14 +0200 keyword: remove unused import
Christian Ebert <blacktrash@gmx.net> [Sat, 04 Jul 2009 15:26:14 +0200] rev 9027
keyword: remove unused import
Sat, 04 Jul 2009 13:31:36 +0200 merge with crew-stable
Martin Geisler <mg@lazybytes.net> [Sat, 04 Jul 2009 13:31:36 +0200] rev 9026
merge with crew-stable
Sat, 04 Jul 2009 12:40:34 +0200 help: add #revision syntax to the example valid URLs.
David Wolever <wolever@cs.toronto.edu> [Sat, 04 Jul 2009 12:40:34 +0200] rev 9025
help: add #revision syntax to the example valid URLs.
Fri, 03 Jul 2009 10:43:46 -0400 context: improve arg-checking assert.
Greg Ward <greg@gerg.ca> [Fri, 03 Jul 2009 10:43:46 -0400] rev 9024
context: improve arg-checking assert.
Sat, 04 Jul 2009 12:40:34 +0200 help: add #revision syntax to the example valid URLs.
David Wolever <wolever@cs.toronto.edu> [Sat, 04 Jul 2009 12:40:34 +0200] rev 9023
help: add #revision syntax to the example valid URLs.
Sat, 04 Jul 2009 12:25:10 +0200 merge wtih crew-stable
Martin Geisler <mg@lazybytes.net> [Sat, 04 Jul 2009 12:25:10 +0200] rev 9022
merge wtih crew-stable
(0) -3000 -1000 -300 -100 -50 -30 +30 +50 +100 +300 +1000 +3000 +10000 +30000 tip