Skip to content
Snippets Groups Projects
  1. Apr 16, 2010
    • Dévai Tamás's avatar
      Respect the DESTDIR variable during 'make install' · ce6d56b9
      Dévai Tamás authored
      The DESTDIR variable used to tell 'make install' an alternate system root
      to install the software to. Since setup.py supports the same via its --root
      parameter, it's easy to make life easier for many packagers.
      ce6d56b9
  2. Apr 12, 2010
    • Steve Losh's avatar
      commands: add more robust support for 'hg log -b' (issue2078) · ca739acf
      Steve Losh authored
      Fixes issue2078 and adds tests to cover various 'hg log -b' uses.
      
      This change adds a localrepo.lookupbranch(key, remote=None) function. This
      will look up the branch of the revision with the given key. The algorithm
      works like this:
      
          * If a remote repo is given and KEY is the name of a branch in that repo,
            return KEY.
          * If no remote repo is given and KEY is the name of a branch in the local
            repo object, return KEY.
          * Otherwise look up the revision with the identifier KEY in the local repo
            and return its branch.
      
      This change also makes 'hg log -b' use this new functionality and adds a few
      tests for it.
      ca739acf
  3. Apr 19, 2010
  4. Apr 18, 2010
  5. Apr 17, 2010
  6. Apr 07, 2010
  7. Apr 19, 2010
  8. Apr 18, 2010
  9. Apr 16, 2010
  10. Apr 14, 2010
  11. Apr 15, 2010
  12. Apr 16, 2010
  13. Apr 15, 2010
  14. Apr 14, 2010
    • Greg Ward's avatar
      revlog: fix lazyparser.__iter__() to return all revisions (issue2137) · b7ca37b9
      Greg Ward authored
      Previously, it only returned revisions that were in the revlog when it
      was originally opened; revisions added since then were invisible.
      This broke revlog._partialmatch() and therefore repo.lookup().
      
      (Credit to Benoit Boissinot for simplifying my original test script
      and for the actual fix.)
      b7ca37b9
  15. Apr 13, 2010
    • Greg Ward's avatar
      revlog: factor out _maxinline global. · f2ecc573
      Greg Ward authored
      This lets us change the threshold at which a *.d file will be split
      out, which should make it much easier to construct test cases that
      probe revlogs with a separate data file.
      (issue2137)
      f2ecc573
Loading