Sun, 26 Apr 2009 14:49:49 +0200 tests: removed redundant "-u test" from test scripts
Martin Geisler <mg@lazybytes.net> [Sun, 26 Apr 2009 14:49:49 +0200] rev 8168
tests: removed redundant "-u test" from test scripts The tests are executed with a .hgrc file which adds "-u test" by default.
Sun, 26 Apr 2009 14:29:02 +0200 tests: removed redundant "-d '0 0'" from test scripts
Martin Geisler <mg@lazybytes.net> [Sun, 26 Apr 2009 14:29:02 +0200] rev 8167
tests: removed redundant "-d '0 0'" from test scripts The tests are executed with a .hgrc file which adds "-d '0 0'" by default.
Sun, 26 Apr 2009 11:49:17 +0200 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Sun, 26 Apr 2009 11:49:17 +0200] rev 8166
Merge with crew-stable
Sun, 26 Apr 2009 11:35:53 +0200 convert/bzr: make it work with filemaps (issue1631)
Patrick Mezard <pmezard@gmail.com> [Sun, 26 Apr 2009 11:35:53 +0200] rev 8165
convert/bzr: make it work with filemaps (issue1631) The bzr converter maintains a child -> parents mapping and drop entries whenever a child is read. It does not work with filemaps, getchangedfiles() may be called more than once when filtered files belong to merge revisions. getchanges() still works that way but it is not clear whether a similar issue can arise when interacting with merges.
Sat, 25 Apr 2009 22:26:39 +0200 verify: combine sets instead of concatenating lists
Martin Geisler <mg@lazybytes.net> [Sat, 25 Apr 2009 22:26:39 +0200] rev 8164
verify: combine sets instead of concatenating lists
Sat, 25 Apr 2009 22:25:49 +0200 rebase, revlog: use set(x) instead of set(x.keys())
Martin Geisler <mg@lazybytes.net> [Sat, 25 Apr 2009 22:25:49 +0200] rev 8163
rebase, revlog: use set(x) instead of set(x.keys()) The latter is both unnecessary and slower.
Wed, 15 Apr 2009 10:33:58 -0500 monoblue: Fix indentation and other styling in the annotation view.
Augie Fackler <durin42@gmail.com> [Wed, 15 Apr 2009 10:33:58 -0500] rev 8162
monoblue: Fix indentation and other styling in the annotation view.
Wed, 22 Apr 2009 15:49:33 +0200 run-tests: cosmetics
Simon Heimberg <simohe@besonet.ch> [Wed, 22 Apr 2009 15:49:33 +0200] rev 8161
run-tests: cosmetics
Thu, 23 Apr 2009 08:39:27 +0200 patchbomb: add user agent header to mails
Henrik Stuart <hg@hstuart.dk> [Thu, 23 Apr 2009 08:39:27 +0200] rev 8160
patchbomb: add user agent header to mails
Fri, 24 Apr 2009 19:39:27 +0200 help: document stripdir template filter
Martin Geisler <mg@lazybytes.net> [Fri, 24 Apr 2009 19:39:27 +0200] rev 8159
help: document stripdir template filter
Fri, 24 Apr 2009 18:37:44 +0200 templatefilters: add new stripdir filter
Aleix Conchillo Flaque <aleix@member.fsf.org> [Fri, 24 Apr 2009 18:37:44 +0200] rev 8158
templatefilters: add new stripdir filter Adds a new template filter for removing directory levels from a string. Examples: {foo|stripdir} -> 'foo' {foo/bar|stripdir} -> 'foo' {foo/bar/more|stripdir} -> 'foo/bar' {foo/bar/more|stripdir|stripdir} -> 'foo'
Fri, 24 Apr 2009 18:47:15 +0200 context: use Python 2.4 decorator syntax
Martin Geisler <mg@lazybytes.net> [Fri, 24 Apr 2009 18:47:15 +0200] rev 8157
context: use Python 2.4 decorator syntax
Fri, 24 Apr 2009 17:32:18 +0200 localrepo: use sets in findcommonincoming
Martin Geisler <mg@lazybytes.net> [Fri, 24 Apr 2009 17:32:18 +0200] rev 8156
localrepo: use sets in findcommonincoming
Fri, 24 Apr 2009 17:32:18 +0200 strutil: removed rsplit
Martin Geisler <mg@lazybytes.net> [Fri, 24 Apr 2009 17:32:18 +0200] rev 8155
strutil: removed rsplit
Fri, 24 Apr 2009 17:32:18 +0200 notify: turned a set-like dict into a real set
Martin Geisler <mg@lazybytes.net> [Fri, 24 Apr 2009 17:32:18 +0200] rev 8154
notify: turned a set-like dict into a real set
Wed, 22 Apr 2009 20:51:20 +0200 revlog: let nodestotag be a set instead of a list
Martin Geisler <mg@lazybytes.net> [Wed, 22 Apr 2009 20:51:20 +0200] rev 8153
revlog: let nodestotag be a set instead of a list
Wed, 22 Apr 2009 00:57:28 +0200 replace set-like dictionaries with real sets
Martin Geisler <mg@lazybytes.net> [Wed, 22 Apr 2009 00:57:28 +0200] rev 8152
replace set-like dictionaries with real sets Many of the dictionaries created by dict.fromkeys were emulating sets. These can now be replaced with real sets.
Wed, 22 Apr 2009 00:56:06 +0200 util: use built-in set instead of util.unique
Martin Geisler <mg@lazybytes.net> [Wed, 22 Apr 2009 00:56:06 +0200] rev 8151
util: use built-in set instead of util.unique
Wed, 22 Apr 2009 00:55:32 +0200 util: use built-in set and frozenset
Martin Geisler <mg@lazybytes.net> [Wed, 22 Apr 2009 00:55:32 +0200] rev 8150
util: use built-in set and frozenset This drops Python 2.3 compatibility.
Fri, 24 Apr 2009 10:43:12 +0200 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Fri, 24 Apr 2009 10:43:12 +0200] rev 8149
Merge with crew-stable
Fri, 24 Apr 2009 10:34:11 +0200 convert/bzr: fix symlink handling (issue1626)
Patrick Mezard <pmezard@gmail.com> [Fri, 24 Apr 2009 10:34:11 +0200] rev 8148
convert/bzr: fix symlink handling (issue1626)
Fri, 24 Apr 2009 00:06:01 -0700 win32text: be more careful about rejecting violating changesets
Bryan O'Sullivan <bos@serpentine.com> [Fri, 24 Apr 2009 00:06:01 -0700] rev 8147
win32text: be more careful about rejecting violating changesets We now try to walk changesets in reverse order from newest to oldest, so that if we see a file multiple times, we treat the newest version as canonical. This should prevent us from rejecting a changegroup that contains an unacceptable commit followed later by a commit that fixes the problem.
Thu, 23 Apr 2009 15:40:10 -0500 keepalive: attempt to fix issue1003
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8146
keepalive: attempt to fix issue1003 This is a reimport of the relevant piece of the upstream urlgrabber, which appears to be more correct.
Thu, 23 Apr 2009 15:40:10 -0500 test-archive: silence stupid messages from GNU tar
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8145
test-archive: silence stupid messages from GNU tar Recent versions of GNU tar have apparently decided they're old enough that it's ok for them to prattle on senselessly about things no one cares about without anyone objecting. We object; apply duct tape.
Thu, 23 Apr 2009 15:40:10 -0500 ui: introduce new config parser
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8144
ui: introduce new config parser
Thu, 23 Apr 2009 15:40:10 -0500 ui: simplify init, kill dupconfig
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8143
ui: simplify init, kill dupconfig
Thu, 23 Apr 2009 15:40:10 -0500 ui: fold readsections into readconfig
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8142
ui: fold readsections into readconfig readconfig now reads only single files readconfig takes an optional list of sections readconfig trusts files we're looking for sections in
Thu, 23 Apr 2009 15:40:10 -0500 ui: cleanup _is_trusted a bit
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8141
ui: cleanup _is_trusted a bit
Thu, 23 Apr 2009 15:40:10 -0500 ui: simplify parent overlay logic
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8140
ui: simplify parent overlay logic
Thu, 23 Apr 2009 15:40:10 -0500 ui: always have ucdata
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8139
ui: always have ucdata simplify readconfig logic
Thu, 23 Apr 2009 15:40:10 -0500 ui: fold verbosity_constraints into fixconfig, simplify
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8138
ui: fold verbosity_constraints into fixconfig, simplify
Thu, 23 Apr 2009 15:40:10 -0500 ui: kill updateopts
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8137
ui: kill updateopts Move setconfig into dispatch._parseconfig
Thu, 23 Apr 2009 15:40:10 -0500 ui: refactor option setting
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8136
ui: refactor option setting No more passing options as constructor keywords. Basic options are now always stored in the overlay for simplicity and consistency.
Thu, 23 Apr 2009 15:40:10 -0500 ui: kill redundant call to verbosity_constraints
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8135
ui: kill redundant call to verbosity_constraints
Thu, 23 Apr 2009 15:40:10 -0500 ui: always have an overlay
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8134
ui: always have an overlay
Thu, 23 Apr 2009 15:40:10 -0500 ui: kill check_trusted
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8133
ui: kill check_trusted
Thu, 23 Apr 2009 15:40:10 -0500 ui: move _isatty near user
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:40:10 -0500] rev 8132
ui: move _isatty near user
Mon, 13 Apr 2009 21:23:52 +0300 zeroconf: don't fail on non-local names
Alexander Solovyov <piranha@piranha.org.ua> [Mon, 13 Apr 2009 21:23:52 +0300] rev 8131
zeroconf: don't fail on non-local names
Thu, 23 Apr 2009 15:39:54 -0500 Merge with stable
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:39:54 -0500] rev 8130
Merge with stable
Thu, 23 Apr 2009 15:39:41 -0500 Merge with crew
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:39:41 -0500] rev 8129
Merge with crew
Thu, 23 Apr 2009 15:25:27 -0500 Merge with crew-stable
Matt Mackall <mpm@selenic.com> [Thu, 23 Apr 2009 15:25:27 -0500] rev 8128
Merge with crew-stable
Thu, 23 Apr 2009 16:52:25 +0200 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Thu, 23 Apr 2009 16:52:25 +0200] rev 8127
Merge with crew-stable
Thu, 23 Apr 2009 15:07:05 +0200 convert/bzr: handle files replaced by directories (issue1623)
Patrick Mezard <pmezard@gmail.com> [Thu, 23 Apr 2009 15:07:05 +0200] rev 8126
convert/bzr: handle files replaced by directories (issue1623)
Thu, 23 Apr 2009 08:45:44 +0200 convert/mtn: mtn does not record timezones, mark dates as UTC (issue1624)
Paul Aurich <paul@darkrain42.org> [Thu, 23 Apr 2009 08:45:44 +0200] rev 8125
convert/mtn: mtn does not record timezones, mark dates as UTC (issue1624)
Wed, 22 Apr 2009 10:25:05 +0200 convert/mtn: handle directory move into moved directory (issue1619/3)
Patrick Mezard <pmezard@gmail.com> [Wed, 22 Apr 2009 10:25:05 +0200] rev 8124
convert/mtn: handle directory move into moved directory (issue1619/3)
Tue, 21 Apr 2009 22:31:16 +0200 convert/mtn: handle files moved in a moved directory (issue1619/2)
Patrick Mezard <pmezard@gmail.com> [Tue, 21 Apr 2009 22:31:16 +0200] rev 8123
convert/mtn: handle files moved in a moved directory (issue1619/2)
Wed, 22 Apr 2009 20:15:55 -0300 i18n: update Brazilian Portuguese translation
Wagner Bruna <wbruna@softwareexpress.com.br> [Wed, 22 Apr 2009 20:15:55 -0300] rev 8122
i18n: update Brazilian Portuguese translation - msgmerge with hg 18710802cd49 - most remaining messages translated
Sun, 19 Apr 2009 20:37:26 -0300 i18n: add Brazilian Portuguese translation
Diego de Oliveira <diego@diegooliveira.com> [Sun, 19 Apr 2009 20:37:26 -0300] rev 8121
i18n: add Brazilian Portuguese translation
Wed, 22 Apr 2009 23:13:39 +0200 convert/svn: support more OS specific auth providers via svn 1.6 API
Patrick Mezard <pmezard@gmail.com> [Wed, 22 Apr 2009 23:13:39 +0200] rev 8120
convert/svn: support more OS specific auth providers via svn 1.6 API
Wed, 22 Apr 2009 17:15:59 +0200 cmdutil: return boolean result directly in want function
Martin Geisler <mg@lazybytes.net> [Wed, 22 Apr 2009 17:15:59 +0200] rev 8119
cmdutil: return boolean result directly in want function
Wed, 22 Apr 2009 17:14:58 +0200 util: return boolean result directly in util.binary
Martin Geisler <mg@lazybytes.net> [Wed, 22 Apr 2009 17:14:58 +0200] rev 8118
util: return boolean result directly in util.binary
Wed, 22 Apr 2009 01:39:47 +0200 remove unnecessary outer parenthesis in if-statements
Martin Geisler <mg@lazybytes.net> [Wed, 22 Apr 2009 01:39:47 +0200] rev 8117
remove unnecessary outer parenthesis in if-statements
Wed, 22 Apr 2009 09:11:46 +0200 run-tests: fix error when timeout occurs
Simon Heimberg <simohe@besonet.ch> [Wed, 22 Apr 2009 09:11:46 +0200] rev 8116
run-tests: fix error when timeout occurs
Tue, 21 Apr 2009 11:39:31 +0300 i18n-de: Help tests in commands.py done, still working on option description
Fabian Kreutz <fabian.kreutz@starnet.fi> [Tue, 21 Apr 2009 11:39:31 +0300] rev 8115
i18n-de: Help tests in commands.py done, still working on option description
Fri, 17 Apr 2009 14:10:05 +0300 i18n-de: More translations of commands.py (revert, status, unbundle, ...)
Fabian Kreutz <fabian.kreutz@starnet.fi> [Fri, 17 Apr 2009 14:10:05 +0300] rev 8114
i18n-de: More translations of commands.py (revert, status, unbundle, ...)
Wed, 22 Apr 2009 02:01:22 +0200 add a deprecation warning for gc based lock releasing
Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> [Wed, 22 Apr 2009 02:01:22 +0200] rev 8113
add a deprecation warning for gc based lock releasing
Wed, 22 Apr 2009 02:01:22 +0200 switch lock releasing in the extensions from gc to explicit
Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> [Wed, 22 Apr 2009 02:01:22 +0200] rev 8112
switch lock releasing in the extensions from gc to explicit
Wed, 22 Apr 2009 02:01:22 +0200 document the locking pattern in localrepo.status
Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> [Wed, 22 Apr 2009 02:01:22 +0200] rev 8111
document the locking pattern in localrepo.status
Wed, 22 Apr 2009 02:01:22 +0200 switch dircleanup in mercurial.hg.clone from gc based to explicit
Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> [Wed, 22 Apr 2009 02:01:22 +0200] rev 8110
switch dircleanup in mercurial.hg.clone from gc based to explicit
Wed, 22 Apr 2009 02:01:22 +0200 switch lock releasing in the core from gc to explicit
Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> [Wed, 22 Apr 2009 02:01:22 +0200] rev 8109
switch lock releasing in the core from gc to explicit
(0) -3000 -1000 -300 -100 -60 +60 +100 +300 +1000 +3000 +10000 +30000 tip