Use parenscript-classic rather than parenscript
[clinton/lisp-on-lines.git] / src / packages.lisp
1 (defpackage #:lisp-on-lines
2 (:use
3 :common-lisp
4 #:contextl
5 #:closer-mop
6
7 #:alexandria)
8 (:nicknames #:lol)
9 (:export
10
11
12 ;; Descriptions
13 #:*description*
14 #:description
15 #:defdescription
16 #:find-description
17 #:current-description
18 #:description-of
19 #:define-description
20 #:defining-description
21 #:described-object
22 #:with-described-object
23 #:funcall-with-described-object
24 #:described-class
25 #:described-standard-class
26 #:with-active-descriptions
27 #:with-inactive-descriptions
28
29
30 ;; Displays
31 #:define-display
32 #:display
33 #:display-using-description
34 #:display-attribute-label
35 #:*display*
36 #:*object*
37
38 ;; Attributes
39 #:find-attribute
40 #:attribute
41 #:attributes
42 #:attribute-object
43 #:attribute-label
44 #:attribute-delimiter
45 #:attribute-slot-name
46 #:label
47 #:attribute-active-p
48 #:attribute-function
49 #:attribute-value
50 #:display-attribute-value
51 #:active-attributes
52 #:attribute-delimiter
53 #:standard-attribute
54 #:funcall-with-attribute-context
55 #:with-attribute-context
56
57 ;; Standard Library
58
59 ;; editing
60 #:editable
61 #:attribute-editor
62 #:string-attribute-editor
63 #:number-attribute-editor
64 #:password-attribute-editor
65 #:password
66
67 ;; :validation
68 #:validation
69 #:validate
70 #:validp
71
72 ;; CLOS
73 #:slot-definition-attribute
74
75 ;; html
76 #:display-html-attribute-editor
77 #:make-attribute-value-writer))
78
79