fixed layer ordering.
[clinton/lisp-on-lines.git] / src / packages.lisp
CommitLineData
6d063a77 1(defpackage :lisp-on-lines
5dea194e
DC
2 (:use :arnesi
3 :iterate
4 :meta-model
5 :common-lisp
6 :it.bese.ucw
15bc66bd
DC
7 :clsql
8 :contextl)
b8c89851
DC
9 (:nicknames :lol :mewa)
10
5dea194e
DC
11 (:shadowing-import-from
12 :iterate
13 :with)
b8c89851
DC
14
15 (:shadowing-import-from
16 :clsql
17 :time-difference
18 :make-time
19 :time-ymd
20 :date
21 :get-time
22 :time-element
23 :time+
24 :date-element)
25
26 (:shadow
27 :present
28 :present-slot
29 :presentation
30 :instance
31 :slot-presentation
32 :integer-slot-presentation
33 :string-slot-presentation
34 :object-presentation
35 :one-line-presentation
36 :presentation-slot-value
37 :get-foreign-instances)
38
dbeb1708 39 (:export
68a53dce 40 ;;;; LoL
d5e996b3
DC
41 :define-view-for-table
42 :define-views-for-database
68a53dce 43
d5e996b3
DC
44 ;;;;a wrapper for calling make-presentation
45 :call-view
46 :present-view
47 :slot-view
48 :present-slot-view
49 :make-view
d2512426
DC
50 ;;;; Ajax
51 :auto-complete
52 :call-auto-complete
68a53dce 53
dbeb1708 54 ;;;; Mewa Exports
8e6e6b56 55 :mewa ;the superclass of all mewa-presentations
dbeb1708 56 :make-presentation
68a53dce 57 :call-presentation
d5e996b3 58
dbeb1708
DC
59 ;;attributes
60 :attributes
d5e996b3
DC
61 :define-attributes
62 :with-default-attributes
dbeb1708
DC
63 :set-default-attributes
64 :set-attribute
65 :find-attribute
66 :perform-set-attributes
67 ;;
68 :perform-set-attribute-properties
fc3e754f 69 :define-attributes
dbeb1708
DC
70
71 ;; presentation objects
72 :mewa-object-presentation
73 :mewa-one-line-presentation
74 :mewa-list-presentation
5dea194e
DC
75 :mewa-search-presentation
76 :mewa-presentation-search
598f1fa8
DC
77
78 :editablep
79 :global-properties
fc3e754f 80 ;; SLOT presentations
b8c89851 81
fc3e754f 82 :mewa-relation-slot-presentation
5dea194e 83 :mewa-string-slot-presentation
b8c89851 84 :has-many-slot-presentation
598f1fa8
DC
85 :has-a
86 :has-many
87 :has-very-many
88 :many-to-many
89
569ad9e6
DC
90 ;; CRUD
91 :instance-is-stored-p
92
dbeb1708 93 ;;;; Meta Model Exports))
5a4eea11
DC
94 :define-meta-model
95 :def-view-class-from-table
7c3aade7 96 :def-view-class/meta
8e6e6b56
DC
97 :list-slot-types
98 ))