Tue, 03 Aug 2010 13:41:47 -0300 hgfixes: add a fixer to convert plain strings to bytestrings
Renato Cunha <renatoc@gmail.com> [Tue, 03 Aug 2010 13:41:47 -0300] rev 11747
hgfixes: add a fixer to convert plain strings to bytestrings This patch implements a 2to3 fixer that converts all plain strings in a python source file to byte strings syntax. Example: foo = 'Normal string' would become foo = b'Normal string' The motivation behind this fixer can be found in http://selenic.com/pipermail/mercurial-devel/2010-June/022363.html or, in other words: the current hg source assumes that _most_ strings are "meant" to be byte sequences, so it makes sense to make the convertion implemented by this patch. As mentioned above, not all mercurial modules want to use strings as bytes, examples include i18n (which uses unicode), and demandimport (in py3k, module names are normal strings, thus unicode, and there's no need for a convertion). Therefore, these modules are blacklisted in the fixer. There are also a few functions that can take only unicode arguments, thus the convertion shouldn't be done for those.
Tue, 03 Aug 2010 19:38:19 +0530 revlog: add shallow header flag
Vishakh H <vsh426@gmail.com> [Tue, 03 Aug 2010 19:38:19 +0530] rev 11746
revlog: add shallow header flag REVLOGSHALLOW header flag to mark revlog as shallow. The _shallow attribute of the revlog is used to check if the header flag is set.
Tue, 03 Aug 2010 19:38:19 +0530 revlog: add punched revision flag
Vishakh H <vsh426@gmail.com> [Tue, 03 Aug 2010 19:38:19 +0530] rev 11745
revlog: add punched revision flag index flag to identify a revision as punched, i.e. it contains no data. REVIDX_PUNCHED_FLAG = 2, is used to mark a revision as punched. REVIDX_KNOWN_FLAGS is the accumulation of all index flags.
Tue, 03 Aug 2010 00:10:28 -0500 tests: unify test-tags
Matt Mackall <mpm@selenic.com> [Tue, 03 Aug 2010 00:10:28 -0500] rev 11744
tests: unify test-tags
Mon, 02 Aug 2010 23:43:06 -0500 tests: unify test-empty
Matt Mackall <mpm@selenic.com> [Mon, 02 Aug 2010 23:43:06 -0500] rev 11743
tests: unify test-empty
Mon, 02 Aug 2010 23:29:14 -0500 tests: unify test-basic
Matt Mackall <mpm@selenic.com> [Mon, 02 Aug 2010 23:29:14 -0500] rev 11742
tests: unify test-basic
Mon, 02 Aug 2010 23:27:22 -0500 tests: basic support for unified tests
Matt Mackall <mpm@selenic.com> [Mon, 02 Aug 2010 23:27:22 -0500] rev 11741
tests: basic support for unified tests
Mon, 02 Aug 2010 15:44:54 -0500 tests: move script execution in runner helpers
Matt Mackall <mpm@selenic.com> [Mon, 02 Aug 2010 15:44:54 -0500] rev 11740
tests: move script execution in runner helpers
Mon, 02 Aug 2010 13:31:43 -0500 Merge with stable
Matt Mackall <mpm@selenic.com> [Mon, 02 Aug 2010 13:31:43 -0500] rev 11739
Merge with stable
Mon, 02 Aug 2010 13:30:03 -0500 Added signature for changeset c00f03a4982e stable
Matt Mackall <mpm@selenic.com> [Mon, 02 Aug 2010 13:30:03 -0500] rev 11738
Added signature for changeset c00f03a4982e
Mon, 02 Aug 2010 13:30:03 -0500 Added tag 1.6.2 for changeset c00f03a4982e stable
Matt Mackall <mpm@selenic.com> [Mon, 02 Aug 2010 13:30:03 -0500] rev 11737
Added tag 1.6.2 for changeset c00f03a4982e
Mon, 02 Aug 2010 13:18:32 -0300 i18n-pt_BR: synchronized with 87dcf758309d stable 1.6.2
Wagner Bruna <wbruna@yahoo.com> [Mon, 02 Aug 2010 13:18:32 -0300] rev 11736
i18n-pt_BR: synchronized with 87dcf758309d
Mon, 02 Aug 2010 13:11:33 -0300 merge with i18n stable stable
Wagner Bruna <wbruna@yahoo.com> [Mon, 02 Aug 2010 13:11:33 -0300] rev 11735
merge with i18n stable
Sun, 01 Aug 2010 22:43:13 +0200 i18n-sv: synchronized with 56b41b2cc690 stable
Jens Bäckman <jens.backman@gmail.com> [Sun, 01 Aug 2010 22:43:13 +0200] rev 11734
i18n-sv: synchronized with 56b41b2cc690
Mon, 02 Aug 2010 10:55:51 -0500 Merge with stable
Matt Mackall <mpm@selenic.com> [Mon, 02 Aug 2010 10:55:51 -0500] rev 11733
Merge with stable
Mon, 02 Aug 2010 10:48:31 -0400 color: call correct superclass method in write_err stable
Brodie Rao <brodie@bitheap.org> [Mon, 02 Aug 2010 10:48:31 -0400] rev 11732
color: call correct superclass method in write_err Without this fix, any calls to write_err would go to stdout instead of stderr, and calls during pushbuffer would cause unpack ValueErrors on popbuffer.
Fri, 30 Jul 2010 10:38:54 +0300 convert/progress: use plural and avoid retrieving stable
timeless <timeless@gmail.com> [Fri, 30 Jul 2010 10:38:54 +0300] rev 11731
convert/progress: use plural and avoid retrieving
Sun, 01 Aug 2010 16:02:56 -0500 qfinish: fix range logic for --applied
Matt Mackall <mpm@selenic.com> [Sun, 01 Aug 2010 16:02:56 -0500] rev 11730
qfinish: fix range logic for --applied qbase:qtip can include non-mq csets, use qbase::qtip instead
Tue, 20 Jul 2010 20:53:48 +0200 rebase/progress: Adding progress for rebasing
timeless <timeless@gmail.com> [Tue, 20 Jul 2010 20:53:48 +0200] rev 11729
rebase/progress: Adding progress for rebasing
Thu, 22 Jul 2010 18:47:46 +0300 record: count lines changed as the number of lines added or removed
timeless <timeless@gmail.com> [Thu, 22 Jul 2010 18:47:46 +0300] rev 11728
record: count lines changed as the number of lines added or removed per "record" hunk Record deals in hunks which are tighter than traditional patch hunks, really only a single run of additions/removals. Another addition, even a line after a fixed line is treated as a new hunk by record.
Sun, 01 Aug 2010 16:26:02 -0400 color: pass write/write_err to win32print correctly (issue2312) stable
Brodie Rao <brodie@bitheap.org> [Sun, 01 Aug 2010 16:26:02 -0400] rev 11727
color: pass write/write_err to win32print correctly (issue2312)
Sun, 01 Aug 2010 13:52:42 -0500 Merge with stable
Matt Mackall <mpm@selenic.com> [Sun, 01 Aug 2010 13:52:42 -0500] rev 11726
Merge with stable
Sun, 01 Aug 2010 13:49:43 -0500 Added signature for changeset bf1774d95bde stable
Matt Mackall <mpm@selenic.com> [Sun, 01 Aug 2010 13:49:43 -0500] rev 11725
Added signature for changeset bf1774d95bde
Sun, 01 Aug 2010 13:49:42 -0500 Added tag 1.6.1 for changeset bf1774d95bde stable
Matt Mackall <mpm@selenic.com> [Sun, 01 Aug 2010 13:49:42 -0500] rev 11724
Added tag 1.6.1 for changeset bf1774d95bde
Sun, 01 Aug 2010 08:54:30 -0500 Merge with stable
Matt Mackall <mpm@selenic.com> [Sun, 01 Aug 2010 08:54:30 -0500] rev 11723
Merge with stable
Sun, 01 Aug 2010 01:54:31 -0300 i18n-pt_BR: synchronized with db426935fa94 stable 1.6.1
Wagner Bruna <wbruna@yahoo.com> [Sun, 01 Aug 2010 01:54:31 -0300] rev 11722
i18n-pt_BR: synchronized with db426935fa94
Sun, 01 Aug 2010 01:51:21 -0300 Merge with stable stable
Wagner Bruna <wbruna@yahoo.com> [Sun, 01 Aug 2010 01:51:21 -0300] rev 11721
Merge with stable
Sun, 01 Aug 2010 01:46:58 -0300 i18n-pt_BR: synchronized with 0e789549271d stable
Wagner Bruna <wbruna@yahoo.com> [Sun, 01 Aug 2010 01:46:58 -0300] rev 11720
i18n-pt_BR: synchronized with 0e789549271d
Sun, 25 Jul 2010 10:51:05 +0200 i18n-sv: synchronized with c47cb3193c53 stable
Jens Bäckman <jens@titv.se> [Sun, 25 Jul 2010 10:51:05 +0200] rev 11719
i18n-sv: synchronized with c47cb3193c53
Sat, 31 Jul 2010 18:27:03 -0500 help: fix bytes/digit confusion for hashes
Matt Mackall <mpm@selenic.com> [Sat, 31 Jul 2010 18:27:03 -0500] rev 11718
help: fix bytes/digit confusion for hashes spotted by FUJIWARA Katsunori <fujiwara@ascade.co.jp>
Sat, 31 Jul 2010 18:12:50 -0500 Merge with stable
Matt Mackall <mpm@selenic.com> [Sat, 31 Jul 2010 18:12:50 -0500] rev 11717
Merge with stable
Fri, 30 Jul 2010 10:32:24 +0300 progress: use gerund (updating) for merge progress stable
timeless <timeless@gmail.com> [Fri, 30 Jul 2010 10:32:24 +0300] rev 11716
progress: use gerund (updating) for merge progress
(0) -10000 -3000 -1000 -300 -100 -50 -32 +32 +50 +100 +300 +1000 +3000 +10000 +30000 tip