Mercurial > hg
view tests/helpers.sh @ 12290:e1ec3b7e879d
l10n: translations: env. variables / templating system (DE)
New status: 1517 messages complete with 134 fuzzies and 630 untranslated.
Transmitted-via: Transifex (www.transifex.net).
author | Christoph <christoph@webvariants.de> |
---|---|
date | Mon, 13 Sep 2010 00:03:26 +0000 |
parents | 12e5149cafca |
children |
line wrap: on
line source
#/bin/sh hideport() { sed "s/localhost:$HGPORT/localhost:\$HGPORT/"; } repr() { python -c "import sys; print repr(sys.stdin.read()).replace('\\n', '\n')"; } hidehex() { python -c 'import sys, re; print re.replace("\b[0-9A-Fa-f]{12,40}", "X" * 12)'; } hidetmp() { sed "s/$HGTMP/\$HGTMP/"; } hidebackup() { sed 's/\(saved backup bundle to \).*/\1/'; } cleanrebase() { sed -e 's/\(Rebase status stored to\).*/\1/' \ -e 's/\(Rebase status restored from\).*/\1/' \ -e 's/\(saved backup bundle to \).*/\1/'; }