- Oct 18, 2008
-
-
Martin Geisler authored
-
Dirkjan Ochtman authored
-
Dirkjan Ochtman authored
-
- Jun 12, 2008
-
-
Dirkjan Ochtman authored
-
- Oct 18, 2008
-
-
Dirkjan Ochtman authored
-
Benoit Allard authored
-
Patrick Mezard authored
-
Dhruva Krishnamurthy authored
-
Matt Mackall authored
-
- Oct 17, 2008
-
-
Christian Ebert authored
Example case: Display file written in iso-8859-1 with current HGENCODING utf-8. At the moment only an Error page appears because pygmentize chokes on the replacement chars. Alternatives: 1) Turn off highlighting and avoid UnicodeDecodeError for files that are not in HGENCODING. 2) [this patch] use util.tolocal to display these files. Alternative 2) seems ok, as this only concerns display and readability. See also: fe38b0a3a928, apparently put aside during refactor of highlight. Add test for UnicodeDecodeError with iso-8859-1 file contents.
-
- Oct 18, 2008
-
-
Matt Mackall authored
Fix bug spotted by Dov Feldstern
-
- Oct 09, 2008
-
-
Petr Kodl authored
util module implements two versions of statfiles function _statfiles calls lstat per file _statfiles_clustered takes advantage of optimizations in osutil.c, stats all files in directory at once when new directory is hit and caches the results util.statfiles dispatches to appropriate version during module loading The speedup on directory tree with 2k directories and 63k files is about factor of 1.8 (1.3s -> 0.8s for hg diff - hg startup overhead about .2s) At this point only Win32 now benefit from this patch. Rest of OSes use the non clustered implementation.
-
- Oct 16, 2008
-
-
Christian Ebert authored
hgrc.5.ja.txt probably should include an example like: [email] charsets = iso-8859-1, iso-8859-15, windows-1252, iso-8859-2, windows-1250, iso-2022-jp, iso-2022-jp-ms
-
- Jul 12, 2008
-
-
Christian Ebert authored
- addresses will be properly encoded - message bodies will also be encoded as we are not sending patches that are meant to be applied - update test output - adapt test-keyword to ignore the new headers
-
Christian Ebert authored
Do nothing for "hg email --test" to preserve display.
-
Christian Ebert authored
- headencode, addressencode: encode headers - mimeencode: encode message parts not containing patches - new email config "charsets" Users may configure email.charsets as a list of charsets they consider appropriate for the recipients of their outgoing mails. Conversion is tried in this order: 1. us-ascii (ascii, us-ascii are removed from email.charsets if present) 2. email.charsets (if present) in order given 3. util._fallbackencoding, util._encoding, utf-8 if not already in email.charsets
-
- Oct 17, 2008
-
-
kiilerix authored
'hg qrefresh --short file.txt' now adds changes made to file.txt to current patch. This builds on a patch for implementing --amend by Kirill Smelkov as discussed in issue933. FIXME: Why do mq refresh have two matchers if we only need one?
-
- Oct 18, 2008
-
-
Hiroshi Funai authored
-
- Oct 08, 2008
-
-
Hiroshi Funai authored
-
- Oct 16, 2008
-
-
Bernhard Leiner authored
Make sure that the new implementation in C return that same values as the original Python implementation.
-
Bernhard Leiner authored
-
Bernhard Leiner authored
-
- Oct 17, 2008
-
-
Brendan Cully authored
This patch is constructed to make it easy for external extensions to provide their own templates, by updating templater.path.
-
- Oct 05, 2008
-
-
Dirkjan Ochtman authored
-
- Oct 17, 2008
-
-
Dirkjan Ochtman authored
-
- Oct 14, 2008
-
-
Benoit Boissinot authored
When the common part of a diff can be moved forward, move it forward. Otherwise we don't get deterministic results (it would depends on the way we split for the recursion). That way we get identical hunks when doing the same change, it helps to solve issue1295 (inconsistent diffs on different side during a merge).
-
- Oct 15, 2008
-
-
Benoit Boissinot authored
-
Benoit Boissinot authored
-
Patrick Mezard authored
Reviewed by Frank Kingswood <frank@kingswood-consulting.co.uk>
-
Benoit Boissinot authored
-
Benoit Boissinot authored
Do not abort on permission denied error, just skip the directory.
-
Benoit Boissinot authored
-
- Oct 13, 2008
-
-
Patrick Mezard authored
Drafted and reviewed by Frank Kingswood <frank@kingswood-consulting.co.uk>.
-
- Oct 14, 2008
-
-
Benoit Boissinot authored
reported by Patrick Waugh
-
- Oct 07, 2008
-
-
Christian Ebert authored
-
- Oct 13, 2008
-
-
Matt Mackall authored
-
- Oct 12, 2008
-
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
Allow status() to take contexts as well as nodes. This lets us avoid unpacking manifests multiple times and intelligently unpack manifests in revision order. Also, we can avoid unpacking manifests at all when there are no changes in the working directory.
-