135
135
from lp.registry.interfaces.sourcepackage import ISourcePackageFactory
136
136
from lp.registry.model.sourcepackage import SourcePackage
137
137
from lp.services.browser_helpers import get_plural_text
138
from lp.services.features import getFeatureFlag
138
139
from lp.services.propertycache import cachedproperty
850
851
usedfor = IPerson
851
852
facet = 'branches'
852
853
links = ['registered', 'owned', 'subscribed', 'addbranch',
853
'active_reviews', 'mergequeues']
854
'active_reviews', 'mergequeues',
855
'simplified_subscribed', 'simplified_registered',
856
'simplified_owned', 'simplified_active_reviews']
854
857
extra_attributes = [
855
858
'active_review_count',
856
859
'owned_branch_count',
882
886
return self.context
889
def has_branches(self):
890
"""Should the template show the summary view with the links."""
885
893
def show_summary(self):
886
894
"""Should the template show the summary view with the links."""
887
return (self.owned_branch_count or
896
if self.simplified_branches_menu:
898
self.registered_branches_not_empty or
899
self.owned_branches_not_empty or
900
self.subscribed_branches_not_empty or
901
self.active_reviews_not_empty
905
self.owned_branch_count or
888
906
self.registered_branch_count or
889
907
self.subscribed_branch_count or
890
self.active_review_count)
908
self.active_review_count
912
def simplified_branches_menu(self):
913
return getFeatureFlag('code.simplified_branches_menu.enabled')
916
def registered_branches_not_empty(self):
917
"""False if the number of branches registered by self.person
921
not self._getCountCollection().registeredBy(
922
self.person).is_empty())
925
def owned_branches_not_empty(self):
926
"""False if the number of branches owned by self.person is zero."""
927
return not self._getCountCollection().ownedBy(self.person).is_empty()
930
def subscribed_branches_not_empty(self):
931
"""False if the number of branches subscribed to by self.person
935
not self._getCountCollection().subscribedBy(
936
self.person).is_empty())
939
def active_reviews_not_empty(self):
940
"""Return the number of active reviews for self.person's branches."""
941
active_reviews = PersonActiveReviewsView(self.context, self.request)
942
return not active_reviews.getProposals().is_empty()
944
def simplified_owned(self):
946
canonical_url(self.context, rootsite='code'),
948
enabled=self.owned_branches_not_empty)
950
def simplified_registered(self):
951
person_is_individual = (not self.person.is_team)
953
'+registeredbranches',
954
'Registered branches',
956
person_is_individual and
957
self.registered_branches_not_empty))
959
def simplified_subscribed(self):
961
'+subscribedbranches',
962
'Subscribed branches',
963
enabled=self.subscribed_branches_not_empty)
965
def simplified_active_reviews(self):
969
enabled=self.active_reviews_not_empty)
893
972
def registered_branch_count(self):