win32mbcs: add reversing wrapper for some unicode-incompatible functions.
This changeset fix the problem to use win32mbcs with mercurial 2.3 or
later.
The problem is brought by side effect of modification of
encoding.upper() (changeset 17236:
9fb8312dbdbd) because upper() does
not accept unicode string argument. So wrapped util.normcase() which
uses upper() will fail. In other words, upper() and lower() are
unicode incompatible.
To fix this issue, this changeset adds new wrapper for reversed
conversion (unicode to str) for lower() and upper() to use them
safely.
convert: normalize paths in filemaps (
issue3612)
convert doesn't normalise double slashes in paths. Path normalization
is applied when a path is loaded into filemap and when a file lookup
request is issued to filemap.
repair: use node to track post-strip bookmark target
Revision numbers are unstable when non-consecutive revs are stripped.
largefiles: update lfutil.findoutgoing() discovery method
It looks like this method missed the updates in
30273f0c776b (which changed the
preferred discovery method from findcommonincoming() to findcommonoutgoing()),
and
cd956049fc14 (which rolls up the outgoing lists into a single object).
wireproto: fix pushkey hook failure and output on remote http repo
Over http, a failed pushkey hook simply crashed the server, and
successful hook output was never sent to the client.