Remap blue to nonblue colors in dark mode.
[lw2-viewer.git] / lw2-viewer.asd
blob7d3461644299da05d8a125d73be8046c3d9400bc
1 (in-package :asdf)
3 (asdf:defsystem :lw2-viewer
4   :depends-on ("uiop" "flexi-streams" "hunchentoot" "dexador" "cl-json" "lmdb" "local-time" "plump" "clss" "cl-ppcre" "xml-emitter" "city-hash" "bit-smasher" "cl-unicode" "parse-js" "cl-markdown" "websocket-driver-client" "ironclad" "cl-base64" "djula" "split-sequence" "cl-typesetting" "named-readtables" "collectors" "closer-mop" "chronicity" "parenscript" "trivial-gray-streams" "trivia" "iterate" "introspect-environment" "trivial-macroexpand-all" "trivial-cltl2" "dufy/core" "parse-float" "global-vars" "cl-grnm")
5   :components ((:module "src"
6                 :components ((:file "utils" :depends-on ("macro-utils"))
7                              (:file "macro-utils")
8                              (:file "raw-memory-streams")
9                              (:file "rwlock")
10                              (:file "graphql" :depends-on ("macro-utils"))
11                              (:file "hash-utils")
12                              (:file "context")
13                              (:file "html-reader")
14                              (:file "client-script" :depends-on ("html-reader"))
15                              (:file "interface-utils" :depends-on ("links" "html-reader"))
16                              (:file "user-context")
17                              (:file "conditions" :depends-on ("utils" "html-reader"))
18                              (:file "schema-type" :depends-on ("utils" "backend-modules"))
19                              (:file "dnsbl" :depends-on ("../config"))
20                              (:file "backend-modules")
21                              (:module "backends"
22                               :components ((:file "accordius"))
23                               :depends-on ("backend-modules" "backend" "lw2-login"))
24                              (:file "routes")
25                              (:file "sites" :depends-on ("utils" "routes" "backend-modules" "fonts-modules"))
26                              (:file "resources" :depends-on ("config-package" "utils" "sites" "context"))
27                              (:file "response" :depends-on ("utils" "conditions" "sites" "routes" "html-reader"))
28                              (:file "fonts-modules")
29                              (:file "fonts" :depends-on ("html-reader" "utils" "sites" "fonts-modules" "backend" "resources"))
30                              (:file "config-package" :depends-on ("sites" "backend-modules" "fonts-modules"))
31                              (:module "config-copy"
32                                       :pathname "../"
33                                       :output-files (compile-op (o c) (if (file-exists-p "config.lisp") nil (list "config.lisp")))
34                                       :perform (compile-op :before (o c)
35                                                            (if (file-exists-p "config.lisp")
36                                                                (mark-operation-done o c)
37                                                                (copy-file "config-example.lisp" "config.lisp"))))
38                              (:file "../config" :depends-on ("config-copy" "config-package"))
39                              (:file "lmdb" :depends-on ("rwlock" "conditions" "raw-memory-streams" "hash-utils" "sites" "context" "../config"))
40                              (:file "backend" :depends-on ("utils" "hash-utils" "backend-modules" "lmdb" "graphql" "context" "user-context" "sites" "schema-type" "conditions" "web-push"))
41                              (:file "csrf" :depends-on ("conditions" "client-script"))
42                              (:file "components" :depends-on ("utils" "csrf"))
43                              (:file "links" :depends-on ("utils" "lmdb" "backend" "sites" "context"))
44                              (:file "legacy-archive" :depends-on ("utils" "backend"))
45                              (:static-file "../text-clean-regexps.js")
46                              (:static-file "../html-clean-regexps.js")
47                              (:file "colors" :depends-on ("utils"))
48                              (:file "images" :depends-on ("conditions" "html-reader" "utils" "lmdb" "backend" "legacy-archive" "resources"))
49                              (:file "elicit-predictions" :depends-on ("utils" "html-reader" "backend" "graphql"))
50                              (:file "clean-html" :depends-on ("utils" "links" "lmdb" "backend" "context" "sites" "conditions" "colors" "images" "elicit-predictions" "../text-clean-regexps.js" "../html-clean-regexps.js"))
51                              (:file "lw2-login" :depends-on ("utils" "backend" "backend-modules" "context"))
52                              (:file "backlinks" :depends-on ("html-reader" "lmdb" "backend" "backend-modules" "sites" "links" "context" "clean-html" "conditions" "utils" "interface-utils"))
53                              (:file "web-push" :depends-on ("utils" "conditions"))
54                              (:file "push-notifications" :depends-on ("backend"))
55                              (:file "background-loader" :depends-on ("backend" "push-notifications" "clean-html"))
56                              (:file "admin" :depends-on ("lmdb" "clean-html" "backend" "backlinks"))
57                              (:module "data-viewers"
58                                       :components ((:file "post")
59                                                    (:file "comment")
60                                                    (:file "tag"))
61                                       :depends-on ("schema-type" "utils" "backend" "context" "user-context" "sites" "clean-html" "html-reader" "interface-utils" "links" "lmdb" "backlinks")))
62                 :depends-on ())
63                (:module "templates"
64                 :components ((:static-file "conversation.html")
65                              (:static-file "edit-post.html")
66                              (:static-file "reset-password.html")))
67                (:static-file "www/head.js")
68                (:file "lw2" :depends-on ("src" "www/head.js" "templates"))
69                (:file "arbital" :depends-on ("lw2"))))