From sionescu at common-lisp.net Mon Jun 1 09:00:21 2009 From: sionescu at common-lisp.net (Stelian Ionescu) Date: Mon, 01 Jun 2009 05:00:21 -0400 Subject: [iolib-devel] New patches: 31-May-2009 Message-ID: commit 749fe7bfb867228dcff06a7fc5743069f1a636ab Author: Stelian Ionescu Date: Sun May 31 16:50:34 2009 +0200 Fix %ROD-{LEFT,RIGHT}-TRIM, add more tests. src/base/rods.lisp | 17 +++++------------ tests/rods.lisp | 9 +++++++++ 2 files changed, 14 insertions(+), 12 deletions(-) commit 66cbd959edcafb16a00348ae1102a0ac895fd76e Author: Stelian Ionescu Date: Sun May 31 16:23:49 2009 +0200 Remove DYNAMIC-EXTENT declarations. src/streams/zeta/stream.lisp | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-) commit e68175f924250886c1ebf351d8d53bda8448e46e Author: Stelian Ionescu Date: Sun May 31 16:21:30 2009 +0200 Add tests for ROD-TRIM, ROD-LEFT-TRIM and ROD-RIGHT-TRIM. src/base/rods.lisp | 31 +++++++++++++-------------- tests/rods.lisp | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+), 16 deletions(-) commit 4f561b543335ce7df67604ec80b26961a62ee881 Author: Stelian Ionescu Date: Sun May 31 16:01:00 2009 +0200 Cosmetic change. tests/rods.lisp | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) commit ef8172b7dd8253e1b87bfecc9c4e5db9e5a658c3 Author: Stelian Ionescu Date: Sun May 31 15:51:50 2009 +0200 Add tests for [N]ROD-UPCASE, [N]ROD-DOWNCASE and [N]ROD-CAPITALIZE. tests/rods.lisp | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 90 insertions(+), 0 deletions(-) An updated tarball of IOLib's source can be downloaded here: http://common-lisp.net/project/iolib/files/snapshots/iolib-20090531.tar.gz Gitweb URL: http://repo.or.cz/w/iolib.git From tcr at freebits.de Mon Jun 1 16:00:26 2009 From: tcr at freebits.de (Tobias C. Rittweiler) Date: Mon, 01 Jun 2009 18:00:26 +0200 Subject: [iolib-devel] Rename RUNE to UCHAR, and ROD to USTRING Message-ID: <87iqjg6j1h.fsf@freebits.de> The patch does not rename the file names. -T. -------------- next part -------------- A non-text attachment was scrubbed... Name: renaming-runes-and-rods.diff Type: text/x-diff Size: 70850 bytes Desc: not available URL: From stelian.ionescu-zeus at poste.it Mon Jun 1 21:16:38 2009 From: stelian.ionescu-zeus at poste.it (Stelian Ionescu) Date: Mon, 01 Jun 2009 23:16:38 +0200 Subject: [iolib-devel] Rename RUNE to UCHAR, and ROD to USTRING In-Reply-To: <87iqjg6j1h.fsf@freebits.de> References: <87iqjg6j1h.fsf@freebits.de> Message-ID: <1243890998.376.0.camel@blackhole.universe.org> On Mon, 2009-06-01 at 18:00 +0200, Tobias C. Rittweiler wrote: > The patch does not rename the file names. I did that too. Thanks for the patch :) -- Stelian Ionescu a.k.a. fe[nl]ix Quidquid latine dictum sit, altum videtur. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: This is a digitally signed message part URL: From sionescu at common-lisp.net Tue Jun 2 09:00:07 2009 From: sionescu at common-lisp.net (Stelian Ionescu) Date: Tue, 02 Jun 2009 05:00:07 -0400 Subject: [iolib-devel] New patches: 1-Jun-2009 Message-ID: commit a78ad657dd41d50c91fecd87e62b7c12775899ae Author: Stelian Ionescu Date: Mon Jun 1 22:56:52 2009 +0200 More acknowledgements. CHANGES | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) commit 9d51f42ec6e80c400a24887e6df5aaa00bbdece9 Author: Stelian Ionescu Date: Mon Jun 1 22:52:34 2009 +0200 Rename RUNES to UCHARS and RODS to USTRINGS. src/base/pkgdcl.lisp | 44 ++-- src/base/rods.lisp | 226 ----------------- src/base/runes.lisp | 149 ------------ src/base/uchars.lisp | 149 ++++++++++++ src/base/ustrings.lisp | 227 ++++++++++++++++++ src/iolib.base.asd | 4 +- tests/defsuites.lisp | 4 +- tests/iolib-tests.asd | 4 +- tests/rods.lisp | 624 ------------------------------------------------ tests/runes.lisp | 488 ------------------------------------- tests/uchars.lisp | 488 +++++++++++++++++++++++++++++++++++++ tests/ustrings.lisp | 624 ++++++++++++++++++++++++++++++++++++++++++++++++ 12 files changed, 1516 insertions(+), 1515 deletions(-) commit 0c463f483be4ca7860c217ba0085b67d8b99d973 Author: Stelian Ionescu Date: Mon Jun 1 22:28:01 2009 +0200 Better restart names in %RECEIVE-FROM and %SEND-TO. src/sockets/socket-methods.lisp | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) commit 592c89de74d13019227f4dc2b552ad8363106faa Author: Stelian Ionescu Date: Mon Jun 1 22:27:05 2009 +0200 Add timeout to socket echo tests. tests/sockets.lisp | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) An updated tarball of IOLib's source can be downloaded here: http://common-lisp.net/project/iolib/files/snapshots/iolib-20090601.tar.gz Gitweb URL: http://repo.or.cz/w/iolib.git From sionescu at common-lisp.net Wed Jun 3 09:00:12 2009 From: sionescu at common-lisp.net (Stelian Ionescu) Date: Wed, 03 Jun 2009 05:00:12 -0400 Subject: [iolib-devel] New patches: 2-Jun-2009 Message-ID: commit f148e57e20e217e59af2034a7b73874793601adf Author: Stelian Ionescu Date: Wed Jun 3 01:23:16 2009 +0200 Cosmetic change. src/base/uchars.lisp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit 8dddab547b7227a215a4aae6c6d949a9252ef1ca Author: Stelian Ionescu Date: Wed Jun 3 01:21:50 2009 +0200 Fix dependency of types.lisp src/iolib.base.asd | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 789b180c9b9b3f56c6aca02e0076c48c3cea24ed Author: Stelian Ionescu Date: Wed Jun 3 01:12:19 2009 +0200 Add types UCHAR-DESIGNATOR and USTRING-DESIGNATOR. src/base/pkgdcl.lisp | 2 ++ src/base/uchars.lisp | 6 ++++++ 2 files changed, 8 insertions(+), 0 deletions(-) commit f032b9a177e5c5a6a8b1358b5714ff5bcdc9afda Author: Stelian Ionescu Date: Wed Jun 3 01:11:53 2009 +0200 Use CHARACTER-DESIGNATOR and STRING-DESIGNATOR. src/base/uchars.lisp | 4 +--- src/base/ustrings.lisp | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) commit da0cd80fff63160020375b33d9bd2e16a431c2f9 Author: Stelian Ionescu Date: Wed Jun 3 01:10:33 2009 +0200 Better CHARACTER-DESIGNATOR. src/base/types.lisp | 15 ++++++--------- 1 files changed, 6 insertions(+), 9 deletions(-) commit 59252a3fa9d0655637abb06a73d0e0328612a984 Author: Stelian Ionescu Date: Wed Jun 3 00:59:42 2009 +0200 Add type STRING-DESIGNATOR to base package. src/base/pkgdcl.lisp | 1 + src/base/types.lisp | 3 +++ 2 files changed, 4 insertions(+), 0 deletions(-) commit b44a9e0652530d007db954acb7b16c15212864b0 Author: Stelian Ionescu Date: Wed Jun 3 00:58:41 2009 +0200 Add type CHARACTER-DESIGNATOR to base package. src/base/pkgdcl.lisp | 1 + src/base/types.lisp | 12 ++++++++++++ 2 files changed, 13 insertions(+), 0 deletions(-) commit a66c6d98fbf1360daa1c6e868529ec26a7f6fcba Author: Stelian Ionescu Date: Wed Jun 3 00:42:16 2009 +0200 Better DIGIT-UCHAR. src/base/uchars.lisp | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) An updated tarball of IOLib's source can be downloaded here: http://common-lisp.net/project/iolib/files/snapshots/iolib-20090602.tar.gz Gitweb URL: http://repo.or.cz/w/iolib.git From sionescu at common-lisp.net Sat Jun 27 09:00:25 2009 From: sionescu at common-lisp.net (Stelian Ionescu) Date: Sat, 27 Jun 2009 05:00:25 -0400 Subject: [iolib-devel] New patches: 26-Jun-2009 Message-ID: commit 07de61f2c91d07a4e24d7642cb4d5c6a0953af4c Author: Stelian Ionescu Date: Fri Jun 26 19:09:38 2009 +0200 Improvements to #/ reader. src/base/pkgdcl.lisp | 5 ++--- src/base/reader.lisp | 29 ++++++++++++++--------------- 2 files changed, 16 insertions(+), 18 deletions(-) commit 265df6202cddbd73214d178941aab445d38b0377 Author: Stelian Ionescu Date: Fri Jun 26 18:15:48 2009 +0200 Modify literal IP reader and printer to use #/ip/. src/sockets/address.lisp | 10 +++------- src/sockets/pkgdcl.lisp | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) commit 85c04ecb8075dad2d0eea16c285b7e577116e5e6 Author: Stelian Ionescu Date: Fri Jun 26 18:14:34 2009 +0200 Add literal object dispatcher using #/. src/base/pkgdcl.lisp | 3 +++ src/base/reader.lisp | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+), 0 deletions(-) An updated tarball of IOLib's source can be downloaded here: http://common-lisp.net/project/iolib/files/snapshots/iolib-20090626.tar.gz Gitweb URL: http://repo.or.cz/w/iolib.git