Added standard descriptions and UCW integration.
[clinton/lisp-on-lines.git] / src / packages.lisp
dissimilarity index 98%
index 8c971ce..e65ff7c 100644 (file)
@@ -1,34 +1,30 @@
-(defpackage :meta-model
-  (:use :common-lisp )
-  (:export
-   :meta-model-class
-   :meta-model.base-type
-   :meta-model.instance
-   :meta-model.metadata
-   :def-meta-model
-   :def-base-class
-   :%def-base-class
-   :def-view-class/table
-   :def-view-class/meta
-   :view-class-metadata
-   :create-table-from-model
-   :list-slots
-   :list-slot-types
-   :slot-type
-   :display-slot
-   :list-joins
-   :list-join-attributes
-   :list-keys
-   :list-view-classes
-   :display-slot
-   :primary-key-p
-   :list-foreign-keys
-   :foreign-key-p
-   :explode-foreign-key
-   :find-join-class
-   :find-join-key
-   :find-default-value
-   :explode-foreign-key
-   :list-has-many
-   :list-many-to-many))
-
+(defpackage #:lisp-on-lines
+  (:use 
+   :common-lisp
+   #:contextl
+   #:closer-mop
+   #:alexandria)
+  (:nicknames #:lol)
+  (:export
+   
+;; Descriptions
+   #:find-description
+   #:define-description
+   #:with-active-descriptions
+
+   ;; Displays
+   #:define-display
+   #:display
+   #:display-using-description
+   #:*display*
+   #:*object*
+   
+   ;; Attributes
+   #:find-attribute
+   #:attribute
+   #:attributes
+   #:attribute-label
+   #:attribute-function
+   #:attribute-value))
+
+