X-Git-Url: https://git.hcoop.net/clinton/lisp-on-lines.git/blobdiff_plain/7129498f766e835230452e4d3e51f8235667646f..f4efa7fff2efa6a3144fc664683137df92c42f91:/src/packages.lisp diff --git a/src/packages.lisp b/src/packages.lisp dissimilarity index 98% index aaa6944..44a6977 100644 --- a/src/packages.lisp +++ b/src/packages.lisp @@ -1,43 +1,53 @@ -(defpackage :meta-model - (:use :common-lisp :clsql) - (: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 - :sync-instance)) - - -(defpackage :mewa - (:use :ucw :common-lisp) - (:export :mewa :mewa-object-presentation :mewa-one-line-presentation :find-attribute :set-default-attributes :make-presentation :call-presentation :label :set-attribute :find-class-attributes :default-attributes :ok)) - - -(defpackage :lisp-on-lines - (:use :mewa :meta-model :common-lisp :it.bese.ucw)) \ No newline at end of file +(defpackage #:lisp-on-lines + (:use + :common-lisp + #: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 + #:display-using-description + #:*display* + #:*object* + + ;; Attributes + #:find-attribute + #:attribute + #:attributes + #:attribute-label + #:attribute-function + #:attribute-value + #:active-attributes + + ;; Standard Library + #:editable + #:string-attribute-editor + #:number-attribute-editor + #:password-attribute-editor)) + +