List for cgit developers and users
 help / color / mirror / Atom feed
From: list at eworm.de (Christian Hesse)
Subject: [PATCH 1/1] remove libravatar email filter
Date: Thu,  5 Jul 2018 10:17:36 +0200	[thread overview]
Message-ID: <20180705081736.24505-1-list@eworm.de> (raw)

From: Christian Hesse <mail at eworm.de>

Looks like libravatar.org is going to shut down... So remove the filter.

https://blog.libravatar.org/posts/Libravatar.org_is_shutting_down_on_2018-09-01/
Signed-off-by: Christian Hesse <mail at eworm.de>
---
 filters/email-libravatar.lua | 27 ---------------------------
 1 file changed, 27 deletions(-)
 delete mode 100644 filters/email-libravatar.lua

diff --git a/filters/email-libravatar.lua b/filters/email-libravatar.lua
deleted file mode 100644
index b0e2447..0000000
--- a/filters/email-libravatar.lua
+++ /dev/null
@@ -1,27 +0,0 @@
--- This script may be used with the email-filter or repo.email-filter settings in cgitrc.
--- It adds libravatar icons to author names. It is designed to be used with the lua:
--- prefix in filters.
---
--- Requirements:
--- 	luacrypto >= 0.3
--- 	<http://mkottman.github.io/luacrypto/>
---
-
-local crypto = require("crypto")
-
-function filter_open(email, page)
-	buffer = ""
-	md5 = crypto.digest("md5", email:sub(2, -2):lower())
-end
-
-function filter_close()
-	baseurl = os.getenv("HTTPS") and "https://seccdn.libravatar.org/" or "http://cdn.libravatar.org/"
-	html("<img src='" .. baseurl .. "avatar/" .. md5 .. "?s=13&amp;d=retro' width='13' height='13' alt='Libravatar' /> " .. buffer)
-	return 0
-end
-
-function filter_write(str)
-	buffer = buffer .. str
-end
-
-


             reply	other threads:[~2018-07-05  8:17 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-05  8:17 list [this message]
2018-07-12 20:38 ` konstantin
2018-07-12 20:49   ` list
2018-08-06 11:19     ` list

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180705081736.24505-1-list@eworm.de \
    --to=cgit@lists.zx2c4.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).