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