On Mon, 24 Dec 2007 01:46:40 +0200, Anton Vodonosov <avodonosov(a)yandex.ru> wrote:
> Please, check the new version attached.
Thanks, I've made a new release which incorporates your changes.
Edi.
_______________________________________________
tbnl-announce site list
tbnl-announce(a)common-lisp.net
http://common-lisp.net/mailman/listinfo/tbnl-announce
An HTML version of the document "A generic hash table interface
specification for Common Lisp" by Ingvar Mattsson has been added to
the Common Lisp Document Repository. See http://cdr.eurolisp.org/document/2/
for the details of this document.
Pascal
--
Pascal Costanza, mailto:pc@p-cos.net, http://p-cos.net
Vrije Universiteit Brussel, Programming Technology Lab
Pleinlaan 2, B-1050 Brussel, Belgium
_______________________________________________
cdr-announce mailing list
cdr-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/cdr-announce
The document "Common Lisp Document Repository (revised)" by Marc
Battyani, Pascal Costanza, Arthur Lemmens, and Edi Weitz has been
finalized. According to the CDR process, this document is now in its
final stage and cannot be changed anymore. See http://cdr.eurolisp.org/document/4/
for the details of this document.
Pascal
--
Pascal Costanza, mailto:pc@p-cos.net, http://p-cos.net
Vrije Universiteit Brussel, Programming Technology Lab
Pleinlaan 2, B-1050 Brussel, Belgium
_______________________________________________
cdr-announce mailing list
cdr-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/cdr-announce
Version 0.0.6 of clouchdb has been released. Clouchdb is a lisp
interface to CouchDb, a document oriented database. This release of
clouchdb includes fixes for extended character sets, it should now
support proper encoding of utf-8 data in document IDs as well as
document content.
- Peter Eddy
_______________________________________________
clouchdb-announce mailing list
clouchdb-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/clouchdb-announce
I have released version 0.0.5 of clouchdb, the Common Lisp library for
interacting with the CouchDb document-orientied database. This release
contains support for proper escaping of database name and document ID,
and view names in URLs.
_______________________________________________
clouchdb-announce mailing list
clouchdb-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/clouchdb-announce
Hi,
i am glad to announce the first release of CL-ObjC.
CL-ObjC is a Common Lisp library to allow developers to use libraries
written in the Objective C language, providing a lisp-like interface
towards Objective C conventions. CL-ObjC tries to be portable between
Common Lisp implementations using CFFI to let the user use a Common
Lisp system with XCode.
You can get it from:
http://www.common-lisp.net/project/cl-objc/cl-objc.tar.gz
or from the darcs repository at
http://www.common-lisp.net/project/cl-objc/darcs/cl-objc
More info can be found on the project web site:
http://www.common-lisp.net/project/cl-objc
and in the documentation and API reference pdf (also available in info
format):
http://www.common-lisp.net/project/cl-objc/cl-objc.pdf
Current Features:
* Lisp-like interface to send messages and create ObjC classes and
methods. E.g.
(let ((new-string (invoke 'ns-string alloc)))
(invoke new-string :init-with-utf8-string "ciao"))
(define-objc-class bank-account ns-object
((amount :float)
(currency currency-type)))
(define-objc-method withdraw ((self bank-account) (withdraw :float))
(with-ivar-accessors bank-account
(decf (amount self) withdraw)
self))
* CLOS bindings to have ObjC objects and classes like CLOS objects.
E.g.
(let ((new-string (make-instance 'objc:ns-string)))
(init-with-utf8-string? new-string "ciao"))
* A Reader Macro to mix ObjC and Common Lisp syntax
* Examples and test cases to show the use of CL-ObjC with XCode
* CFFI interface with foreign translators and ObjC struct management
CL-ObjC has been tested only on MacOSX/x86 platform with sbcl 1.0.
Some users reported privately that CL-ObjC works fine with Allegro
8.1.
Feedbacks and comments are welcome :-)
--
Luigi Panzeri aka Matley
Why Lisp? http://alu.cliki.net/RtL%20Highlight%20Film
Quotes on Lisp: http://lispers.org/
_______________________________________________
cl-objc-announce mailing list
cl-objc-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/cl-objc-announce