hgext/acl.py
changeset 29841 d5883fd055c6
parent 28883 032c4c2f802a
child 33185 8b109c61bc11
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
   202     util,
   202     util,
   203 )
   203 )
   204 
   204 
   205 urlreq = util.urlreq
   205 urlreq = util.urlreq
   206 
   206 
   207 # Note for extension authors: ONLY specify testedwith = 'internal' for
   207 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
   208 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
   208 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
   209 # be specifying the version(s) of Mercurial they are tested with, or
   209 # be specifying the version(s) of Mercurial they are tested with, or
   210 # leave the attribute unspecified.
   210 # leave the attribute unspecified.
   211 testedwith = 'internal'
   211 testedwith = 'ships-with-hg-core'
   212 
   212 
   213 def _getusers(ui, group):
   213 def _getusers(ui, group):
   214 
   214 
   215     # First, try to use group definition from section [acl.groups]
   215     # First, try to use group definition from section [acl.groups]
   216     hgrcusers = ui.configlist('acl.groups', group)
   216     hgrcusers = ui.configlist('acl.groups', group)