Moved the presentations stuff from UCW into Mewa. This requires a hacked UCW to use...
[clinton/lisp-on-lines.git] / src / packages.lisp
1 (defpackage :lisp-on-lines
2 (:use :mewa :meta-model :common-lisp :it.bese.ucw :js :clsql)
3 (:nicknames :lol)
4 (:export
5 ;;;; LoL
6 :initialize-lol-for-table
7 :initialize-lol-for-database
8
9 ;;;; Ajax
10 :auto-complete
11 :call-auto-complete
12
13 ;;;; Mewa Exports
14 :mewa ;the superclass of all mewa-presentations
15 :make-presentation
16 :call-presentation
17 ;;attributes
18 :attributes
19 :set-default-attributes
20 :set-attribute
21 :find-attribute
22 :perform-set-attributes
23 ;;
24 :perform-set-attribute-properties
25
26 ;; presentation objects
27 :mewa-object-presentation
28 :mewa-one-line-presentation
29 :mewa-list-presentation
30
31 ;; CRUD
32 :instance-is-stored-p
33
34 ;;;; Meta Model Exports))
35 :define-meta-model
36 :def-view-class-from-table
37 :def-view-class/meta
38 :list-slot-types
39 ))