Merge branch 'master' into develop

This commit is contained in:
Morgan Astra 2018-11-14 12:52:52 -08:00
commit 4eb4553681
3 changed files with 9 additions and 7 deletions

View File

@ -30,7 +30,7 @@ zie hir hir hirs hirself
si hyr hyr hyrs hyrself
kit kit kits kits kitself
ne nem nir nirs nemself
fey feym feir feirs feirself
fey fem feir feirs feirself
xie xer xer xers xerself
vi ver ver vers verself
vi vim vir virs vimself

View File

@ -103,10 +103,6 @@
(twitter-name "morganastra")
", whose "
(href "http://pronoun.is/ze/zir?or=she" "pronoun.is/ze/zir?or=she")]
[:p "Want to support this and similar websites? "
"Join us on "
(href "https://www.patreon.com/user?u=5238484" "Patreon")
"!"]
[:p "pronoun.is is free software under the "
(href "https://www.gnu.org/licenses/agpl.html" "AGPLv3")
"! visit the project on "

View File

@ -50,6 +50,11 @@
(ANY "*" []
(route/not-found (slurp (io/resource "404.html")))))
(defn wrap-gnu-natalie-nguyen [handler]
(fn [req]
(when-let [resp (handler req)]
(assoc-in resp [:headers "X-Clacks-Overhead"] "GNU Natalie Nguyen"))))
(defn wrap-error-page [handler]
(fn [req]
(try (handler req)
@ -66,6 +71,7 @@
wrap-not-modified
;logger/wrap-with-logger
wrap-error-page
wrap-gnu-natalie-nguyen
trace/wrap-stacktrace
params/wrap-params))