Patrick Mezard <pmezard@gmail.com> [Sat, 11 Oct 2008 16:40:59 +0200] rev 7078
test-doctest: remove TERM env variable only if it's there
Patrick Mezard <pmezard@gmail.com> [Sat, 11 Oct 2008 13:07:29 +0200] rev 7077
context: improve memctx documentation
Alexander Solovyov <piranha@piranha.org.ua> [Fri, 10 Oct 2008 15:53:49 +0300] rev 7076
churn: py2.3 compatibility fix
- generator expressions appeared in py2.4
- sort doesn't have any arguments except sorting function
Patrick Mezard <pmezard@gmail.com> [Fri, 10 Oct 2008 13:20:40 +0200] rev 7075
Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Fri, 10 Oct 2008 11:36:02 +0200] rev 7074
convert: properly encode subversion URLs (issue 1224)
Patrick Mezard <pmezard@gmail.com> [Fri, 10 Oct 2008 11:32:38 +0200] rev 7073
convert: tolerate embedded spaces in filemap source revisions
Patrick Mezard <pmezard@gmail.com> [Thu, 09 Oct 2008 14:16:17 +0200] rev 7072
Show added files as "added" in editor commit message (issue 1330)
Matt Mackall <mpm@selenic.com> [Wed, 08 Oct 2008 19:58:35 -0500] rev 7071
zeroconf: initial implementation
This is a basic, hopefully portable, zeroconf extension.
Enabling it will allow hg paths/pull/push/clone/etc. to automatically
discover services advertised as "_hg".
And naturally, running hg serve will advertise itself as a "_hg"
service as well as a "_http" service for use by browsers.
Alexander Solovyov <piranha@piranha.org.ua> [Thu, 09 Oct 2008 00:14:20 +0300] rev 7070
churn and stats commands merged
Petr Kodl <petrkodl@gmail.com> [Tue, 30 Sep 2008 17:23:08 -0400] rev 7069
Eliminate normpath from foldmap calls.
Normcase already takes care of upper/lower case and /->\ conversions.
What's left for normpath is folding of a/../a sequences but this should
be either done consistently on both non-folding and folding code path
or not at all, otherwise we are introducing inconsistent behavior between the
two that has nothing to do with case folding.
Second argument against it - normpath being pure Python function is very slow -
as much as 50% of time is spend just inside normpath call on my repository.