From: Matthew Vernon Date: Wed, 28 Nov 2018 20:36:22 +0000 (+0000) Subject: Add blame-filtering X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~matthewv/git?p=irc.git;a=commitdiff_plain;h=0e286a0f217b0a77453eed8b4c8c6278d027b033;ds=sidebyside Add blame-filtering This simply works on the md5 of the offending commit message, and replaces it with new text. blame_filter.py is a simple dictionary of md5: replacement pairs; it is not committed itself (and is ignored by git) --- diff --git a/.gitignore b/.gitignore index 6791423..44a9ccd 100755 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.pyc *~ trouts-local +blame_filter.py diff --git a/commands.py b/commands.py index 2864bb9..3974bfb 100755 --- a/commands.py +++ b/commands.py @@ -1,8 +1,13 @@ # Part of Acrobat. -import string, cPickle, random, urllib, sys, time, re, os, twitter, subprocess, datetime, urlparse +import string, cPickle, random, urllib, sys, time, re, os, twitter, subprocess, datetime, urlparse, hashlib from collections import defaultdict from irclib import irc_lower, nm_to_n +try: + from blame_filter import bfd +except ImportError: + bfd = None + # query karma def karmaq(bot, cmd, nick, conn, public, karma): try: @@ -279,8 +284,12 @@ def __getcommitinfo(commit): return(err) ts,mes=out.split('|') + mes=mes.strip() + md5mes=hashlib.md5(mes).hexdigest() + if bfd and md5mes in bfd: + mes=bfd[md5mes] when=datetime.date.fromtimestamp(float(ts)) - return mes.strip(), when + return mes, when ###Return an array of commit messages and timestamps for lines in db that match what def __getcommits(db,keys,what):