Mercurial > hg
changeset 348:442eb02cf870
Improved hgeditor:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Improved hgeditor:
hgeditor now uses $EDITOR and sets options according to emacs/vim/...
Cleanup of temporary files.
Use simple 'hg diff' instead of calling it for every file.
Call gpg only if commit message was changed.
manifest hash: 5c56bf580f9c2ef2a7d8b680bfb73fdd3b232044
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCrowgW7P1GVgWeRoRApiOAJ0UI9/OY3yr4bv0no+KCcponSq+ZwCdFDUU
No8t9ni6/72zmlcpB13E63A=
=oSyb
-----END PGP SIGNATURE-----
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Tue, 14 Jun 2005 08:49:52 +0100 |
parents | a0b2758edee7 |
children | b2293093b89e |
files | hgeditor |
diffstat | 1 files changed, 34 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/hgeditor Tue Jun 14 08:01:18 2005 +0100 +++ b/hgeditor Tue Jun 14 08:49:52 2005 +0100 @@ -3,19 +3,40 @@ # This is an example of using HGEDITOR to automate the signing of # commits and so on. -MANIFEST=`grep '^HG: manifest hash' $1 | cut -b 19-` -if grep -q "^HG: merge resolve" $1 ; then +T1=""; T2="" +cleanup_exit() { + rm -f "$T1" "$T2" + exit $1 +} + +case "${EDITOR:=vi}" in + emacs) + EDITOR="$EDITOR -nw" + ;; + gvim|vim) + EDITOR="$EDITOR -f -o" + ;; +esac + +if grep -q "^HG: merge resolve" "$1" ; then # we don't sign merges - $EDITOR $1 + exec $EDITOR "$1" else - T=`mktemp` - CHANGED=`grep '^HG: changed' $1 | cut -b 13-` - # show a diff so writing commit comments is easier - hg diff $CHANGED >> $T - echo -e "\n\nmanifest hash: $MANIFEST" > $1 - emacs -nw $T $1 - head -1 $1 > $T - echo >> $T - gpg -a -u $HGUSER -o - --clearsign $1 >> $T - mv $T $1 + T1=`mktemp`; T2=`mktemp` + MANIFEST=`grep '^HG: manifest hash' "$1" | cut -b 19-` + + echo -e "\n\nmanifest hash: $MANIFEST" >> "$T1" + grep -vE '^(HG: manifest hash .*)?$' "$1" >> "$T1" + hg diff >> "$T2" + + CHECKSUM=`md5sum "$T1"` + $EDITOR "$T1" "$T2" || cleanup_exit $? + echo "$CHECKSUM" | md5sum -c 2>/dev/null && cleanup_exit 0 + { + head -1 "$T1" + echo + grep -v "^HG:" "$T1" | gpg -a -u "${HGUSER:-$EMAIL}" --clearsign + } > "$T2" && mv "$T2" "$1" + cleanup_exit $? fi +