From: Kevin M. Rosenberg Date: Fri, 13 Dec 2002 19:41:02 +0000 (+0000) Subject: r3622: *** empty log message *** X-Git-Tag: debian-2.11.0-2~227 X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=commitdiff_plain;h=d8b0d2a17d5213ab6e9ec500876dce23a05b2c42 r3622: *** empty log message *** --- diff --git a/debian/changelog b/debian/changelog index 705b0b2..50c7139 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +cl-hyperobject (2.5.0-1) unstable; urgency=low + + * Reworked slot options, incompatible with previous version + * Complete redesign of object views + + -- Kevin M. Rosenberg Fri, 13 Dec 2002 03:08:23 -0700 + cl-hyperobject (2.1.1-1) unstable; urgency=low * New upstream, fixed hyperlink printing diff --git a/docs/hyperobject.doc b/docs/hyperobject.doc index b554dd6..f78cd74 100644 Binary files a/docs/hyperobject.doc and b/docs/hyperobject.doc differ diff --git a/metaclass.lisp b/metaclass.lisp index b43f7e5..f4db4dd 100644 --- a/metaclass.lisp +++ b/metaclass.lisp @@ -8,7 +8,7 @@ ;;;; Date Started: Apr 2000 ;;;; ;;;; -;;;; $Id: metaclass.lisp,v 1.4 2002/12/13 05:44:19 kevin Exp $ +;;;; $Id: metaclass.lisp,v 1.5 2002/12/13 19:40:50 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -21,12 +21,14 @@ (defparameter *class-options* - '(:user-name :default-print-slots :description :version :sql-name) + '(:user-name :default-print-slots :description :version :sql-name + :direct-rules) "List of class options for hyperobjects.") (defparameter *slot-options* - '(:print-formatter :description :user-name + '(:value-type :print-formatter :description :user-name :subobject :hyperlink :hyperlink-parameters - :index :inverse :unique :sql-name) + :index :inverse :unique :sql-name :null-allowed + :value-constraint :nil-text) "Slot options that can appear as an initarg") (defparameter *slot-options-no-initarg* '(:ho-type :sql-type :length)