Expanded support for Configurable editing.
[clinton/lisp-on-lines.git] / src / packages.lisp
index b1f48db..44a6977 100644 (file)
@@ -1,14 +1,33 @@
 (defpackage #:lisp-on-lines
   (:use 
    :common-lisp
-   #:contextl)
+   #:contextl
+   #:closer-mop
+   #:postmodern
+   #:alexandria)
   (:nicknames #:lol)
   (:export
+
+;; ROFL stuff here temporarily
+   #:standard-db-access-class
+   #:make-object-from-plist
+   #:described-db-access-class
+   #:select-only
+   #:select
+   #:insert-into   
+   #:select-objects
+   #:select-only-n-objects
    
 ;; Descriptions
    #:find-description
+   #:description-of
    #:define-description
-   
+   #:described-object
+   #:described-class
+   #:described-standard-class
+   #:with-active-descriptions
+   #:with-inactive-descriptions
+
    ;; Displays
    #:define-display
    #:display
    
    ;; Attributes
    #:find-attribute
+   #:attribute
+   #:attributes
    #:attribute-label
    #:attribute-function
-   #:attribute-value))
+   #:attribute-value
+   #:active-attributes
+
+   ;; Standard Library
+   #:editable
+   #:string-attribute-editor
+   #:number-attribute-editor
+   #:password-attribute-editor))