Add fixme notes

This commit is contained in:
Morgan Astra 2018-11-14 14:28:15 -08:00
parent b507619c7c
commit 41a9133d3d
2 changed files with 12 additions and 2 deletions

View File

@ -34,6 +34,8 @@
[url text]
[:a {:href url} text])
;; FIXME morgan.astra <2018-11-14 Wed>
;; use a div for this instead of a plain bold tag
(defn wrap-pronoun
[pronoun]
[:b pronoun])
@ -90,6 +92,8 @@
(defn usage-block []
[:div {:class "section usage"}
[:p "Full usage: "
;; FIXME morgan.astra <2018-11-14 Wed>
;; This looks really ugly in the browser
[:tt "https://pronoun.is/subject-pronoun/object-pronoun/possessive-determiner/possessive-pronoun/reflexive"]
" displays examples of your pronouns."]
[:p "This is a bit unwieldy. If we have a good guess we'll let you use"

View File

@ -21,7 +21,9 @@
[clojure.string :as s]
[clojure.java.io :as io]
[ring.adapter.jetty :as jetty]
;[ring.middleware.logger :as logger]
;; FIXME morgan.astra <2018-11-14 Wed>
;; make this logger work or use another one
;; [ring.middleware.logger :as logger]
[ring.middleware.stacktrace :as trace]
[ring.middleware.params :as params]
[ring.middleware.resource :refer [wrap-resource]]
@ -66,9 +68,13 @@
(def app
(-> app-routes
(wrap-resource "images")
;; FIXME morgan.astra <2018-11-14 Wed>
;; use this resource or delete it
;; (wrap-resource "images")
wrap-content-type
wrap-not-modified
;; FIXME morgan.astra <2018-11-14 Wed>
;; make this logger work or use another one
;logger/wrap-with-logger
wrap-error-page
wrap-gnu-natalie-nguyen