[PATCH 1 of 7] resolve: rename {status} to {mergestatus} to not shadow change status (BC)

Yuya Nishihara yuya at tcha.org
Sun Sep 30 13:43:45 UTC 2018


# HG changeset patch
# User Yuya Nishihara <yuya at tcha.org>
# Date 1538288127 -32400
#      Sun Sep 30 15:15:27 2018 +0900
# Node ID 66d94b8a5526475ae523e1cca3bfd8c1cf3ec9ca
# Parent  fe5a0ca516ea91ad6452a4927d34edcd777fa4c5
resolve: rename {status} to {mergestatus} to not shadow change status (BC)

This is a part of the name unification. I think it's somewhat useful to
provide a combined view of change/merge statuses.

https://www.mercurial-scm.org/wiki/GenericTemplatingPlan#Dictionary

diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -4622,7 +4622,7 @@ def resolve(ui, repo, *pats, **opts):
             label, key = mergestateinfo[ms[f]]
             fm.startitem()
             fm.context(ctx=wctx)
-            fm.condwrite(not nostatus, 'status', '%s ', key, label=label)
+            fm.condwrite(not nostatus, 'mergestatus', '%s ', key, label=label)
             fm.write('path', '%s\n', f, label=label)
         fm.end()
         return 0
diff --git a/tests/test-resolve.t b/tests/test-resolve.t
--- a/tests/test-resolve.t
+++ b/tests/test-resolve.t
@@ -156,18 +156,18 @@ resolve -l should show resolved file as 
   $ hg resolve -l -Tjson
   [
    {
-    "path": "file1",
-    "status": "R"
+    "mergestatus": "R",
+    "path": "file1"
    },
    {
-    "path": "file2",
-    "status": "U"
+    "mergestatus": "U",
+    "path": "file2"
    }
   ]
 
-  $ hg resolve -l -T '{path} {status} {p1rev} {p2rev}\n'
-  file1 R 2 1
-  file2 U 2 1
+  $ hg resolve -l -T '{path} {mergestatus} {status} {p1rev} {p2rev}\n'
+  file1 R M 2 1
+  file2 U M 2 1
 
 resolve -m without paths should mark all resolved
 


More information about the Mercurial-devel mailing list