diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-01-13 16:24:40 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-01-14 02:00:07 +0100 |
commit | 786609bd36c07b85dbf905fc8c36eba7132122d7 (patch) | |
tree | 03d3a49c01b89e7122bdde4ad088fc225a819e7b /filters/email-gravatar.py | |
parent | e942a1622bddf3338096393c3906c1adc871d198 (diff) | |
download | cgit-pink-786609bd36c07b85dbf905fc8c36eba7132122d7.tar.gz cgit-pink-786609bd36c07b85dbf905fc8c36eba7132122d7.zip |
filter: add page source to email filter
Since the email filter is called from lots of places, the script might benefit from knowing the origin. That way it can modify its contents and/or size depending. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'filters/email-gravatar.py')
-rwxr-xr-x | filters/email-gravatar.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/filters/email-gravatar.py b/filters/email-gravatar.py index 4445615..f90b87d 100755 --- a/filters/email-gravatar.py +++ b/filters/email-gravatar.py @@ -27,6 +27,8 @@ if email[0] == '<': if email[-1] == '>': email = email[0:-1] +page = sys.argv[2] + md5 = hashlib.md5(email.encode()).hexdigest() text = sys.stdin.read().strip() |