- Jul 23, 2009
-
-
Matt Mackall authored
-
Matt Mackall authored
-
- Jul 22, 2009
-
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
This appears to be unneeded and forces fetch commits to examine clean files.
-
Bryan O'Sullivan authored
-
Martin Geisler authored
It is not very helpful to have 'Added tag %s for changeset %s' and similar messages translated into different languages when people work together using different locales. We now use English strings without support for translations. If needed, the user can still supply a custom string for most commands.
- Jul 21, 2009
-
-
Martin Geisler authored
- explain that .hgignore must be created manually - hint that it is typically put under revision control
-
Matt Mackall authored
-
- Jul 19, 2009
-
-
Benoit Boissinot authored
-
Patrick Mezard authored
-
- Jul 15, 2009
-
-
James Abbatiello authored
The Windows-only wrapper around stdout is causing both of these tests to fail. test-demandimport fails because it tries to print repr(sys.stdout). Use stderr instead since that is not wrapped. test-trusted fails because the wrapper doesn't handle softspace and an unexpected extra space gets printed.
-
- Jul 17, 2009
-
-
Matt Mackall authored
-
Patrick Mezard authored
-
- Jul 14, 2009
-
-
Simon Heimberg authored
no reference to self in fncacheopener Inspired by Adrian Buehlmann
-
- Jul 10, 2009
-
-
Shun-ichi GOTO authored
osutil.listdir() may misinterpret 0x5c of MBCS 2nd. byte as path separator. New wrapper prevents this by adding it beforehand.
-
Shun-ichi GOTO authored
The keyword arguments are also decoded before calling original. And dict of return value is also encoded back.
-
Cédric Duval authored
-
- Jul 15, 2009
-
-
James Abbatiello authored
This is useful if a copy of Mercurial is stored in a Subversion repository so that the .svn directories don't get copied.
-
- Jul 10, 2009
-
-
Dan Villiom Podlaski Christiansen authored
A command is considered deprecated if the word "DEPRECATED" is found in the doc string. Such commands are hidden from non-verbose help.
-
- Jul 12, 2009
-
-
Henri Wiechers authored
Improved the description of the matching behavior used with .hgignore. Made some minor language improvements.
-
- Jul 15, 2009
-
-
Brendan Cully authored
-
Brendan Cully authored
I see no reason to open every touched file at once.
-
Bryan O'Sullivan authored
-
- Jul 14, 2009
-
-
Brendan Cully authored
20 files is as fast as 200 for hg diff -r 28015:30103 of mozilla-central. Ideally we'd use util.lrucachefunc, but the interface doesn't quite work.
-
Wagner Bruna authored
Complements eef406165507 (issue1725).
-
- Jul 13, 2009
-
-
Greg Ward authored
(s/...\+/.../ appears to be a GNU-ism: this test broke on OS X and NetBSD. Changing \+ to * fixes it, although that is a slightly less strict regex.)
-
Henrik Stuart authored
The previous branch heads cache implementation iterated all ancestors for each new revision in the repository, causing a massive slowdown on cloning larger repositories.
-
- Jul 12, 2009
-
-
Steve Borho authored
On Windows, Mercurial tries to glob expand provided filenames as a convenience to the user. Unfortunately, there are valid filenames which are not valid glob patterns. In those cases, we should fallback to the original provided filename.
-
Martin Geisler authored
The error was introduced in 338412820a57.
-
- Jul 08, 2009
-
-
Henrik Stuart authored
Versions of Python before 2.6 cannot automatically convert a given port number to an integer, so we add a conversion to coerce the given input to an int.
-
- Jul 06, 2009
-
-
Matt Mackall authored
-
- Jul 09, 2009
-
-
Shun-ichi GOTO authored
-
Shun-ichi GOTO authored
-
- Jul 08, 2009
-
-
Brodie Rao authored
globals()[module] doesn't work for modules inside of packages, such as os.path.
-
- Jul 09, 2009
-
-
Matt Mackall authored
-
Christian Ebert authored
- delete kwrepo.commitctx after using the tweaked version - prefer self.hook over repo.hook to avoid nesting Also pass arguments to commit as arbitrary list. Thanks to Simon Heimberg and Matt Mackall for guidance.
-