Skip to content
Snippets Groups Projects
  1. Nov 04, 2011
  2. Nov 03, 2011
  3. Nov 01, 2011
  4. Oct 31, 2011
  5. Oct 20, 2011
    • Hao Lian's avatar
      largefiles: replace tempfile.NamedTemporaryFile with tempfile.mkstemp · a5a6a9b7
      Hao Lian authored
      This is consistent with the rest of Mercurial's code, mirroring the
      try-finally-unlink structure elsewhere. Furthermore, it fixes the case where
      largefiles throws an IOError on Windows when the temporary file is opened a
      second time by copytocacheabsolute.
      
      This patch creates the temporary file in the repo's largefiles store rather than
      /tmp, which might be a different filesystem.
      a5a6a9b7
  6. Oct 31, 2011
  7. Oct 30, 2011
  8. Oct 29, 2011
  9. Oct 28, 2011
  10. Oct 29, 2011
  11. Oct 28, 2011
  12. Oct 27, 2011
  13. Oct 26, 2011
    • Peer Stritzinger's avatar
      revert: fix missing removes when parent was changed in dirstate · 9a2582e3
      Peer Stritzinger authored
      When dirstate parent is changed with dirstate.setparent before a
      revert so it no longer points to where the dirstate refered to, revert
      does not remove all files it should:
      
      Revert to a different revision needs also to remove files that are not
      found through disptables and not in the context or parent manifest.
      9a2582e3
  14. Oct 27, 2011
    • Matt Mackall's avatar
      check-code: fix issues with finding patterns in unified tests, fix tests · 695ac6ac
      Matt Mackall authored
      - old-style patterns without ^ were getting improperly anchored
      - finditer was matching against beginning of line poorly
      - \s was matching newlines
      - [^x] was matching newlines
      
      so we:
      
      - remove earlier hacks for multiline matching
      - fix unified test anchoring by adding .*
      - replace \s with [ \t]
      - replace [^x] with [^\nx]
      - force all matches into multiline mode so ^ anchors work
      
      This uncovers a number of test issues that are then repaired.
      695ac6ac
  15. Oct 25, 2011
  16. Oct 26, 2011
Loading