comparison hgext/fsmonitor/__init__.py @ 29841:d5883fd055c6

extensions: change magic "shipped with hg" string I've caught multiple extensions in the wild lying about being 'internal', so it's time to move the goalposts on people. Goalpost moving will continue until third party extensions stop trying to defeat the system.
author Augie Fackler <augie@google.com>
date Tue, 23 Aug 2016 11:26:08 -0400
parents 0d83ad967bf8
children 318a24b52eeb
comparison
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
111 from . import ( 111 from . import (
112 state, 112 state,
113 watchmanclient, 113 watchmanclient,
114 ) 114 )
115 115
116 # Note for extension authors: ONLY specify testedwith = 'internal' for 116 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
117 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should 117 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
118 # be specifying the version(s) of Mercurial they are tested with, or 118 # be specifying the version(s) of Mercurial they are tested with, or
119 # leave the attribute unspecified. 119 # leave the attribute unspecified.
120 testedwith = 'internal' 120 testedwith = 'ships-with-hg-core'
121 121
122 # This extension is incompatible with the following blacklisted extensions 122 # This extension is incompatible with the following blacklisted extensions
123 # and will disable itself when encountering one of these: 123 # and will disable itself when encountering one of these:
124 _blacklist = ['largefiles', 'eol'] 124 _blacklist = ['largefiles', 'eol']
125 125