Changes from maxclaims branch (git).
[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
2548f054 20 #:insert-object
b7657b86 21
079b9084 22;; Descriptions
1d51a2ee 23 #:find-description
b7657b86 24 #:description-of
1d51a2ee 25 #:define-description
e8d4fa45 26 #:described-object
6de8d300 27 #:described-class
f4efa7ff 28 #:described-standard-class
4358148e 29 #:with-active-descriptions
b7657b86 30 #:with-inactive-descriptions
4358148e 31
2548f054 32
079b9084 33 ;; Displays
1d51a2ee 34 #:define-display
35 #:display
079b9084 36 #:display-using-description
1d51a2ee 37 #:*display*
38 #:*object*
39
079b9084 40 ;; Attributes
1d51a2ee 41 #:find-attribute
4358148e 42 #:attribute
43 #:attributes
2548f054 44 #:attribute-object
1d51a2ee 45 #:attribute-label
2548f054 46 #:label
079b9084 47 #:attribute-function
b7657b86 48 #:attribute-value
2548f054 49 #:display-attribute-value
f4efa7ff 50 #:active-attributes
2548f054 51 #:attribute-delimiter
52 #:standard-attribute
f4efa7ff 53 ;; Standard Library
2548f054 54
55 ;; editing
f4efa7ff 56 #:editable
2548f054 57 #:attribute-editor
f4efa7ff 58 #:string-attribute-editor
59 #:number-attribute-editor
2548f054 60 #:password-attribute-editor
61 #:password
62
63 ;; html
64 #:display-html-attribute-editor
65 #:make-attribute-value-writer))
079b9084 66
1d51a2ee 67