hgkw/hgkwencode.py
author Christian Ebert <blacktrash@gmx.net>
Thu, 14 Dec 2006 08:57:40 +0100
branchupdatehook
changeset 5 85d1f5bf7cfc
parent 3 b9f2c0853da3
child 14 b60345141aa5
child 18 0a57d4566be9
permissions -rw-r--r--
updatehook branch: add kwexpander and updatekw modules WARNING: Do not use this branch for production! Update hook changes to working directory are detected by hg. The only /hook/ to escape hg's attention seems to be pretxcommit. And that probably only due to bug. Kept branch for archiving purposes.

# $Hg: hgkwencode.py,v$

import re, sys

def kwencode():
    '''Truncates keywords in IO stream.'''

    re_kwtrunc = re.compile(r'([$]Hg: .+?,v) [a-z0-9]{12} [^$]+? \$')
    sys.stdout.write(re_kwtrunc.sub(r'\1$', sys.stdin.read()))