D7041: phabricator: add the DiffChangeType and DiffFileType constants

Kwan (Ian Moody) phabricator at mercurial-scm.org
Fri Oct 11 21:56:28 EDT 2019


Closed by commit rHGa66e2844b0c6: phabricator: add the DiffChangeType and DiffFileType constants (authored by Kwan).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7041?vs=17072&id=17089

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7041/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7041

AFFECTED FILES
  hgext/phabricator.py

CHANGE DETAILS

diff --git a/hgext/phabricator.py b/hgext/phabricator.py
--- a/hgext/phabricator.py
+++ b/hgext/phabricator.py
@@ -448,6 +448,23 @@
     return output.getvalue()
 
 
+class DiffChangeType(object):
+    ADD = 1
+    CHANGE = 2
+    DELETE = 3
+    MOVE_AWAY = 4
+    COPY_AWAY = 5
+    MOVE_HERE = 6
+    COPY_HERE = 7
+    MULTICOPY = 8
+
+
+class DiffFileType(object):
+    TEXT = 1
+    IMAGE = 2
+    BINARY = 3
+
+
 def creatediff(ctx):
     """create a Differential Diff"""
     repo = ctx.repo()



To: Kwan, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list