-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweblocks-cms.asd
39 lines (37 loc) · 2.12 KB
/
weblocks-cms.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
;;;; weblocks-cms.asd
(asdf:defsystem #:weblocks-cms
:description "A CMS for Weblocks"
:author "Olexiy Zamkoviy <[email protected]>"
:license "LLGPL"
:version (:read-from-file "version.lisp-expr")
:depends-on (#:weblocks
#:weblocks-prototype-js
#:weblocks-stores
#:weblocks-utils
#:weblocks-twitter-bootstrap-application
#:cl-fad
#:closure-html
#:cxml
#:cl-ppcre
#:weblocks-tree-widget
#:alexandria
#:weblocks-bootstrap-typeahead-presentation
#:weblocks-bootstrap-date-entry-presentation
#:weblocks-ajax-file-upload-presentation
#:yaclml)
:components ((:file "package")
(:file "weblocks-cms" :depends-on ("field-description" "model-description" "package" "tinymce-textarea-presentation" "util" "get-view-field" "get-table-view-field" "super-admin-interface" "tree-edit-model" "tree-edit-widget"))
(:file "field-description" :depends-on ("package"))
(:file "model-description" :depends-on ("package" "field-description"))
(:file "tinymce-textarea-presentation" :depends-on ("package"))
(:file "codemirror-presentation" :depends-on ("package"))
(:file "util" :depends-on ("package"))
(:file "get-view-field" :depends-on ("package"))
(:file "get-table-view-field" :depends-on ("package"))
(:file "super-admin-interface" :depends-on ("field-description" "model-description" "yaclml-syntax-improvement" "new-page-editable-gridedit"))
(:file "tree-edit-model" :depends-on ("package"))
(:file "tree-edit-widget" :depends-on ("package"))
(:file "yaclml-syntax-improvement" :depends-on ("package"))
(:file "new-page-editable-gridedit" :depends-on ("package"))
(:file "form-with-sticky-buttons-view" :depends-on ("package"))
(:file "form-with-refresh-button-view" :depends-on ("package" "form-with-sticky-buttons-view"))))