D1287: repoview: add two new filternames to be used for accessing hidden commits

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Wed Nov 22 20:24:21 EST 2017


pulkit updated this revision to Diff 3787.
pulkit edited the summary of this revision.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D1287?vs=3207&id=3787

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

AFFECTED FILES
  mercurial/branchmap.py
  mercurial/repoview.py

CHANGE DETAILS

diff --git a/mercurial/repoview.py b/mercurial/repoview.py
--- a/mercurial/repoview.py
+++ b/mercurial/repoview.py
@@ -77,6 +77,16 @@
         _revealancestors(pfunc, hidden, visible)
     return frozenset(hidden)
 
+def computewarnhidden(repo):
+    """"""
+    assert not repo.changelog.filteredrevs
+    return _computeperfiltername(repo, 'visible-warnhidden')
+
+def computeallowhidden(repo):
+    """"""
+    assert not repo.changelog.filteredrevs
+    return _computeperfiltername(repo, 'visible-allowhidden')
+
 def computehidden(repo):
     """compute the set of hidden revision to filter
 
@@ -143,6 +153,8 @@
 # Otherwise your filter will have to recompute all its branches cache
 # from scratch (very slow).
 filtertable = {'visible': computehidden,
+               'visible-warnhidden': computewarnhidden,
+               'visible-allowhidden': computeallowhidden,
                'served': computeunserved,
                'immutable':  computemutable,
                'base':  computeimpactable}
diff --git a/mercurial/branchmap.py b/mercurial/branchmap.py
--- a/mercurial/branchmap.py
+++ b/mercurial/branchmap.py
@@ -86,7 +86,9 @@
 subsettable = {None: 'visible',
                'visible': 'served',
                'served': 'immutable',
-               'immutable': 'base'}
+               'immutable': 'base',
+               'visible-warnhidden': 'visible',
+               'visible-allowhidden': 'visible'}
 
 def updatecache(repo):
     cl = repo.changelog



To: pulkit, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list