Skip to content
Snippets Groups Projects
  1. Apr 26, 2013
    • Mads Kiilerich's avatar
      largefiles: drop repo wrapping detection · ce4472b2
      Mads Kiilerich authored
      After 257afe5489d4 I see:
      
        $ hg id -q
        largefiles: repo method 'commit' appears to have already been wrapped by another extension: largefiles may behave incorrectly
        largefiles: repo method 'push' appears to have already been wrapped by another extension: largefiles may behave incorrectly
        be207d9b7e4b
      
      The warning is bad:
      
      * The message gives no hint what the problem is and how it can be resolved.
        The message is useless.
      
      * Largefiles do have its share of problems, but I don't think I ever have seen
        a problem where this warning would have helped. The 'may' in the warning
        seems like an exaggeration of the risk. Having largefiles enabled in
        combination with for instance mq, hggit and hgsubversion causes a warning
        (depending on the configuration order) but do not cause problems. Extensions
        might of course be incompatible, but they can be that in many other ways.
        The check and the message are incorrect.
      
      It would thus be better to remove the check and the warning completely.
      
      Before 257afe5489d4 the check always failed. That change made the check work
      more like intended ... but the intention was wrong. This change will thus also
      back that change out.
      ce4472b2
    • Katsunori FUJIWARA's avatar
      config: discard "%unset" values defined in the other files read in previously · 7d82ad4b
      Katsunori FUJIWARA authored
      Before this patch, "%unset" can't unset values defined in the other
      files read in previously, even though online help document says that
      it can. It can unset only values defined in the same configuration
      file.
      
      For example, the value defined in "~/.hgrc" can't be unset by "%unset"
      in ".hg/hgrc" of the repository.
      
      This patch records "%unset"-ed values in "config.parse()", and
      discards corresponding values in "config.update()".
      7d82ad4b
    • Katsunori FUJIWARA's avatar
      tests: rename from test-config-case.t to test-config.t for centralization · 8fb8dce3
      Katsunori FUJIWARA authored
      Before this patch, there is no test script testing configuration
      handling generally. "test-config-case.t" seems to be specific for
      testing case sensitive configuration.
      
      This patch renames from "test-config-case.t" to "test-config.t" for
      centralization of tests around configuration handling.
      8fb8dce3
  2. Apr 25, 2013
    • Katsunori FUJIWARA's avatar
      i18n: show the non-ASCII password prompt text correctly · be207d9b
      Katsunori FUJIWARA authored
      Before this patch, the prompt text for asking password is directly
      passed to "getpass.getpass()" of Python standard library.
      
      In "getpass.getpass()" implementation on Windows environment, the
      prompt text is split into byte sequence and "msvcrt.putch()" is
      applied on each bytes in it. This splitting causes non-ASCII prompt
      text to be broken.
      
      This patch shows the prompt text for asking password on "ui.getpass()"
      side, and invokes "getpass.getpass()" with empty prompt text. This
      prevents non-ASCII prompt text from being broken in
      "getpass.getpass()" implementation.
      
      This patch also sets "ui.prompt" label to prompt text to follow
      "ui.prompt()" style.
      be207d9b
  3. Apr 23, 2013
    • Kevin Bullock's avatar
      tests: make sed usage in test-unionrepo.t cross-platform · 70675d77
      Kevin Bullock authored
      Usage of the 'i' command proves tricky. I tried to write a check-code rule, but
      failed.
      70675d77
    • Kevin Bullock's avatar
      check-code: fix sed 'i' command rule newline matching · 12f15e4b
      Kevin Bullock authored
      The regular expression was meant to match cases where an 'i' command was
      not followed by precisely a '\' and then a newline; it failed to match
      the newline, so cases with a '\' but no newline would erroneously pass.
      12f15e4b
    • Durham Goode's avatar
      blackbox: don't run permission tests on non-unix systems · 63dda3c3
      Durham Goode authored
      The windows and vfat test runs were failing due to read/write permissions not
      working the same on those systems.  On vfat, permissions can't be changed
      at all, and on windows it seems the chmod emulation doesn't remove read
      permissions.  We could theoretically get the 'cannot write to blacklog.log'
      test to pass on windows but there's no #if condition to let us exclude vfat
      only.
      
      Verified that test-blackbox passes on windows now.
      63dda3c3
  4. Apr 22, 2013
  5. Apr 21, 2013
  6. Apr 20, 2013
  7. Apr 19, 2013
  8. Apr 18, 2013
    • Bryan O'Sullivan's avatar
      blackbox: automatically rotate log files · 2cad301a
      Bryan O'Sullivan authored
      If enabled, log rotation prevents the amount of space used by the
      blackbox log from growing without bound. This becomes important in
      cases where there are a lot of busy repositories managed by humans
      and automation on many machines.
      
      In large deployments, we cannot reasonably track all the repos where
      blackbox logs need to be managed, so it is safer to have blackbox
      manage its own logs than to move responsibility to an external tool
      such as logrotate.
      
      This change adds two configuration keys:
      
      * blackbox.maxsize is the maximum allowable size of the current log
      
      * blackbox.maxfiles is the number of log files to maintain
      2cad301a
    • Bryan O'Sullivan's avatar
      ui: add a configbytes method, for space configuration · 2c4cd1c4
      Bryan O'Sullivan authored
      This accepts a floating point number, followed by optional whitespace,
      followed by an optional one- or two-letter unit specifier (for
      bytes, kilobytes, megabytes, or gigabytes).
      2c4cd1c4
    • Simon Heimberg's avatar
      mq: do not inherit settings form base repo in mqrepo (Fixes issue2358) · 743daa60
      Simon Heimberg authored
      This is done by using repo.baseui when creating the queue repo.
      743daa60
    • Simon Heimberg's avatar
      color: set the ui class in reposetup, before a repo is created · 7ae12ce8
      Simon Heimberg authored
      Previously only the class of repo.ui was set. The class was set in the wrapper
      of dispatch._runcommand. But this is called after the repo is created. Only
      the class of repo.ui is set because repo.baseui already exists and is not
      accessible.
      We now set the class in uisetup because this is called before repo creation.
      This is also the place suggested in the wiki for modifying classes.
      7ae12ce8
    • André Sintzoff's avatar
      parsers: remove warning: format ‘%ld’ expects argument of type ‘long int’ · 365b0de1
      André Sintzoff authored
      gcc 4.6.3 on 12.04 Ubuntu machine emits warnings:
      mercurial/parsers.c: In function ‘find_deepest’:
      mercurial/parsers.c:1288:9: warning: format ‘%ld’ expects argument of type
                          ‘long int’, but argument 3 has type ‘Py_ssize_t’ [-Wformat]
      mercurial/parsers.c:1288:9: warning: format ‘%ld’ expects argument of type
                          ‘long int’, but argument 4 has type ‘Py_ssize_t’ [-Wformat]
      365b0de1
    • Katsunori FUJIWARA's avatar
      annotate: discard refcount of discarded annotation for memory efficiency · 36067f5b
      Katsunori FUJIWARA authored
      Before this patch, refcount (managed in "needed") of the annotation
      result is kept as 1, even if corresponding annotation result is
      discarded from "hist", because it isn't decreased and discarded.
      
      In the history tree including merging revision, the most recent common
      ancestor of merged revisions is scanned twice. Refcount of such
      ancestor never becomes 0, because refcount is started from 1 at the
      second scanning.
      
      This prevents annotation results of merging revision in "hist" from
      being discarded, and decreases memory efficiency.
      
      This patch discards refcount of the annotation result, when the
      corresponding annotation is discarded from "hist".
      36067f5b
    • Alexander Plavin's avatar
      revlog: fix a regression with null revision · c010cb6f
      Alexander Plavin authored
      Introduced in the patch which fixes issue3497
      Part of that patch was erroneously submitted and it shouldn't be in the code
      c010cb6f
    • Siddharth Agarwal's avatar
      rebase: check no-op before checking phase (issue3891) · 53eadcb8
      Siddharth Agarwal authored
      This could lead to user confusion, because phases aren't really involved at
      all when attempting to perform a no-op rebase.
      53eadcb8
  9. Apr 11, 2013
  10. Apr 17, 2013
  11. Apr 16, 2013
  12. Apr 17, 2013
  13. Apr 18, 2013
  14. Feb 21, 2013
    • Kevin Bullock's avatar
      subrepo: fix test breakage introduced in 2b34d004e644 · 2e547698
      Kevin Bullock authored
      The test didn't break when I originally committed it (git version
      1.7.12.4 (Apple Git-37)), and still doesn't on that machine, but the
      output changes elsewhere with "Warning: you are leaving N commits
      behind..."
      
      This change sets a ref on the commit we're updating the subrepo _away_
      from to quash the warning.
      2e547698
Loading