comparison hgext/keyword.py @ 6157:09b00faa8670

keyword: remove "identify" and "remove" from nokwcommands These two commands care about the list of modified files returned by repo.status and we may need to do a full content comparison to populate that list.
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Thu, 21 Feb 2008 16:22:31 -0300
parents c74f1d9092f8
children f89fd07fc51d
comparison
equal deleted inserted replaced
6156:ba0790061ba7 6157:09b00faa8670
86 import re, shutil, tempfile, time 86 import re, shutil, tempfile, time
87 87
88 commands.optionalrepo += ' kwdemo' 88 commands.optionalrepo += ' kwdemo'
89 89
90 # hg commands that do not act on keywords 90 # hg commands that do not act on keywords
91 nokwcommands = ('add addremove bundle copy export grep identify incoming init' 91 nokwcommands = ('add addremove bundle copy export grep incoming init'
92 ' log outgoing push remove rename rollback tip' 92 ' log outgoing push rename rollback tip'
93 ' convert email glog') 93 ' convert email glog')
94 94
95 # hg commands that trigger expansion only when writing to working dir, 95 # hg commands that trigger expansion only when writing to working dir,
96 # not when reading filelog, and unexpand when reading from working dir 96 # not when reading filelog, and unexpand when reading from working dir
97 restricted = 'record qfold qimport qnew qpush qrefresh qrecord' 97 restricted = 'record qfold qimport qnew qpush qrefresh qrecord'