Revert to using status for kw-commands
cmdutil.bail_if_changed has to call status stat'ing working dir.
This renders the whole walk experiment mute, duh.
On the upside kwexpand/kwshrink can be applied to selected clean files,
while there are local changes in other files.
bail_if_changed compatibility wrapper not needed anymore.
$Id$
keyword extension for Mercurial SCM
===================================
install
-------
Either copy hgkw/keyword.py into the hgext directory of your
Mercurial installation.
Then add the lines:
[extensions]
hgext.keyword =
to your hgrc file.
Or run "python setup.py install".
See also "pyton setup.py --help".
Then add the line:
[extensions]
keyword = /path/to/hgkw/keyword.py
to your hgrc, where /path/to/ is somewhere in your $PYTHONPATH.
first steps and online help
---------------------------
$ hg keyword help
$ hg kwdemo
testing
-------
Copy hgkw/keyword.py into the hgext directory of your Mercurial
source tree. Copy tests/test-keyword, tests/test-keyword.out into
the tests directory of your Mercurial source tree. Change to that
directory and run:
$ python run-tests.py test-keyword
and then keep your fingers crossed ...