remobe ROFL and add validation
[clinton/lisp-on-lines.git] / src / packages.lisp
index b0aa651..54a34af 100644 (file)
@@ -1,22 +1,66 @@
 (defpackage #:lisp-on-lines
   (:use 
-       #:common-lisp
-       #:contextl)
-  (:nicknames #:lol)
+   :common-lisp
+   #:contextl
+   #:closer-mop
 
+   #:alexandria)
+  (:nicknames #:lol)
   (:export
 
+   
+;; Descriptions
    #:find-description
-   #:ensure-description
+   #:description-of
    #:define-description
+   #:described-object
+   #:described-class
+   #:described-standard-class
+   #:with-active-descriptions
+   #:with-inactive-descriptions
 
+
+   ;; Displays
    #:define-display
    #:display
+   #:display-using-description
    #:*display*
    #:*object*
    
+   ;; Attributes
    #:find-attribute
+   #:attribute
+   #:attributes
+   #:attribute-object
    #:attribute-label
+   #:label
+   #:attribute-function
+   #:attribute-value
+   #:display-attribute-value
+   #:active-attributes
+   #:attribute-delimiter
+   #:standard-attribute
+
+   ;; Standard Library
+   
+   ;; editing
+   #:editable
+   #:attribute-editor
+   #:string-attribute-editor
+   #:number-attribute-editor
+   #:password-attribute-editor
+   #:password
+
+   ;; :validation
+   #:validation
+   #:validate
+   #:validp
+
+   ;; CLOS
+   #:slot-definition-attribute
+
+   ;; html
+   #:display-html-attribute-editor
+   #:make-attribute-value-writer))
+
 
-(cl:defpackage #:lol-test
-  (:use #:cl #:lisp-on-lines #:stefil #:contextl))