- Jan 31, 2014
-
-
Wagner Bruna authored
-
Katsunori FUJIWARA authored
Before this patch, "ja.po" translation causes test-gendoc.t failure with old docutils: It fails with docutils 0.7, but not with 0.11.
-
- Jan 30, 2014
-
-
Simon Heimberg authored
I mainly did the simple cases, like removing ".. note::", changing single quotes to double quotes and adapting underlining. Unhelpful msgstr in fuzzy entries are removed. (They were suggestions by the program msgmerge.)
-
- Jan 22, 2014
-
-
Simon Heimberg authored
Do this in a separate patch for easier reviewing of the translation patch.
-
Simon Heimberg authored
Strip the locations by running msgcat [1] as the wiki [2] tells to do. Do this in a separate patch for getting a smaller one when updating from hg.pot. [1] msgcat --no-location -o de.po de.po [2] mercurial.selenic.com/wiki/TranslatingMercurial#Updating_a_Translation
-
- Jan 30, 2014
-
-
Pierre-Yves David authored
Before this changeset local clone of a repo with hidden changeset would include then in the clone (why not) and turn them public (plain wrong). This happened because the copy clone publish by dropping the phaseroot file entirely making everything in the repo public (and therefore immune to obsolescence marker). This changeset takes the simplest fix, we deny the copy clone in the case of hidden changeset falling back to pull clone that will exclude them from the clone and therefore not turning them public. A smarter version of copy clone could be done, but I prefer to go for the simplest solution first.
-
- Jan 28, 2014
-
-
lstewart authored
The fix for issue2653 broke the ability to map the default branch of a source repository to a non-default named branch in the destination repository. Leave the default behaviour as is, but allow the branch name "None" to be used to map to a non-default named branch in the destination repository.
-
- Jan 27, 2014
-
-
Julien Cristau authored
The command server would otherwise ignore that option, since the repo object is only created once.
-
- Jan 30, 2014
-
-
Katsunori FUJIWARA authored
This fixes mistake of documentation about matching against directories in "pattern.txt" introduced by 50db996bccaf. ".hgignore" treats specified "glob:" pattern as same as one specified for "-X" option: it can match against directories, too. For reference, extra regexp string appended to specified pattern for each types are listed below: see also "match.match()" and "match._regex()" for detail. ============= ========== =============== type cmdline -I/-X ============= ========== =============== glob/relglob '$' '(?:/|$)' path/relpath '(?:/|$)' '(?:/|$)' re/relre (none) (none) ============= ========== =============== Appending '$' means that the specified pattern should match against only files.
-
- Jan 29, 2014
-
-
Katsunori FUJIWARA authored
Before this patch, shell alias may be executed by abbreviated command name unexpectedly, even if abbreviated command name matches also against the command provided by extension. For example, "rebate" shell alias is executed by "hg reba", even if rebase extension (= "rebase" command) is enabled. In this case, "hg reba" should be aborted because of command name ambiguity. This patch makes "_checkshellalias()" invoke "cmdutil.findcmd()" always with "strict=True" (default value). If abbreviated command name matches against only one shell alias even after loading extensions, such shell alias will be executed via "_parse()". This patch doesn't remove "_checkshellalias()" invocation itself, because it may prevent shell alias from loading extensions uselessly.
-
- Jan 30, 2014
-
-
Matt Mackall authored
-
Katsunori FUJIWARA authored
-
- Jan 29, 2014
-
-
Katsunori FUJIWARA authored
-
Katsunori FUJIWARA authored
-
- Jan 22, 2014
-
-
Simon Heimberg authored
When generating documentation, indentation must match for getting the same view for translated messages. Often an output is generated anyway, but it can look different. When a syntactically wrong indentation change is done, runrst will fail (this is detected by test-gendoc.t). Fix the simple places. When translation knowledge is necessary, the entry is marked as fuzzy (and therefore skipped when generating translations). A translator can fix it later.
-
Simon Heimberg authored
A test for this is in preparation.
-
Simon Heimberg authored
.. note:: is rst syntax which must not be translated. Fix this in the translations. This is not the first time this happens, so there should be a note for the translator. A later patch will change the generation of the po files to write this automatically. A test in i18n/check-translation.py could help as well.
-
- Jan 27, 2014
-
-
Leonardo Bueno Postacchini authored
-
- Nov 24, 2013
-
-
Angel Ezquerra authored
When a subrepo revision was hidden it was considered missing and mercurial was unable to update to the corresponding parent revision. Instead warn the user of the problem and let it choose what to do (the default is to udpate anyway).
-
Angel Ezquerra authored
This revision has no behaviour change. It simply removes an unnecessary else that follows an if / return block. The change looks big because a big chunk of code has been unindented one level.
-
Angel Ezquerra authored
If a subrepo revision is hidden (because it was amended, for example) it does not make sense to try to "get" it from the remote subrepository. Note that in order to avoid making the change look bigger than it is, this adds an unnecessary else clause. This will be removed on a follow up patch.
-
- Jan 23, 2014
-
-
David Soria Parra authored
On Mac OS gcc-llvm throws an -Wtautological-compare warning because flen is defined as an unsigned integer, therefore flen < 0 is always true.
-
Steve Borho authored
-
- Jan 28, 2013
-
-
Pierre-Yves David authored
Now that discovery is working on unfiltered changeset, I had a good occasion to look at that bug again. This let me realise that a trivial node vs rev comparision was the cause of this two years old bugs… Happy second birthday phases!
-
- Jan 23, 2014
-
-
Simon Heimberg authored
-
Simon Heimberg authored
Running `hg log --style compact` (or any other style) raised a traceback when no template directory was there. Now there is a message: Abort: style 'compact' not found (available styles: no templates found, try `hg debuginstall` for more info) There is no test because this would require to rename the template directory. But this would influence other tests running in parallel. And when the test would be aborted the wrong named directory would remain, especially a problem when running with -l.
-
Matt Mackall authored
-
- Jan 21, 2014
-
-
Matt Mackall authored
-
Matt Mackall authored
-
- Jan 20, 2014
-
-
Wagner Bruna authored
Reported by FUJIWARA Katsunori <foozy@lares.dti.ne.jp>.
-
- Jan 21, 2014
-
-
Matt Mackall authored
-
- Jan 20, 2014
-
-
Mads Kiilerich authored
test-gpg.t left the random_seed file as modified. That was slightly confusing ... and it was accidentally changed in ea4996754d91. The seed is created on demand and there is no reason to track it. There is also no reason to leak state between test runs so we let the test clean up after running.
-
Mads Kiilerich authored
test-status-color.t would fail when using a Python without curses.
-
Matt Mackall authored
This should fix a test breakage on Windows.
-
Matt Mackall authored
-
- Jan 16, 2014
-
-
Jordi Gutiérrez Hermoso authored
It looks like somewhere down the line, patch.diffopts changed the names of the options that it recognises, but record.recordfunc wasn't updated to the new names. Instead of trying to write down names at all, we now use whatever names are provided in commands.diffwsopts and pass that along to patch.diffopts, along with a couple of custom options
-
Jordi Gutiérrez Hermoso authored
The record extension is writing its own version of commands.diffwsopts which is identical to commands.diffwsopts. Based on the principle that code duplication increases maintenance burden, this patch removes record's ad-hoc diffopts in favour of commands.diffwsopts
-
- Nov 17, 2013
-
-
Pierre-Yves David authored
For technical reason (discovery, obsolescence marker) the hash of secret changeset are communicated outside of your repo. We clarifie that in the help so that people does not used hash of secret changeset as nuclear launch code.
-
- Nov 16, 2013
-
-
Mads Kiilerich authored
-