-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathorg.melusina.webmachine.asd
143 lines (133 loc) · 4.4 KB
/
org.melusina.webmachine.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
;;;; org.melusina.webmachine.asd — System definition for Webmachine
;;;; Webmachine (https://github.com/melusina-org/cl-webmachine)
;;;; This file is part of Webmachine.
;;;;
;;;; Copyright © 2018–2023 Michaël Le Barbier
;;;; All rights reserved.
;;;; This file must be used under the terms of the MIT License.
;;;; This source file is licensed as described in the file LICENSE, which
;;;; you should have received as part of this distribution. The terms
;;;; are also available at https://opensource.org/licenses/MIT
(asdf:defsystem #:org.melusina.webmachine
:description "HTTP Semantic Awareness on top of Hunchentoot"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:alexandria
#:cl-ppcre
#:hunchentoot
#:parse-number
#:trivia)
:components
((:module "src"
:components ((:file "package")
(:file "utilities")
(:file "configuration")
(:file "condition")
(:file "content")
(:file "request")
(:file "reply")
(:file "request-method")
(:file "media-type")
(:file "path")
(:file "resource")
(:file "constant-resource")
(:file "directory-resource")
(:file "file-resource")
(:file "acceptor")))))
(asdf:defsystem #:org.melusina.webmachine/asset
:description "Definition of Webmachine Assets"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:org.melusina.webmachine)
:components
((:module "src"
:components ((:file "asset")))))
(asdf:defsystem #:org.melusina.webmachine/server
:description "A Webmachine server"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:cl-css
#:cl-who
#:hunchentoot
#:org.melusina.webmachine
#:parenscript
#:swank)
:components
((:module "server"
:components ((:file "package")
(:file "html")
(:file "entrypoint")))))
(asdf:defsystem #:org.melusina.webmachine/example
:description "A Webmachine example"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:unix-opts
#:shasht
#:org.melusina.webmachine/asset
#:org.melusina.webmachine/server)
:components
((:module "example"
:components ((:file "package")
(:file "utilities")
(:file "html")
(:file "javascript")
(:module "domain"
:components ((:file "user")))
(:module "view"
:components ((:file "about")
(:file "features")
(:file "health")
(:file "home")
(:file "login")
(:file "logout")
(:file "sign-up")
(:file "user")))
(:file "entrypoint")))))
(asdf:defsystem #:org.melusina.webmachine/signature
:description "A Webmachine example for cryptographic signatures"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:ironclad
#:org.melusina.webmachine/example)
:components
((:module "example"
:components ((:file "signature")))))
(asdf:defsystem #:org.melusina.webmachine/testsuite
:description "Testsuite for the Common Lisp Webmachine"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:alexandria
#:cl-ppcre
#:drakma
#:org.melusina.confidence
#:org.melusina.webmachine
#:org.melusina.webmachine/signature
#:org.melusina.webmachine/example)
:components
((:module "testsuite"
:components ((:file "package")
(:file "utilities")
(:file "configuration")
(:file "condition")
(:file "content")
(:file "request")
(:file "reply")
(:file "acceptor")
(:file "request-method")
(:file "media-type")
(:file "path")
(:file "resource")
(:file "entrypoint")))))
(asdf:defsystem #:org.melusina.webmachine/development
:description "Development tools for the Common Lisp Webmachine"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:org.melusina.atelier
#:org.melusina.webmachine
#:org.melusina.webmachine/example
#:org.melusina.webmachine/server
#:org.melusina.webmachine/testsuite)
:components
((:module "libexec/lisp"
:components ((:file "development")))))
;;;; End of file `org.melusina.webmachine.asd'