List for cgit developers and users
 help / color / mirror / Atom feed
* [PATCH 1/1] remove libravatar email filter
@ 2018-07-05  8:17 list
  2018-07-12 20:38 ` konstantin
  0 siblings, 1 reply; 4+ messages in thread
From: list @ 2018-07-05  8:17 UTC (permalink / 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
-
-


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-08-06 11:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-05  8:17 [PATCH 1/1] remove libravatar email filter list
2018-07-12 20:38 ` konstantin
2018-07-12 20:49   ` list
2018-08-06 11:19     ` list

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).