]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Clearer names (and fix a formatting issue).
authorDaira Hopwood <daira@jacaranda.org>
Wed, 4 Nov 2015 15:29:01 +0000 (15:29 +0000)
committerDaira Hopwood <daira@jacaranda.org>
Wed, 4 Nov 2015 15:29:01 +0000 (15:29 +0000)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
docs/proposed/magic-folder/remote-to-local-sync.rst

index b41de7bfedaa7b70c785110e510eeda473ca4b53..1bb848b535c3786bef42f8ea00c783d029d7926c 100644 (file)
@@ -775,7 +775,7 @@ Now we are ready to describe the algorithm for determining whether a
 download for the file ``foo`` is an overwrite or a conflict (refining
 step 2 of the procedure from the `Earth Dragons`_ section).
 
-Let ``last_downloaded_uri`` be the field of that name obtained from
+Let ``dmd_last_downloaded_uri`` be the field of that name obtained from
 the directory entry metadata for ``foo`` in Bob's DMD (this field
 may be absent). Then the algorithm is:
 
@@ -791,15 +791,15 @@ may be absent). Then the algorithm is:
     table when the file was last uploaded);
   * the ``last_uploaded_uri`` field of the ``local_files`` table
     for this file, which is the URI under which the file was last
-    uploaded.
+    uploaded. Call this ``db_entry.last_uploaded_uri``.
 
 * 2c. If any of the following are true, then classify as a conflict:
 
-  * i. there are pending notifications of changes to ``foo``;
-  * ii. the last-uploaded statinfo is either absent (i.e. there is
+  * i\. there are pending notifications of changes to ``foo``;
+  * ii\. the last-uploaded statinfo is either absent (i.e. there is
     no entry in the database for this path), or different from the
     current statinfo;
-  * iii. either ``last_downloaded_uri`` or ``last_uploaded_uri``
+  * iii\. either ``dmd_last_downloaded_uri`` or ``db_entry.last_uploaded_uri``
     (or both) are absent, or they are different.
 
   Otherwise, classify as an overwrite.