hgext/keyword.py
changeset 25186 80c5b2666a96
parent 24987 fd7287f0b43c
child 26421 4b0fc75f9403
equal deleted inserted replaced
25185:bf6b476f3b36 25186:80c5b2666a96
    89 from mercurial.i18n import _
    89 from mercurial.i18n import _
    90 import os, re, tempfile
    90 import os, re, tempfile
    91 
    91 
    92 cmdtable = {}
    92 cmdtable = {}
    93 command = cmdutil.command(cmdtable)
    93 command = cmdutil.command(cmdtable)
       
    94 # Note for extension authors: ONLY specify testedwith = 'internal' for
       
    95 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
       
    96 # be specifying the version(s) of Mercurial they are tested with, or
       
    97 # leave the attribute unspecified.
    94 testedwith = 'internal'
    98 testedwith = 'internal'
    95 
    99 
    96 # hg commands that do not act on keywords
   100 # hg commands that do not act on keywords
    97 nokwcommands = ('add addremove annotate bundle export grep incoming init log'
   101 nokwcommands = ('add addremove annotate bundle export grep incoming init log'
    98                 ' outgoing push tip verify convert email glog')
   102                 ' outgoing push tip verify convert email glog')