From: yomguy Date: Tue, 7 Feb 2012 00:45:41 +0000 (+0100) Subject: more tools X-Git-Tag: 1.3.10~20 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=7e27093e539e954db1c32cf93a2fe512fe0a30ec;p=telemeta.git more tools --- diff --git a/tools/dev/fix_svn_authors.sh b/tools/dev/fix_svn_authors.sh new file mode 100755 index 00000000..2f47a975 --- /dev/null +++ b/tools/dev/fix_svn_authors.sh @@ -0,0 +1,12 @@ + +git filter-branch -f --commit-filter ' + if [ "$GIT_COMMITTER_EMAIL" = "<>" ]; + then + GIT_COMMITTER_NAME=""; + GIT_AUTHOR_NAME=""; + GIT_COMMITTER_EMAIL=""; + GIT_AUTHOR_EMAIL=""; + git commit-tree "$@"; + else + git commit-tree "$@"; + fi' HEAD diff --git a/tools/dev/make_doc.sh b/tools/dev/make_doc.sh new file mode 100755 index 00000000..1fbd24ec --- /dev/null +++ b/tools/dev/make_doc.sh @@ -0,0 +1,5 @@ +#!/bin/sh +# needs epydoc + +epydoc -n telemeta -u http://telemeta.org -o doc/html/ telemeta/ +