Added validation.lisp
[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 (:shadowing-import-from
10 :iterate
11 :with)
12 (:nicknames :lol :mewa)
13 (:export
14 ;;;; LoL
15 :define-view-for-table
16 :define-views-for-database
17
18 ;;;;a wrapper for calling make-presentation
19 :call-view
20 :present-view
21 :slot-view
22 :present-slot-view
23 :make-view
24 ;;;; Ajax
25 :auto-complete
26 :call-auto-complete
27
28 ;;;; Mewa Exports
29 :mewa ;the superclass of all mewa-presentations
30 :make-presentation
31 :call-presentation
32
33 ;;attributes
34 :attributes
35 :define-attributes
36 :with-default-attributes
37 :set-default-attributes
38 :set-attribute
39 :find-attribute
40 :perform-set-attributes
41 ;;
42 :perform-set-attribute-properties
43 :define-attributes
44
45 ;; presentation objects
46 :present
47 :instance
48 :mewa-object-presentation
49 :mewa-one-line-presentation
50 :mewa-list-presentation
51 :mewa-search-presentation
52 :mewa-presentation-search
53
54 :editablep
55 :global-properties
56 ;; SLOT presentations
57 :defslot-presentation
58 :slot-name
59 :mewa-relation-slot-presentation
60 :mewa-string-slot-presentation
61 :has-many-slot-presentation
62 :present-slot
63
64 :has-a
65 :has-many
66 :has-very-many
67 :many-to-many
68
69 ;; CRUD
70 :instance-is-stored-p
71
72 ;;;; Meta Model Exports))
73 :define-meta-model
74 :def-view-class-from-table
75 :def-view-class/meta
76 :list-slot-types
77 ))