- Dec 21, 2009
-
-
Martin Geisler authored
-
Sune Foldager authored
For binary installs, the 'name' argument would be reused as a local variable, destroying its original value. The patch fixes that, and also avoids copying sys.path when it's not necessary.
-
- Dec 20, 2009
-
-
Brendan Cully authored
This harmonizes with clone, and avoids creating a .hg in the current directory if the source ends with a /
-
- Dec 18, 2009
-
-
Greg Ward authored
Options like 'only_branch' should be presented to the user as '--only-branch'.
-
- Dec 16, 2009
-
-
kiilerix authored
Displaying the output from the failing call to "which" didn't prevent make from doing stupid things later. We now only search for "rst2html" and fallback to "rst2html.py". If neither name is found, make will eventually abort when we try to use $(RST2HTML).
-
Matt Mackall authored
-
- Dec 11, 2009
-
-
Nicolas Dumazet authored
Limit was interpreted as absolute, from the topmost revision, without counting the number of revisions matching a given file. Which caused "glog -lN file" to show sometimes less than N csets if the file was not modified in all of the N previous csets. glog will now match the behavior of log.
-
- Dec 16, 2009
-
-
kiilerix authored
Using egrep fixes failure on Solaris
-
- Dec 15, 2009
-
-
Matt Mackall authored
-
- Dec 14, 2009
-
-
Patrick Mezard authored
-
Alexander Solovyov authored
-
Matt Mackall authored
-
- Dec 07, 2009
-
-
Patrick Mezard authored
Otherwise when processing a changeset that in fact changes no files (perhaps due to bug in import from CVS) can get something like: unexpected svn output: abort: unable to cope with svn output Bug report and patch draft by Jesse Glick <jesse.glick@sun.com>
-
- Dec 11, 2009
-
-
Nicolas Dumazet authored
We need to do this to avoid file/directories conflicts. This causes patches removing a committed file and replacing it with a directory to be "unpoppable".
-
- Dec 10, 2009
-
-
Greg Ward authored
- methods: findmissing(), nodesbetween(), descendants(), ancestors() - the goal is precise, concise, accurate, grammatical, understandable, consistently formatted docstrings
-
- Dec 12, 2009
-
-
Martin Geisler authored
Before, an %include directive for a non-existing file resulted in an IOError and a traceback.
-
- Dec 10, 2009
-
-
Dirkjan Ochtman authored
This allows me to specify an auth section in a .hg/hgrc instead of just a global or user-level hgrc.
-
- Dec 08, 2009
-
-
Sune Foldager authored
Thanks to Augie Fackler for reporting this.
-
- Dec 06, 2009
-
-
Sune Foldager authored
-
- Dec 03, 2009
-
-
Sune Foldager authored
The new code aims to implement the RFC correctly for file URIs. Previously they were handled incorrectly in several ways, which could cause problem on Windows in particular.
-
Sune Foldager authored
-
Nicolas Dumazet authored
-
- Dec 02, 2009
-
-
Fabian Kreutz authored
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
- Dec 01, 2009
-
-
Matt Mackall authored
-
- Nov 30, 2009
-
-
Martin Geisler authored
-
Wagner Bruna authored
-
Martin Geisler authored
The man pages can actually be translated by building them in a different locale. However, the man pages contain internal links to certain sections, and when the section titles are translated, the links change too. So it is currently not recommended to build the man pages in anything by the "C" locale.
-
Martin Geisler authored
-
Martin Geisler authored
-
- Nov 24, 2009
-
-
Alexander Solovyov authored
-
- Nov 30, 2009
-
-
Sune Foldager authored
-
Sune Foldager authored
When creating new branches and merging them into existing ones, you would sometimes be able to push some changesets (the existing branches) without using --force, even when that creates a new head on the remote. A test which triggers the error has been added.
-
- Nov 28, 2009
-
-
timeless authored
-
Martin Geisler authored
-
- Nov 26, 2009
-
-
Christian Ebert authored
http://cvsbook.red-bean.com/cvsbook.html#List%20Of%20Keywords Fix default keyword map accordingly. Keep $RCSFile$ for Mercurial backwards compatibility.
-
Martin Geisler authored
-
Martin Geisler authored
The docstring is translated twice: once when used as a format string, and once on display. The second translation fails when the first translation introduces non-ASCII characters in the string. The problem is that the gettext module calls unicode(message) on the string, i.e., it decodes it to a Unicode string using the ASCII encoding (the default encoding). By translating it into a Unicode string here, the unicode() call becomes a noop.
-