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