D2099: infinitepush: delete the hack to load the extension after remotenames

2018-03-30 Thread pulkit (Pulkit Goyal)
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGecdd8c3044de: infinitepush: delete the hack to load the 
extension after remotenames (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2099?vs=5360=7414

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

AFFECTED FILES
  hgext/infinitepush/__init__.py

CHANGE DETAILS

diff --git a/hgext/infinitepush/__init__.py b/hgext/infinitepush/__init__.py
--- a/hgext/infinitepush/__init__.py
+++ b/hgext/infinitepush/__init__.py
@@ -286,14 +286,6 @@
 if _isserver(ui) and repo.local():
 repo.bundlestore = bundlestore(repo)
 
-def uisetup(ui):
-# remotenames circumvents the default push implementation entirely, so make
-# sure we load after it so that we wrap it.
-order = extensions._order
-order.remove('infinitepush')
-order.append('infinitepush')
-extensions._order = order
-
 def extsetup(ui):
 commonsetup(ui)
 if _isserver(ui):



To: pulkit, #hg-reviewers, indygreg
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D2099: infinitepush: delete the hack to load the extension after remotenames

2018-02-09 Thread pulkit (Pulkit Goyal)
pulkit created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  The remotenames extension which circumvents the default push implementation
  lives outside the core, so let's delete logic related to loading of extension 
on
  the basis of remotenames ext.

REPOSITORY
  rHG Mercurial

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

AFFECTED FILES
  hgext/infinitepush/__init__.py

CHANGE DETAILS

diff --git a/hgext/infinitepush/__init__.py b/hgext/infinitepush/__init__.py
--- a/hgext/infinitepush/__init__.py
+++ b/hgext/infinitepush/__init__.py
@@ -286,14 +286,6 @@
 if _isserver(ui) and repo.local():
 repo.bundlestore = bundlestore(repo)
 
-def uisetup(ui):
-# remotenames circumvents the default push implementation entirely, so make
-# sure we load after it so that we wrap it.
-order = extensions._order
-order.remove('infinitepush')
-order.append('infinitepush')
-extensions._order = order
-
 def extsetup(ui):
 commonsetup(ui)
 if _isserver(ui):



To: pulkit, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel