massive refactoring in preparation of release.
[clinton/lisp-on-lines.git] / lisp-on-lines.asd
index c38a9da..5f2637b 100644 (file)
 (defsystem :lisp-on-lines
     :components ((:static-file "lisp-on-lines.asd")
                 (:file "src/packages")
+                (:module :patches                        
+                         :components ((:file "yaclml")))
                 (:module :src
-                         :components ((:file "static-presentations")
+                         :components ((:file "special-initargs")
+                                      (:file "properties")
+                                      ;;;; legacy UCW presentations
+                                      (:file "static-presentations")
+                                      
                                       (:file "mewa")
                                       (:file "validation")
+                                      (:file "validation/email-address")
                                       (:file "lisp-on-lines")
                                       (:file "presentations")
-                                      (:file "slot-presentations"))
+                                      (:file "slot-presentations")
+                                      (:file "slot-presentations/date")
+                                      (:file "defdisplay")
+                                      (:file "standard-display")
+                                      (:file "standard-occurence")
+                                      (:file "standard-attributes")
+                                      (:file "dojo-attributes")
+                                      (:file "standard-wrappers")
+                                      (:file "relational-attributes")
+
+                                      (:file "lines")
+
+                                      (:file "backwards-compat"))
                          :serial t)
+                (:module :attributes
+                         :pathname "src/attributes/"
+                         :components ((:file "numbers")))
                 (:module :components
                          :pathname "src/components/"
                          :components ((:file "range-list")
-                                      (:file "ajax"))))
+                                      (:file "ajax")
+                                      (:file "dojo"))))
     :serial t
-    :depends-on (:arnesi :ucw :meta-model :split-sequence :contextl))
+    :depends-on (:arnesi :ucw :meta-model :split-sequence :contextl :cl-ppcre :cl-fad))
+
+(defsystem :lisp-on-lines.example
+    :components (
+                (:file "reddit-example"))
+
+    :depends-on (:lisp-on-lines))