sapling/hgext/largefiles
Matt Harbison 8e588880da largefiles: fix path handling for cp/mv (issue3516)
Previously, a copy or a move of a largefile only worked if the cwd was the root
of the repository.  The first issue was that the destination path passed to
os.mkdirs() chopped the absolute path to the standin after '.hglf/', which
essentially created a path relative to the repository root.  Similarly, the
second issue was that the source and dest paths for copyfile() were relative to
the repo root.  This converts these three paths to absolute paths.

Some notable issues, regardless of the directory in which the cp/mv is executed:

1) The copy is not being recorded in lfdirstate, but it is in dirstate for the
standins.  I'm not sure if this is by design (i.e. minimal info in lfdirstate).

2) status -C doesn't behave as expected.  Using the testcase as an example:

  # after mv + ci
  $ hg status -C -v --rev '.^'     # expected to see 'A' and ' ' lines too
  R dira\dirb\largefile

  $ hg status -C -v --rev '.^' foo/largefile
  # no output                      # expected to see 'A' and ' ' lines only

  $ hg status -C -v --rev '.^' foo/
  # no output                      # expected to see 'A', ' ' and 'R' lines

  $ hg status -C -v --rev '.^' ./  # expected to see 'A' and ' ' lines too
  R dirb\largefile

  $ hg status -C -v --rev '.^' ../.hglf/dira/foo/largefile
  A ..\.hglf\dira\foo\largefile
    ..\.hglf\dira\dirb\largefile  # no 'R' expected when new file is specified

  $ hg status -C -v --rev '.^' ../.hglf   # OK
  A ..\.hglf\dira\foo\largefile
    ..\.hglf\dira\dirb\largefile
  R ..\.hglf\dira\dirb\largefile
2012-07-22 23:37:53 -04:00
..
__init__.py largefiles: mark as a first party extension 2012-07-20 22:10:52 -04:00
basestore.py largefiles: batch statlfile requests when pushing a largefiles repo (issue3386) 2012-06-24 20:36:22 +02:00
CONTRIBUTORS hgext: add largefiles extension 2011-09-24 17:35:45 +02:00
lfcommands.py largefiles: optimize status by synchronizing lfdirstate with the largefile on update 2012-07-13 14:49:16 +02:00
lfutil.py largefiles: lowercase messages 2012-06-12 14:18:18 +02:00
localstore.py peer: introduce peer methods to prepare for peer classes 2012-07-13 21:46:53 +02:00
overrides.py largefiles: fix path handling for cp/mv (issue3516) 2012-07-22 23:37:53 -04:00
proto.py peer: introduce real peer classes 2012-07-13 21:47:06 +02:00
remotestore.py largefiles: batch statlfile requests when pushing a largefiles repo (issue3386) 2012-06-24 20:36:22 +02:00
reposetup.py largefiles: defer lfdirstate.drop() until after commit (issue3364) 2012-07-19 10:00:15 -04:00
uisetup.py peer: introduce real peer classes 2012-07-13 21:47:06 +02:00
wirestore.py largefiles: batch statlfile requests when pushing a largefiles repo (issue3386) 2012-06-24 20:36:22 +02:00