Added tutorial, added LABEL attribute to T description. Untested, may be borked.
[clinton/lisp-on-lines.git] / src / packages.lisp
1 (defpackage #:lisp-on-lines
2 (:use
3 :common-lisp
4 #:contextl
5 #:closer-mop
6 #:postmodern
7 #:alexandria)
8 (:nicknames #:lol)
9 (:export
10
11 ;; ROFL stuff here temporarily
12 #:standard-db-access-class
13 #:make-object-from-plist
14 #:described-db-access-class
15 #:select-only
16 #:select
17 #:insert-into
18 #:select-objects
19 #:select-only-n-objects
20
21 ;; Descriptions
22 #:find-description
23 #:description-of
24 #:define-description
25 #:described-object
26 #:described-class
27 #:described-standard-class
28 #:with-active-descriptions
29 #:with-inactive-descriptions
30
31 ;; Displays
32 #:define-display
33 #:display
34 #:display-using-description
35 #:*display*
36 #:*object*
37
38 ;; Attributes
39 #:find-attribute
40 #:attribute
41 #:attributes
42 #:attribute-label
43 #:attribute-function
44 #:attribute-value
45 #:active-attributes
46
47 ;; Standard Library
48 #:editable
49 #:string-attribute-editor
50 #:number-attribute-editor
51 #:password-attribute-editor))
52
53