summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-03-16 16:14:50 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-03-16 16:14:50 -0400
commit6255865c6c0a2fee75ff120cd30211674044c1fb (patch)
tree85b7787db66cbe4ae94f306681595ae1dc5a3d99
parentb7a49283fb94a9fc1d5b4d66f0f992e329ef1ee7 (diff)
update
-rw-r--r--doc/bugs/free_space_checking.mdwn10
-rw-r--r--doc/todo/object_dir_reorg_v2.mdwn4
2 files changed, 14 insertions, 0 deletions
diff --git a/doc/bugs/free_space_checking.mdwn b/doc/bugs/free_space_checking.mdwn
index 34528a7b3..eaa3294d6 100644
--- a/doc/bugs/free_space_checking.mdwn
+++ b/doc/bugs/free_space_checking.mdwn
@@ -6,3 +6,13 @@ file around.
* And, need a way to tell the size of a file before copying it from
a remote, to check local disk space.
+
+ As of annex.version 2, this metadata can be available for any type
+ of backend. Newly added files will always have file size metadata,
+ while files that used a SHA backend and were added before the upgrade
+ won't.
+
+ So, need a migration process from eg SHA1 to SHA1+filesize. It will
+ find files that lack size info, and rename their keys to add the size
+ info. Users with old repos can run this on them, to get the missing
+ info recorded.
diff --git a/doc/todo/object_dir_reorg_v2.mdwn b/doc/todo/object_dir_reorg_v2.mdwn
index 1c2d2f21b..49666ddc7 100644
--- a/doc/todo/object_dir_reorg_v2.mdwn
+++ b/doc/todo/object_dir_reorg_v2.mdwn
@@ -19,3 +19,7 @@ all users, so this should be the *last* reorg in the forseeable future.
(Probably everything after ",k" should be part of the key, even if it
contains the "," separator character. Otherwise an escaping mechanism
would be needed.)
+
+[[done]] now!
+
+Although [[bugs/free_space_checking]] is not quite there --[[Joey]]