-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwuwei.asd
66 lines (59 loc) · 1.82 KB
/
wuwei.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
(in-package :asdf)
#+ALLEGRO
(require :aserve)
(defsystem :wuwei
:name "WuWei"
:description "Tools for developing Ajaxy web applications"
:long-description "WuWei is a toolkit for building Ajax web pages and web sites in Common Lisp. It's designed to be light-weight, a toolkit rather than a platform. Features include: Continuation-based AJAX user interfaces; Server-side DOM operations (add/remove elements, visual fades, drag and drop); High-level interfaces to in-place-editing and autocomplete widgets; Login and session management"
:version "0.1"
:author "Mike Travers <[email protected]>"
:license "MIT"
:serial t
:depends-on (#-ALLEGRO :aserve :cl-json :mtlisp #-ALLEGRO :ironclad
:drakma) ;for oauth2
:components
((:static-file "wuwei.asd")
(:module :src
:serial t
:components
((:file "package")
(:file "htmlgen-patch")
(:file "cl-json-patches")
(:file "config")
(:file "net-utils")
(:file "web")
(:file "ajax-render")
(:file "web2")
(:file "wu")
(:file "debug-utils")
(:file "session")
(:file "error")
(:file "upload")
(:file "async")
(:file "autocomplete")
(:file "dom-objects")
(:file "eval-server")
(:file "oauth2")
(:file "heroku")
))))
(defsystem :wuwei-examples
:name "WuWei Examples"
:description "Example for WuWei"
:version "0.1"
:author "Mike Travers <[email protected]>"
:license "MIT"
:serial t
:depends-on (:wuwei :drakma)
:components
((:module "examples"
:serial t
:components
((:file "home")
(:file "render-update")
(:file "async")
(:file "state")
(:file "color")
(:file "autocomplete-freebase")
(:file "arc-challenge")
(:file "go") ;set up for Heroku
))))