[PATCH 1 of 4 V3] exchange: add `_get_bookmarks()` function

Stanislau Hlebik stash at fb.com
Thu Aug 25 17:59:48 UTC 2016


# HG changeset patch
# User Stanislau Hlebik <stash at fb.com>
# Date 1472147318 25200
#      Thu Aug 25 10:48:38 2016 -0700
# Node ID daecb4cb68a6abaf8059afee18d95481043ff2f6
# Parent  37b6f0ec6241a62de90737409458cd622e2fac0d
exchange: add `_get_bookmarks()` function

This function will be used to generate bookmarks bundle2 part.
It is a separate function in order to make it easy to overwrite it
in extensions. Passing `kwargs` to the function makes it easy to
add new parameters in extensions.

diff --git a/mercurial/exchange.py b/mercurial/exchange.py
--- a/mercurial/exchange.py
+++ b/mercurial/exchange.py
@@ -1650,6 +1650,9 @@
     if chunks:
         bundler.newpart('hgtagsfnodes', data=''.join(chunks))
 
+def _get_bookmarks(repo, kwargs):
+    return repo.listkeys(namespace='bookmarks')
+
 def check_heads(repo, their_heads, context):
     """check if the heads of a repo have been modified
 


More information about the Mercurial-devel mailing list