[ANN] New guile-dbi + guile-dbd

2006-09-26 Thread Maurizio Boriani
Hi all, new guile-dbi release at: http://home.gna.org/guile-dbi/ Fix deprecated guile 1.6 api and use newer 1.8. -- guile-dbi is a database generic interface. The main lib provide a way to use dbds (data base drivers) which are linked at run-time (like perl dbi or php or...). This pr

Re: GOOPS: Customizing class instantiation

2006-09-26 Thread Pat Lasswell
On 9/26/06, Ludovic Courtès <[EMAIL PROTECTED]> wrote:  (define-method (make-instance (c )) (format (current-error-port) "make-instance (~a)~%" c)(next-method))Try adding a '. initargs' after '(c )'.cheerspatOn 9/26/06, Ludovic Courtès <[EMAIL PROTECTED]> wrote: Hi,I'm trying to "dynamical

Re: GOOPS: Customizing class instantiation

2006-09-26 Thread Ludovic Courtès
Hi, [EMAIL PROTECTED] (Ludovic Courtès) writes: > guile> (define c (make-a-class 'some-name)) > guile> (define obj (make c)) > guile> obj > #< some-name deadbeef> This should rather be: #. > This is quite unexpected since I would expect, at least, the > `initialize' class for instances

GOOPS: Customizing class instantiation

2006-09-26 Thread Ludovic Courtès
Hi, I'm trying to "dynamically" create classes which I would then like to instantiate. The behavior I would like to achieve is that: guile> (define c (make-a-class 'some-name)) guile> (define obj (make c)) guile> obj #< some-name deadbeef> To that purpose, I have a metaclass named `' an