The document "Generic Equality and Comparison for Common Lisp" 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/8/index.html for the details of this document.
--
Pascal Costanza
_______________________________________________
cdr-announce mailing list
cdr-announce(a)common-lisp.net
http://lists.common-lisp.net/cgi-bin/mailman/listinfo/cdr-announce
Hi Drew,
Thanks for catching this error, it was indeed a copy/paste issue.
Best,
Pascal
On 10 May 2011, at 22:15, Drew Crampsie wrote:
> Hey Pascal,
>
> I noticed the <title/> on the page still refers to CDR 8, probably a
> cut/paste mishap.
>
> Cheers,
>
> drewc
>
> On 10 May 2011 10:56, Pascal Costanza <pc(a)p-cos.net> wrote:
>> The document "File-local variables" has been submitted by Didier Verna and has been accepted as CDR document 9. According to the CDR process, this document is now in its initial stage and will be finalized on June 21, 2011, unless withdrawn by the author beforehand. See http://cdr.eurolisp.org/document/9/ for the details of this document.
>>
>> --
>> Pascal Costanza
>>
>>
>>
>>
>> _______________________________________________
>> cdr-announce mailing list
>> cdr-announce(a)common-lisp.net
>> http://common-lisp.net/cgi-bin/mailman/listinfo/cdr-announce
>>
>> _______________________________________________
>> announcements site list
>> announcements(a)common-lisp.net
>> http://common-lisp.net/mailman/listinfo/announcements
>>
--
Pascal Costanza
_______________________________________________
cdr-announce mailing list
cdr-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/cdr-announce
Hello everyone,
I'm pleased to release USOCKET 0.5.2, a new version of the universal socket library for Common Lisp.
In this release, the core API function WAIT-FOR-INPUT was much improved on SBCL, ECL, CLISP; there're some other fixes for ABCL and LispWorks. I heard, with this release, Hunchentoot can run on ABCL now.
Major changes since 0.5.1:
* General: [SBCL] SOCKET-CONNECT's TIMEOUT argument was limited on non-Windows platforms.
* Bugfix: [CLISP] WAIT-FOR-INPUT now functions right (with/without READY-ONLY), this made Hunchentoot working on CLISP. (Thanks to Anton Vodonosov <avodonosov(a)yandex.ru>)
* Bugfix: [ABCL] Fix SOCKET-ACCEPT to follow the documented API so that when called without an :ELEMENT-TYPE argument. (Thanks to Mark Evenson, the ABCL developer)
* Bugfix: [LispWorks] Fixed SOCKET-ACCEPT (Windows only) on WAIT-FOR-INPUTed sockets.
* Bugfix: [SBCL, ECL] Fixed wrongly STATE set/unset for WAIT-FOR-INPUT on Windows (report by Elliott Slaughter)
* Enhancement: Additional NAME keyword argument for SOCKET-SERVER for setting the server thread name.
* Enhancement: [ABCL] GET-ADDRESS now works with underlying IP6 addresses.
* Enhancement: [CLISP] missing GET-LOCAL-* methods for STREAM-SERVER-USOCKET was now added.
We give special thanks to:
Elliott Slaughter <elliottslaughter(a)gmail.com>
for his two bug reports on WAIT-FOR-INPUT (SBCL/Windows) with unit test code, and these code are now part of USOCKET-TEST.
If you want to download this release, please checkout
http://common-lisp.net/project/usocket/releases/
The API documentation page is here:
http://common-lisp.net/project/usocket/api-docs.shtml
As usual, I hope more and more people use USOCKET as part of their Lisp applications, and any feedback - bugs or hugs - is greatly appreciated. If you use USOCKET, please let us know what for.
And, if there's any historical issue which haven't been solved, please feel free to remind me.
And below is a roadmap for future USOCKET releases (ignore the order):
* Add UDP (Datagram) support for Digitool MCL;
* The DFFI version of ECL backend without calling C compilers;
* New backends: Symbolics Lisp Machine, XCL and IOlib;
* New API: SOCKET-OPTION for setting/getting various socket options (already exist in trunk (0.6))
Let me know if you have other ideas.
Regards,
Chun Tian (binghe)
_______________________________________________
usocket-announce mailing list
usocket-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/usocket-announce
The document "File-local variables" has been submitted by Didier Verna and has been accepted as CDR document 9. According to the CDR process, this document is now in its initial stage and will be finalized on June 21, 2011, unless withdrawn by the author beforehand. See http://cdr.eurolisp.org/document/9/ for the details of this document.
--
Pascal Costanza
_______________________________________________
cdr-announce mailing list
cdr-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/cdr-announce
The document "Generic Equality and Comparison for Common Lisp" has been submitted by Marco Antoniotti and has been accepted as CDR document 8. According to the CDR process, this document is now in its initial stage and will be finalized on May 15, 2011, unless withdrawn by the author beforehand. See http://cdr.eurolisp.org/document/8/ for the details of this document.
--
Pascal Costanza
_______________________________________________
cdr-announce mailing list
cdr-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/cdr-announce
Hello everyone,
With permission from Erik Huelsmann, I'm pleased to release USOCKET 0.5.1
The major point in this release is the availability of UDP protocol support on GNU CLISP, and we have implemented too versions: the FFI version and the RAWSOCK verion. The FFI version will be useful for those who cannot use RAWSOCK (i.e. default installation on MacOS/Fink and most Linux distributions)
There're also some important fixes since the 0.5.0 release, especially for SBCL.
Major changes since 0.5.0:
* New feature: [CLISP] UDP (Datagram) support based on FFI (Win/Mac/Linux), no RAWSOCK needed.
* Enhancement: SOCKET-SERVER return a second value (socket) when calling in new-thread mode.
* Enhancement: [CLISP] Full support of DNS helper functions (GET-HOST-BY-NAME, ...) added.
* Enhancement: [CLISP] Better network error type detection based on OS error code.
* Enhancement: [LispWorks] Better network error type detection based on OS error code.
* Bugfix: Fixed wrong macro expansions of {IP|PORT}-{FROM|TO}-OCTET-BUFFER functions (since 0.4.0)
* Bugfix: SOCKET-CONNECT didn't set CONNECTED-P for datagram usockets on most backends.
* Bugfix: [SBCL] Fixes for "SBCL/Win32: finalizer problem, etc", by Anton Kovalenko <anton(a)sw4me.com>
* Bugfix: [SBCL] Fixed SOCKET-SERVER (UDP) on SBCL due to a issue in SOCKET-CONNECT when HOST is NIL.
* Bugfix: [SBCL] SOCKET-CONNECT's TIMEOUT argument now works as a "connection timeout", thanks to Nikodemus Siivola.
* Bugfix: [CMUCL] Fixed SOCKET-SEND on unconnected usockets under Unicode version of CMUCL.
* Bugfix: [CLISP] Fixed and confirmed UDP (Datagram) support (RAWSOCK version).
We special thanks to:
Anton Kovalenko <anton(a)sw4me.com>
for his professional fix on the issue "SBCL/Win32: finalizer problem, etc" [1].
If you want to download this release, please check out
http://common-lisp.net/project/usocket/releases/
The API documentation page on the website is actually quite new:
http://common-lisp.net/project/usocket/api-docs.shtml
As usual, I hope more and more people use USOCKET as part of their Lisp applications, and any feedback - bugs or hugs - is greatly appreciated. If you use USOCKET, please let us know what for.
And, if there's any historical issue which haven't been solved, please feel free to remind me.
And below is a roadmap for future USOCKET releases (ignore the order):
* Add UDP (Datagram) support for Digitool MCL;
* The DFFI version of ECL backend without calling C compilers;
* New backend: Symbolics Lisp Machine (because ASDF support it now);
* New backend: XCL (is it ready?!);
* New backend: IOlib;
* New API: SOCKET-OPTION for setting/getting various socket options.
Let me know if you have other ideas...
Regards,
Chun Tian (binghe)
[1] http://article.gmane.org/gmane.lisp.usocket.devel/316
_______________________________________________
usocket-announce mailing list
usocket-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/usocket-announce
The document "Clarification Proposal for CLHS Section 22.3" 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/7/index.html for the details of this document.
--
Pascal Costanza
_______________________________________________
cdr-announce mailing list
cdr-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/cdr-announce
The document "Clarification Proposal for CLHS Section 22.3" has been submitted by Didier Verna and has been accepted as CDR document 7. According to the CDR process, this document is now in its initial stage and will be finalized on March 29, 2011, unless withdrawn by the author beforehand. See http://cdr.eurolisp.org/document/7/index.html for the details of this document.
Pascal
--
Pascal Costanza, mailto:pc@p-cos.net, http://p-cos.net
Vrije Universiteit Brussel
Software Languages 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
Hi everybody,
I'm very happy to announce a new CLFSWM release:
http://common-lisp.net/project/clfswm/clfswm-1102.tar.gz
Since the last release, changes are mainly bugs fixes and internals
improvements.
There is also some new code in contrib:
- keyb_fr.lisp to enable french keyboard layout
- mpd.lisp to handle the mpd (Music Player Daemon)
- xmms.lisp to handle xmms
- reboot-halt.lisp a menu to reboot/halt the machine
- osd.lisp the system I use to make On Screen Display in
videos
- server/ a client/server system to manage clfswm remotely
or with scripts.
And now, CLFSWM can run another window manager while running (this can
be useful sometimes with some applications (for example java app))
The full ChangeLog is here:
http://common-lisp.net/project/clfswm/ChangeLog
As always, the main site is here:
http://common-lisp.net/project/clfswm/
And the clfswm trac is available here:
http://trac.common-lisp.net/clfswm/
Have fun,
Philippe
_______________________________________________
clfswm-announce mailing list
clfswm-announce(a)common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/clfswm-announce