Export LoL 3 symbols
[clinton/lisp-on-lines.git] / src / packages.lisp
... / ...
CommitLineData
1(defpackage :lisp-on-lines
2 (:use :arnesi
3 :iterate
4 :meta-model
5 :common-lisp
6 :it.bese.ucw
7 :clsql
8 :contextl)
9 (:nicknames :lol :mewa)
10
11 (:shadowing-import-from
12 :iterate
13 :with)
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
39 (:export
40 ;;;; CLSQL meta-model/default attributes definers
41 ;;;; TODO: should be moved to meta-model,
42 ;;;; with lol specific function implemented like the
43 ;;;; CLOS meta-model
44 :define-view-for-table
45 :define-views-for-database
46
47
48 ;;;; The LoL 3 displays
49 :defdisplay
50 :defattribute
51 :display
52 :display-using-description
53 :call-display
54
55 ;;;;a wrapper for calling make-presentation
56 :call-view
57 :present-view
58 :slot-view
59 :present-slot-view
60 :make-view
61 ;;;; Ajax
62 :auto-complete
63 :call-auto-complete
64
65 ;;;; Mewa Exports
66 :mewa ;the superclass of all mewa-presentations
67 :make-presentation
68 :call-presentation
69
70 ;;attributes
71 :attributes
72 :define-attributes
73 :with-default-attributes
74 :set-default-attributes
75 :set-attribute
76 :find-attribute
77 :perform-set-attributes
78 ;;
79 :perform-set-attribute-properties
80 :define-attributes
81
82 ;; presentation objects
83 :mewa-object-presentation
84 :mewa-one-line-presentation
85 :mewa-list-presentation
86 :mewa-search-presentation
87 :mewa-presentation-search
88
89 :editablep
90 :global-properties
91 ;; SLOT presentations
92
93 :mewa-relation-slot-presentation
94 :mewa-string-slot-presentation
95 :has-many-slot-presentation
96 :has-a
97 :has-many
98 :has-very-many
99 :many-to-many
100
101 ;; CRUD
102 :instance-is-stored-p
103
104 ;;;; Meta Model Exports))
105 :define-meta-model
106 :def-view-class-from-table
107 :def-view-class/meta
108 :list-slot-types
109 ))