Re: [Chicken-users] an ode to Spiffy

2005-05-26 Thread Mario Domenech Goulart
On Thu, 26 May 2005 11:35:16 +0200 felix winkelmann [EMAIL PROTECTED] wrote: On 5/26/05, Peter Busser [EMAIL PROTECTED] wrote: BTW, while talking about SXML, has anyone looked at getting LAML to work on Chicken? (http://www.cs.auc.dk/~normark/laml/) I have started once but lost interest.

[Chicken-users] Documentation system?

2005-07-04 Thread Mario Domenech Goulart
Hello Is there some documentation system for chicken? I mean something that you can use from the interpreter. I couldn't find any, so I made a simple parser to the chicken.texi file which generates the documentation in a way that can be easily used by an extension from the interpreter. I've

Re: [Chicken-users] Documentation system?

2005-07-14 Thread Mario Domenech Goulart
On Wed, 13 Jul 2005 23:23:17 +0200 felix winkelmann [EMAIL PROTECTED] wrote: On 7/5/05, Mario Domenech Goulart [EMAIL PROTECTED] wrote: Is there some documentation system for chicken? I mean something that you can use from the interpreter. I couldn't find any, so I made a simple parser

[Chicken-users] Strange hash-table behavior in compiled code

2005-09-25 Thread Mario Domenech Goulart
Hello I'm confused about the behavior of hash tables in compiled code. $ cat ht.scm (let ((ht (make-hash-table string=?))) (hash-table-set! ht a b) (print (hash-table-ref ht a))) $ csi -script ht.scm b $ csc -s ht.scm $ csi -n ___ _ __ / ___/ / (_)___/ /_

Re: [Chicken-users] Strange hash-table behavior in compiled code

2005-09-25 Thread Mario Domenech Goulart
On Sun, 25 Sep 2005 14:38:50 + Mario Domenech Goulart [EMAIL PROTECTED] wrote: I'm confused about the behavior of hash tables in compiled code. $ cat ht.scm (let ((ht (make-hash-table string=?))) (hash-table-set! ht a b) (print (hash-table-ref ht a))) $ csi -script ht.scm b

Re: [Chicken-users] Strange hash-table behavior in compiled code

2005-09-26 Thread Mario Domenech Goulart
Hello Alex, Felix and list On Mon, 26 Sep 2005 07:51:43 +0200 felix winkelmann [EMAIL PROTECTED] wrote: On 9/26/05, Alex Shinn [EMAIL PROTECTED] wrote: At Sun, 25 Sep 2005 14:38:50 +, Mario Domenech Goulart wrote: I'm confused about the behavior of hash tables in compiled code

Re: [Chicken-users] Chicken mode for Emacs?

2005-12-05 Thread Mario Domenech Goulart
Hello Ralph On Mon, 5 Dec 2005 11:35:42 +0200 Ralph Moritz [EMAIL PROTECTED] wrote: is there an Emacs mode available that will run csi as an inferior Emacs process (preferably with syntax highlighting)? Starting csi from eshell isn't so cool... I use Neil's Quack

[Chicken-users] length performance

2006-01-04 Thread Mario Domenech Goulart
Hello I've noticed that the performance of the length function is a bit low for medium/large lists. As far as I understand (from runtime.c C_i_length), Chicken counts the elements from the given list everytime length is invoked. Is it like that? If so, wouldn't it be better to have a list

Re: [Chicken-users] length performance

2006-01-05 Thread Mario Domenech Goulart
Hello, On Thu, 5 Jan 2006 03:07:16 -0600 Zbigniew [EMAIL PROTECTED] wrote: Additionally, it would become infeasible to splice a pair into or out of the list [an O(1) operation], given only a pointer into the middle of the list, because you cannot update the counts of earlier list elements.

Re: [Chicken-users] issue with web-scheme.egg

2006-01-21 Thread Mario Domenech Goulart
Hello Ashish, On Sat, 21 Jan 2006 21:17:33 + Ashish Shrestha [EMAIL PROTECTED] wrote: First of all thank you to all those who have contributed to make this a wonderful implementation. I am learning scheme was looking for an implementation that would work on Linux (my server),

Re: [Chicken-users] Re: objc egg v0.4

2006-01-28 Thread Mario Domenech Goulart
Hello Kon and folks On Fri, 27 Jan 2006 08:00:13 -0800 Kon Lovett [EMAIL PROTECTED] wrote: I like the separation of commit post. So far I all my commits could be posted but the option is nice. Am I alone in this? I'd feel safer if the publishing of egg updates could be triggered by something

Re: [Chicken-users] Powered by Spiffy/Scheme logo?

2006-03-10 Thread Mario Domenech Goulart
On Sun, 05 Mar 2006 12:27:45 +0900 Daishi Kato [EMAIL PROTECTED] wrote: At Sat, 4 Mar 2006 22:13:50 +0100, Peter Busser wrote: I'm far from being a graphics designer, but I've got an idea that maybe fits to the context. If someone likes it, maybe he/she can improve the logo (I couldn't

Re: [Chicken-users] Powered by Spiffy/Scheme logo?

2006-03-10 Thread Mario Domenech Goulart
On Fri, 24 Feb 2006 07:28:36 +0100 felix winkelmann [EMAIL PROTECTED] wrote: On 2/22/06, Peter Busser [EMAIL PROTECTED] wrote: Hi! Just wondering: Is there a ``Powered by Spiffy'' and/or ``Powered by Scheme'' logo somewhere? I only know of various powered by lisp logos :

Re: [Chicken-users] Powered by Spiffy/Scheme logo?

2006-03-10 Thread Mario Domenech Goulart
Hello John, On Fri, 10 Mar 2006 16:31:10 -0500 John Cowan [EMAIL PROTECTED] wrote: Mario Domenech Goulart scripsit: Thanks to all of you for your kind comments. Attached you can find some more attempts, which may (or may not :-)) look better. But I'm afraid I'm at the limit of my skills

Re: Wiki, [was: Re: [Chicken-users] Powered by Spiffy/Scheme logo?]

2006-03-12 Thread Mario Domenech Goulart
On Sat, 11 Mar 2006 22:54:10 +0100 felix winkelmann [EMAIL PROTECTED] wrote: On 3/10/06, Mario Domenech Goulart [EMAIL PROTECTED] wrote: Thanks to all of you for your kind comments. Attached you can find some more attempts, which may (or may not :-)) look better. But I'm afraid I'm

[Chicken-users] Re: https

2006-03-24 Thread Mario Domenech Goulart
Hello Daishi Daishi Kato wrote: Is anyone interested in supporting SSL in the http egg? How stable and usable is the openssl egg? I'm very interested in this feature. I'm afraid I don't know enough about the http egg implementation to dare to implement SSL support. But, still, as a user,

Re: [Chicken-users] Compiler or interpreter?

2006-03-27 Thread Mario Domenech Goulart
Hello John, On Mon, 27 Mar 2006 17:14:15 -0500 John Cowan [EMAIL PROTECTED] wrote: Is there a procedure that can be invoked to tell a program whether it is running in the interpreter or as compiled code? I don't know if there is a specific procedure which does that, but a plain

[Chicken-users] `remote-function' at ajax egg documentation

2006-05-08 Thread Mario Domenech Goulart
Hello, The documentation for the `remote-link' procedure mentions `remote-function': ,[ http://www.call-with-current-continuation.org/eggs/ajax.html ] | procedure: (remote-link TEXT THUNK KEYWORD-ARGUMENTS ...) | | Returns HTML or SHTML for a link (a) that will invoke THUNK when |

Re: [Chicken-users] OS X binary

2006-05-15 Thread Mario Domenech Goulart
Hello, On Mon, 15 May 2006 09:21:56 -0500 Alex Shinn [EMAIL PROTECTED] wrote: At Mon, 15 May 2006 08:53:14 +0200, felix winkelmann wrote: I've put together a binary of chicken 2.311. Since this is the first time I use PackageMaker, I'd be delighted if someone could verify that the

Re: [Chicken-users] generating chicken.pdf

2006-05-15 Thread Mario Domenech Goulart
Boucher, Terence Brannon, Roy Bryant, Adam Buchbinder, Hans Bulfone, Category 5, Taylor Campbell, Franklin Chen, Thomas Chust, Gian Paolo Ciceri, @@ -12806,7 +12806,7 @@ Tony Garnock-Jones, Martin Gasbichler, Joey Gibson, Johannes [EMAIL PROTECTED], Damian Gryski, Mario Domenech Goulart

Re: [Chicken-users] development snapshot (2.315) available

2006-06-05 Thread Mario Domenech Goulart
On Mon, 5 Jun 2006 00:06:35 +0200 felix winkelmann [EMAIL PROTECTED] wrote: I'd like to fix a new release (2.4) in the next time, so I'd be grateful, if someone would give the snapshot a try. In particular some changes in the build-scripts might cause problems, as I'm well known to do silly

Re: [Chicken-users] darcs errors

2006-06-14 Thread Mario Domenech Goulart
On Wed, 14 Jun 2006 01:41:48 -0700 Brandon J. Van Every [EMAIL PROTECTED] wrote: I'm getting errors when trying to pull from darcs. I am able to see the internet, web pages, e-mail, and log into galinha via putty, so it's less likely to be a problem on my end. Oops. Sorry. We are

Re: [Chicken-users] Darcs pull from galinha...?

2006-06-19 Thread Mario Domenech Goulart
Hello Kon, On Mon, 19 Jun 2006 06:25:20 -0700 Kon Lovett [EMAIL PROTECTED] wrote: Has something chgd w/ the repository that rqrs intervention on my side? Yes, some things have changed, but they should not require your intervention. Can you please pull using port 8081, which is the port

Re: [Chicken-users] Darcs pull from galinha...?

2006-06-24 Thread Mario Domenech Goulart
Hello Adam, On Sat, 24 Jun 2006 14:07:46 -0400 [EMAIL PROTECTED] (Adam C. Emerson) wrote: When darcs accesses a repository, it checks for a _darcs/format file; nonexistence is the normal case. The problem seems to come from the Wiki software returning a file as found, but containing text

[Chicken-users] Strange `read-line' behaviour on Linux PPC

2006-08-07 Thread Mario Domenech Goulart
Hello, I'm facing a problem using `read-line' on Linux PPC. $ csi -n ___| |_) | | __ \ | __| | / _ \ __ \ | | | | | ( __/ | | \|_| |_|_|\___|_|\_\\___|_| _| Version 2, Build 41 - linux-unix-gnu-unknown - [ dload ptables applyhook ] (c)2000-2006 Felix L.

Re: [Chicken-users] RFC: documentation lookup utility

2006-08-14 Thread Mario Domenech Goulart
Hello Toby, On Sat, 12 Aug 2006 20:52:05 -0400 Toby Butzon [EMAIL PROTECTED] wrote: On Sat, Aug 12, 2006 at 08:59:19PM -0700, Brandon J. Van Every wrote: Typing a word into a URL is not really the kind of documentation I want. I want to click on a word in the editor I'm using and be taken

[Chicken-users] Doubts about the postgresql egg

2006-08-24 Thread Mario Domenech Goulart
Hello, I'm trying to use the postgres egg and I have some doubts about how to use it. A basic (maybe silly) question: if I just want to perform an `insert', `create table' or something that doesn't return data from tables, do I have to use something like: (pg:query-for-each (lambda (_) _)

Re: [Chicken-users] wiki spam

2006-08-28 Thread Mario Domenech Goulart
Hello Hans, On Mon, 28 Aug 2006 17:27:10 +0200 Hans Bulfone [EMAIL PROTECTED] wrote: it seems that some spammer has found the chicken wiki and has put a lot of order cialis online and other links on it :( Thanks for notifying. I think I could revert most os the vandalism (at least searching

Re: [Chicken-users] Galinha connection refused

2006-09-03 Thread Mario Domenech Goulart
On Sat, 02 Sep 2006 15:21:28 -0700 Brandon J. Van Every [EMAIL PROTECTED] wrote: Generally speaking I have full access to Darcs, but right now it's fritzed. Anyone else having problems? It seems that some galinha services are not active. We had a power outage today and some network

[Chicken-users] Re: srfi-19 egg w/ Brazilian Portuguese

2006-09-06 Thread Mario Domenech Goulart
Hello Kon, On Wed, 6 Sep 2006 01:02:51 -0700 Kon Lovett [EMAIL PROTECTED] wrote: Fixed. The problem was in srfi-29. However, you will also need the latest srfi-19. It was an issue w/ the handling of locale-details (which were supposed to be ignored, but weren't - now it will work reasonably

Re: [Chicken-users] Bizarre chicken build/segfault problem

2006-09-11 Thread Mario Domenech Goulart
On Mon, 11 Sep 2006 20:00:16 +0200 Peter Bex [EMAIL PROTECTED] wrote: The reason I'm posting here is that there is one thing that baffles me: When running a backtrace with GDB, it tells me the error occurs in a function in lookup-table.c. But I can't find this file (or lookup-table.scm)

Re: [Chicken-users] Custom repository (for chicken .so files)

2006-09-15 Thread Mario Domenech Goulart
On Fri, 15 Sep 2006 15:46:09 +0200 felix winkelmann [EMAIL PROTECTED] wrote: On 9/15/06, Sridhar Ratna [EMAIL PROTECTED] wrote: hi! It seems like there isn't an obvious way to override the .so files for chicken eggs repository. I would like to install 'eggs' using chicken-setup, but

Re: [Chicken-users] Release candidate for 2.5 available

2006-10-04 Thread Mario Domenech Goulart
Hello, On Wed, 4 Oct 2006 10:34:29 +0200 felix winkelmann [EMAIL PROTECTED] wrote: Please give it a try. I could successfully build (using the configure script) and run the benchmarks on the following platforms (all of them running GNU/Linux): - x86_64 - x86 - PPC PS: I had to manually

Re: [Chicken-users] dynamic web resources?

2006-10-17 Thread Mario Domenech Goulart
Hello Andreas, On Tue, 17 Oct 2006 08:58:00 +0200 Andreas Zwinkau [EMAIL PROTECTED] wrote: In the file attached to the message pointed by the link above, you can find the code to map a part of an URL to a Scheme procedure name. To achieve that, the http-server's `http:find-resource'

Re: [Chicken-users] dynamic web resources?

2006-10-17 Thread Mario Domenech Goulart
Hello Andreas, On Tue, 17 Oct 2006 20:16:21 +0200 Andreas Zwinkau [EMAIL PROTECTED] wrote: I'm not sure I understand. What do you mean variables in this context? Uh, sorry. I was talking about arguments. How does your define-callable-url react on /add, /add/1 and /add/1/2? For summation

Re: [Chicken-users] readline: history, empty lines, duplicate lines

2006-10-20 Thread Mario Domenech Goulart
Hello Dan, On Thu, 19 Oct 2006 23:55:22 -0700 (PDT) Dan [EMAIL PROTECTED] wrote: Is anyone using the readline egg? I use it quite frequently when I want to quickly test something simple. Another useful thing would be not to save duplicate lines, but it requires marginally more work than

Re: [Chicken-users] Announcement: http-server-form-posts egg

2006-11-06 Thread Mario Domenech Goulart
Hello Moe, On Sun, 5 Nov 2006 23:10:07 +0200 Moe Aboulkheir [EMAIL PROTECTED] wrote: The first release of the http-server-form-posts egg is available! This egg extends the HTTP server included in the http egg to parse multipart/form-data POSTs, and exposes some functions for inspecting the

Re: [Chicken-users] chicken scheme on handhelds

2006-11-08 Thread Mario Domenech Goulart
Hello John, On Wed, 8 Nov 2006 13:53:46 + john [EMAIL PROTECTED] wrote: I know there are one or two people out there playing around with Chicken on handheld devices like the Sharp Zaurus, Nokia 770 etc. Anyway, I have created a group on orkut (orkut.com) dedicated to this topic. If you

Re: [Chicken-users] Re: Manuals on the wiki

2006-11-16 Thread Mario Domenech Goulart
On Thu, 16 Nov 2006 15:33:14 +0100 felix winkelmann [EMAIL PROTECTED] wrote: On 16 Nov 2006 15:10:34 +0100, Thomas Hafner [EMAIL PROTECTED] wrote: felix winkelmann [EMAIL PROTECTED] wrote/schrieb [EMAIL PROTECTED]: On 11/14/06, Toby Butzon [EMAIL PROTECTED] wrote:

[Chicken-users] PDF User's Manual

2006-11-27 Thread Mario Domenech Goulart
Hello, I've made a quick script (attached) to convert the wiki User's Manual to PDF, since the chicken.pdf file available at call/cc.org is a bit outdated. The script uses the stream-wiki egg to convert the wiki format to HTML then htmldoc (http://www.htmldoc.org), an external application, to

Re: [Chicken-users] postgresql update

2006-11-29 Thread Mario Domenech Goulart
On Wed, 29 Nov 2006 15:41:36 +0100 felix winkelmann [EMAIL PROTECTED] wrote: A user reported a problem with the postgresql egg that was caused by an old-style usage of foreign-parse. I have updated the egg (2.0.10), but can't try it, since I have no postgresql installed. Could someone try

Re: [Chicken-users] Darcs hangs?

2006-11-30 Thread Mario Domenech Goulart
On 29 Nov 2006 13:31:17 +0100 Thomas Hafner [EMAIL PROTECTED] wrote: in the Darcs FAQ I've found this question: Q: When I try to push/pull/apply, darcs just hangs... why? Has that already happened when managing Chicken source code? Coincidently, it's happening to me right now. It's been

Re: [Chicken-users] Darcs hangs?

2006-11-30 Thread Mario Domenech Goulart
On Thu, 30 Nov 2006 15:25:17 -0800 Brandon J. Van Every [EMAIL PROTECTED] wrote: Mario Domenech Goulart wrote: On 29 Nov 2006 13:31:17 +0100 Thomas Hafner [EMAIL PROTECTED] wrote: in the Darcs FAQ I've found this question: Q: When I try to push/pull/apply, darcs just hangs... why

Re: [Chicken-users] stream-wiki and eggs

2006-12-07 Thread Mario Domenech Goulart
On Thu, 7 Dec 2006 11:55:55 -0600 Zbigniew [EMAIL PROTECTED] wrote: I also wonder if the wiki syntax should be extended to add basic stuff like 'function syntax' and 'variable' and so on--things that are present in texi and eggdoc and would add semantic value. That would also make possible

Re: [Chicken-users] New user; egg problems

2006-12-07 Thread Mario Domenech Goulart
Hello Ivan, On Thu, 07 Dec 2006 13:04:57 -0500 Ivan Raikov [EMAIL PROTECTED] wrote: I think even the most simple kind of Chicken/egg versioning would go a long way. For example, I can build easyffi and use it in Chicken 2.3 if I simply remove the -G option. So if chicken-setup supported

Re: [Chicken-users] Announcement: http-server-form-posts egg

2006-12-18 Thread Mario Domenech Goulart
Hello, On Tue, 7 Nov 2006 07:30:53 +0100 felix winkelmann [EMAIL PROTECTED] wrote: On 11/7/06, Moe Aboulkheir [EMAIL PROTECTED] wrote: Looking at the headers alist, it seems the client sent Connection: Keep-alive. I am guessing that you would get the same terminal output (... kept alive

Re: [Chicken-users] Spiffy Webserver

2006-12-26 Thread Mario Domenech Goulart
Hello Jeremy, On Sat, 23 Dec 2006 01:52:04 -0500 Jeremy Cowgar [EMAIL PROTECTED] wrote: Anyone have some example sites run w/Spiffy? How robust is Spiffy? I have a site that is currently handling ~ 2.5 million hits/mo, or on average 51 a second. It's currently backed by MySQL and is using

Re: [Chicken-users] wishlist: http egg

2006-12-28 Thread Mario Domenech Goulart
On Tue, 26 Dec 2006 22:51:32 +0900 Daishi Kato [EMAIL PROTECTED] wrote: Thanks, I'll fix that. What are you using this for, out of curiosity? Oh, it's simply to upload a file to a web server, but I'm not using spiffy. I'm afraid using http-server-form-posts without the http egg is a bit

Re: [Chicken-users] Implementing CL-style array literal syntax

2007-01-08 Thread Mario Domenech Goulart
Hello Kon and folks, On Fri, 5 Jan 2007 08:40:02 -0800 Kon Lovett [EMAIL PROTECTED] wrote: On Jan 5, 2007, at 4:44 AM, felix winkelmann wrote: What I'd like to see is a new set-parameterized-read-syntax procedure which takes a character c and allows the reader to accept input of the

Re: [Chicken-users] 256th egg: sqlora by Graham Fawcett

2007-01-10 Thread Mario Domenech Goulart
On Wed, 10 Jan 2007 18:31:10 +0100 felix winkelmann [EMAIL PROTECTED] wrote: On 1/10/07, John Cowan [EMAIL PROTECTED] wrote: felix winkelmann scripsit: Hi! Graham Fawcett has submitted the 256th egg: http://chicken.wiki.br/sqlora Does this mean the egg list is closed? Or

[Chicken-users] csi scripts

2007-01-11 Thread Mario Domenech Goulart
Hello, At http://chicken.wiki.br/writing%20portable%20scripts we have a section called Writing portable scripts with env whose instructions doesn't seem to be very portable. At least it doesn't work on my system: $ ./s.scm /usr/bin/env: csi -s: No such file or directory $ cat s.scm #!

Re: [Chicken-users] qt-egg on windows

2007-01-19 Thread Mario Domenech Goulart
On Fri, 19 Jan 2007 16:41:59 -0800 Brandon J. Van Every [EMAIL PROTECTED] wrote: Daniel Sadilek wrote: So, the build of the qt egg under windows does not work out of the box. I would like to help with that but I am not skilled enough in this whole qmake, egg building process to provide

Re: [Chicken-users] idiomatic/usual way of file-based configuration in Scheme

2007-02-06 Thread Mario Domenech Goulart
Hello Thu, On Tue, 6 Feb 2007 10:52:36 +0100 minh thu [EMAIL PROTECTED] wrote: I was wondering if there was something like Java's properties files that is commonly used in Scheme. (The reference to Java is because I learned it, not because I like it :) It would just amount to read a list

[Chicken-users] salmonella

2007-02-10 Thread Mario Domenech Goulart
Hello folks, I've added a small tool called salmonella to the svn repository (http://chicken.wiki.br/svn/chicken-eggs/salmonella/). It's a program for testing the installation of eggs. The snv repo contains a brief document describing its features and usage instructions. Best wishes, Mario

Re: [Chicken-users] cool 3d logo by Joshua Griffith

2007-02-13 Thread Mario Domenech Goulart
Hi Alex, On Tue, 13 Feb 2007 09:29:17 -0300 Alex Queiroz [EMAIL PROTECTED] wrote: On 2/12/07, felix winkelmann [EMAIL PROTECTED] wrote: (I've added it to our logos page at http://chicken.wiki.br/logos - unfortunately svnwiki doesn't like me today, so I don't know whether they appear or

Re: [Chicken-users] cool 3d logo by Joshua Griffith

2007-02-13 Thread Mario Domenech Goulart
On Tue, 13 Feb 2007 10:03:37 -0300 Alex Queiroz [EMAIL PROTECTED] wrote: On 13 Feb 2007 10:50:55 -0200, Mario Domenech Goulart [EMAIL PROTECTED] wrote: I don't know exactly what Page Index is, but my guess is that you want an index of all wiki pages. In this case, you can always get

[Chicken-users] Experimental Chicken LiveCD

2007-02-14 Thread Mario Domenech Goulart
Hello folks, I've put at http://g3pd.ufpel.tche.br/chicken/ a first attempt to create a Chicken LiveCD. It's based on Knoppix. Currently there's not a lot of things. I've just removed some packages from the Knoppix CD (to free some space) and added Chicken related stuff. The LiveCD contains

Re: [Chicken-users] Experimental Chicken LiveCD

2007-02-14 Thread Mario Domenech Goulart
Hi Joshua, On Wed, 14 Feb 2007 18:03:30 -0600 Joshua Griffith [EMAIL PROTECTED] wrote: Let me know if you want me to make any changes or to render a higher resolution version of the ``weird 3d chicken'' to better fit a desktop aspect ratio :) If you could make a figure to be properly

[Chicken-users] libffi cmake

2007-02-20 Thread Mario Domenech Goulart
Hello, I'm trying to build Chicken using cmake under GNU/Linux. I can't find a way to enable/disable the compilation with/without libffi. What I get is (from chicken-2.522): $ ccmake . Page 1 of 1 BUILD_TESTINGON

Re: [Chicken-users] libffi cmake

2007-02-20 Thread Mario Domenech Goulart
Hi Brandon, On Tue, 20 Feb 2007 11:58:58 -0800 Brandon J. Van Every [EMAIL PROTECTED] wrote: Mario Domenech Goulart wrote: I'm trying to build Chicken using cmake under GNU/Linux. I can't find a way to enable/disable the compilation with/without libffi. There is no such option

Re: [Chicken-users] new development snapshot

2007-02-20 Thread Mario Domenech Goulart
Hi Felix, On Tue, 20 Feb 2007 09:04:36 +0100 felix winkelmann [EMAIL PROTECTED] wrote: A new development-snapshot (2.522) is now available at the chicken website. Thanks for one more release! I could successfully compile it and run the benchmarks on the following platforms (all GNU/Linux

Re: [Chicken-users] Release candidate for 2.6 available

2007-02-26 Thread Mario Domenech Goulart
Hi Felix and folks, On Mon, 26 Feb 2007 09:12:58 +0100 felix winkelmann [EMAIL PROTECTED] wrote: A release canditate for CHICKEN 2.6 is now available at the web-site. If you find the time, please give it a try. I could build, install and run the benchmarks on the following systems: OS

Re: [Chicken-users] bb.egg problem

2007-02-28 Thread Mario Domenech Goulart
Hi Nico, On Wed, 28 Feb 2007 14:57:41 +0100 Nico Amtsberg [EMAIL PROTECTED] wrote: I figured out a problem using the bb.egg. The code given below fails under the following circumstances: holding the space key to toggle the first button continously gives the following error after an amount of

Re: [Chicken-users] chicken 2.6 released

2007-03-02 Thread Mario Domenech Goulart
Hi Felix and folks, On Fri, 2 Mar 2007 08:29:57 +0100 felix winkelmann [EMAIL PROTECTED] wrote: The CHICKEN Scheme-to-C compiler, Version 2.6 is now available at http://www.call-with-current-continuation.org. Thanks for one more major release! I could build install and run the benchmarks (*)

Re: [Chicken-users] Experimental Chicken LiveCD

2007-03-03 Thread Mario Domenech Goulart
Hi Joshua, On Sat, 3 Mar 2007 03:48:21 -0600 Joshua Griffith [EMAIL PROTECTED] wrote: Here's an image more appropriate for a desktop background: http://www.joshuagriffith.com/chicken/chicken-desktop.png Amazing! Very nice! Sorry for the delay, but given the polygon count, it took awhile...

Re: [Chicken-users] SSL certificate on galinha is for localhost?

2007-03-06 Thread Mario Domenech Goulart
Hi Shawn, On Tue, 6 Mar 2007 10:03:04 -0700 Shawn Rutledge [EMAIL PROTECTED] wrote: I assume this is a known problem, but I didn't see any recent messages about it. Yes, it is. When doing an svn co I see this message: Error validating server certificate for

[Chicken-users] Return value of `system'

2007-03-14 Thread Mario Domenech Goulart
Hi folks, On the systems I've tried (GNU/Linux), `system' returns the exit status of the process it runs. The documentation says: ,[ http://chicken.wiki.br/Unit%20library#system ] | [procedure] (system STRING) | | Execute shell command. The functionality offered by this procedure | depends

[Chicken-users] Chicken LiveCD 0.2

2007-04-13 Thread Mario Domenech Goulart
Hi folks, Chicken LiveCD 0.2 is available at http://g3pd.ufpel.tche.br/chicken. This version contains chicken-2.608, lots of eggs, some pre-configured software for Scheme programming (Emacs CVS GTK + Quack mode) and, of course, Joshua Griffith's desktop background image

Re: [Chicken-users] Vim mode for .ssp files

2007-04-17 Thread Mario Domenech Goulart
Hi Alex, On Tue, 17 Apr 2007 15:07:48 -0300 Alex Queiroz [EMAIL PROTECTED] wrote: Attached is a quick-hacked vim syntax file for editing scheme server pages. Dunno if it's useful for anybody, but since it's so small... Thanks for your contribution. I've added it to the wiki:

Re: [Chicken-users] reinstall all eggs

2007-04-20 Thread Mario Domenech Goulart
Hi folks, On Fri, 20 Apr 2007 09:27:30 +0200 felix winkelmann [EMAIL PROTECTED] wrote: On 4/19/07, Andre Kuehne [EMAIL PROTECTED] wrote: A reinstall of all eggs could then be done like this: 1) get the list of all installed eggs 2) write the list to a file 3) remove/uninstall all

Re: [Chicken-users] reinstall all eggs

2007-04-20 Thread Mario Domenech Goulart
On Fri, 20 Apr 2007 22:59:56 +0900 Alex Shinn [EMAIL PROTECTED] wrote: Ah, OK. For this you could use the second command, and instead of listing the uninstalled eggs (comm -1 -3 = set difference), list the installed eggs (comm -1 -2 = set intersection): $ chicken-setup -fetch-tree | grep

Re: [Chicken-users] Spiffy bug

2007-04-21 Thread Mario Domenech Goulart
Hi John, On Sat, 21 Apr 2007 19:03:00 +0800 John Janecek [EMAIL PROTECTED] wrote: if spiffy serves a webpage that has a JS redirect in it. It will get an error unable to write to socket. If the page is served repeatedly eventually the server just locks up. Can you show us the code you are

Re: [Chicken-users] ARM compilation problems

2007-04-22 Thread Mario Domenech Goulart
Hi Shawn, On Sat, 21 Apr 2007 23:28:32 -0700 Shawn Rutledge [EMAIL PROTECTED] wrote: I'm trying to compile chicken 2.6 on my Zaurus with gcc 3.4.4. It gets fairly far along. /bin/sh ./libtool --mode=link gcc -Os -fomit-frame-pointer -fno-strict-aliasing -Wall -Wno-unused

Re: [Chicken-users] Shutting up LOAD

2007-05-06 Thread Mario Domenech Goulart
Hi Peter, On Sun, 6 May 2007 12:50:28 +0200 Peter Bex [EMAIL PROTECTED] wrote: I was wondering if there's a way to shut up LOAD. When it loads a file it always outputs ; loading blah.scm Now, in Spiffy, the handler for web-scheme swallows all output from the application using

[Chicken-users] Chicken Playground

2007-05-06 Thread Mario Domenech Goulart
Hi folks, I've uploaded to http://g3pd.ufpel.edu.br/chicken/playground/ a chrooted environment to test and play with Chicken and its extensions (Chicken Playground). Currently there's one playground, which is a Debian Etch for i386 systems. The environment contains the usual basic tools for

[Chicken-users] z3:encode-buffer hanging

2007-05-08 Thread Mario Domenech Goulart
Hi folks, Maybe I'm misunderstanding the proper usage of z3:encode-buffer, but it seems to hang when I use certain strings as argument. Here are some examples: (use z3 (srfi 1)) ;(z3:encode-buffer ) ; hangs ;(z3:encode-buffer 0) ; hangs ;(z3:encode-buffer 00) ; hangs

[Chicken-users] file-exists? on Windows

2007-05-11 Thread Mario Domenech Goulart
Hi folks, Sorry for the maybe stupid question: is the following expression supposed to return #f on Windows? (file-exists? .\\) (file-exists? (current-directory)) returns the path to the current directory. Under Unix[-like] systems, (file-exists? ./) returns the path to the current

Re: [Chicken-users] file-exists? on Windows

2007-05-14 Thread Mario Domenech Goulart
Hi Kon, Thanks for your answer. Comments bellow. On Mon, 14 May 2007 09:25:52 -0700 Kon Lovett [EMAIL PROTECTED] wrote: On May 11, 2007, at 12:18 PM, Mario Domenech Goulart wrote: Sorry for the maybe stupid question: is the following expression supposed to return #f on Windows

Re: [Chicken-users] file-exists? on Windows

2007-05-14 Thread Mario Domenech Goulart
On Mon, 14 May 2007 14:58:26 -0400 Graham Fawcett [EMAIL PROTECTED] wrote: On 5/14/07, Kon Lovett [EMAIL PROTECTED] wrote: On May 14, 2007, at 11:28 AM, John Cowan wrote: Ah. No. The Win32 kernel does *not* ignore trailing backslashes the way the Unix kernel ignores trailing slashes --

Re: [Chicken-users] file-exists? on Windows

2007-05-14 Thread Mario Domenech Goulart
On Mon, 14 May 2007 17:41:00 -0300 Alex Queiroz [EMAIL PROTECTED] wrote: On 5/14/07, Kon Lovett [EMAIL PROTECTED] wrote: Maybe require Cygwin for Spiffy? I hope this won't be necessary, since it would jeopardize the product I'm about to deploy to a client. As far as I can see,

Re: [Chicken-users] CMake make install bug on Linux (was Mac OS X static library names)

2007-05-16 Thread Mario Domenech Goulart
On Wed, 16 May 2007 16:16:33 -0700 Brandon Van Every [EMAIL PROTECTED] wrote: On 5/16/07, Brandon Van Every [EMAIL PROTECTED] wrote: On 5/16/07, John Cowan [EMAIL PROTECTED] wrote: Brandon Van Every scripsit: Having the 2nd invocation of make install repeat the build from

Re: [Chicken-users] Chicken manual in Texinfo format

2007-05-18 Thread Mario Domenech Goulart
Hi Ivan, On Fri, 18 May 2007 15:47:32 +0900 Ivan Raikov [EMAIL PROTECTED] wrote: Can anyone tell me what it would take to restore ability for building Chicken's manual in Texinfo format? I'm afraid there's not an easy way to do that. The current html parody of a manual is impossible to

Re: [Chicken-users] Chicken manual in Texinfo format

2007-05-19 Thread Mario Domenech Goulart
Hi Ivan, On Sat, 19 May 2007 17:11:46 +0900 Ivan Raikov [EMAIL PROTECTED] wrote: Do you care to elaborate why there is no easy way to do that? Because, as far as I know, we don't have a wiki-texinfo converter. I've quickly searched and found an HTML-texi converter:

Re: [Chicken-users] Chicken manual in Texinfo format

2007-05-19 Thread Mario Domenech Goulart
Hi Adhi, On Sat, 19 May 2007 18:49:57 -0700 (PDT) Adhi Hargo [EMAIL PROTECTED] wrote: Sorry if I don't get the gist of this conversation (I'm new, here, anyway), but isn't converting Chicken's manual to Texinfo format a bit waste of time? Because the way I see it, chicken.pdf isn't really

Re: [Chicken-users] file-exists? on Windows

2007-05-21 Thread Mario Domenech Goulart
Hi Felix, On Sun, 20 May 2007 01:48:26 +0200 felix winkelmann [EMAIL PROTECTED] wrote: Can someone try the newest darcs head (file-exists? just chops the trailing separator for the test). Works fine. Thanks a lot. Maybe the same should be done to `directory?': On windows: (directory?

Re: [Chicken-users] a file system using Chicken

2007-06-06 Thread Mario Domenech Goulart
Hi Dan, On Wed, 06 Jun 2007 22:05:21 +0300 Dan Muresan [EMAIL PROTECTED] wrote: I've released DuggFS, a file system based on Fuse and implemented in Chicken Scheme. A m a z i n g! Very cool idea. :-) I'm facing some problems to compile duggfs: $ ./setup.sh Enter your host name (used for

Re: [Chicken-users] a file system using Chicken

2007-06-11 Thread Mario Domenech Goulart
Hi Dan, On Sun, 10 Jun 2007 02:22:51 +0300 Dan Muresan [EMAIL PROTECTED] wrote: I've updated duggfs to address the compilation errors reported by Felix and Mario. I have taken a different approach by no longer attempting to get fuse/* through SWIG. This loses some functionality, but I

Re: [Chicken-users] anonymously $ svn co an egg

2007-06-19 Thread Mario Domenech Goulart
Hi Ivan, On Tue, 19 Jun 2007 15:48:02 +0700 Ivan Shmakov [EMAIL PROTECTED] wrote: felix winkelmann [EMAIL PROTECTED] writes: How could I get the source of an egg from the SVN repository without an account on the latter? Is it at all possible? svn co

[Chicken-users] New eggs (http-session, nest-tool)

2007-06-19 Thread Mario Domenech Goulart
Hi folks, Some new eggs I'd like to announce: http-session (http://chicken.wiki.br/http-session) http-session is an implementation of facilities for managing HTTP sessions of web applications. nest-tool (http://chicken.wiki.br/nest-tool) The nest-tool egg provides both an

Re: [Chicken-users] args-doc: formatting help messages in a GNU way

2007-06-22 Thread Mario Domenech Goulart
Hi Ivan, On Fri, 22 Jun 2007 10:06:44 +0700 Ivan Shmakov [EMAIL PROTECTED] wrote: (require-extension (srfi 1)) (require-extension (srfi 13)) (require-extension (srfi 14)) (require-extension (srfi 37)) (require-extension (srfi 39)) (require-extension (srfi 95)) You can also use the

[Chicken-users] Automated builds

2007-06-28 Thread Mario Domenech Goulart
Hello folks, At http://chicken.wiki.br/automated-builds you can find results of automated builds of Chicken and eggs that have been running since some days ago. The build process fetches Chicken from darcs head (aka Chicken head), compiles and installs it. Then the freshly built Chicken head is

Re: [Chicken-users] Noob question: (re)compile FFI-accessing code within REPL

2007-07-02 Thread Mario Domenech Goulart
Hi Martin, Thanks for your feedback (about eggs, Windows stuff and Chicken in general). On Mon, 02 Jul 2007 10:12:03 + Martin Percossi [EMAIL PROTECTED] wrote: I've played around with a few eggs, such as csv, readline, man, openal, octave -- and I'm very impressed with the fact that they

Re: [Chicken-users] Noob question: (re)compile FFI-accessing code within REPL

2007-07-02 Thread Mario Domenech Goulart
Hi guys, On Mon, 2 Jul 2007 10:15:15 -0300 Alex Queiroz [EMAIL PROTECTED] wrote: Hallo, On 7/2/07, Martin Percossi [EMAIL PROTECTED] wrote: In that case, I have a few questions regarding your setup: - are you using free compiler tools or MS? I am using MinGW's GCC, binutils,

Re: [Chicken-users] Columnar text display code?

2007-07-05 Thread Mario Domenech Goulart
On Thu, 5 Jul 2007 22:44:35 -0300 Bruno Deferrari [EMAIL PROTECTED] wrote: Maybe the fmt combinator formatting library by Alex Shinn is what you need: http://synthcode.com/scheme/fmt/ Also available as an egg: http://www.call-with-current-continuation.org/eggs/fmt.html Best wishes, Mario

Re: [Chicken-users] Suggestion for new egg: Wings!

2007-07-05 Thread Mario Domenech Goulart
Hi Alaric and folks, On Fri, 6 Jul 2007 01:23:00 +0100 Alaric Snell-Pym [EMAIL PROTECTED] wrote: An arguments declaration might look like this: (positional ((user-id integer)) named ((comment-id c optional integer) (search-terms s optional string)) data-sources ((user

Re: [Chicken-users] Suggestion for new egg: Wings!

2007-07-06 Thread Mario Domenech Goulart
On Fri, 6 Jul 2007 18:40:56 +0100 Alaric Snell-Pym [EMAIL PROTECTED] wrote: Why's http:find-resource need hacking? Because http:find-resource searches for resources using something like equal?. url-dispatcher needs some resource finder which looks for resources from a given pathname -- like

Re: [Chicken-users] Automated builds

2007-07-09 Thread Mario Domenech Goulart
On Mon, 9 Jul 2007 08:54:24 +0200 felix winkelmann [EMAIL PROTECTED] wrote: On 7/3/07, Arto Bendiken [EMAIL PROTECTED] wrote: Perhaps, then, we could use a form like (platforms ...) to indicate that an egg will only build on some specific platforms. One would probably like to refer to

Re: [Chicken-users] openssl problem

2007-07-11 Thread Mario Domenech Goulart
Hi Mark, On Wed, 11 Jul 2007 10:30:08 -0400 (EDT) Mark Voortman [EMAIL PROTECTED] wrote: I just ran into a problem with the openssl egg. If I run the code below and browse to https://localhost/ it shows the certificate and everything, but the page keeps loading. Only when I kill the server

[Chicken-users] Happy birthday, Chicken!

2007-07-19 Thread Mario Domenech Goulart
Hi folks, Today is Chicken's 7th birthday (see http://groups.google.com/group/comp.lang.scheme/msg/edfb2da16fd89fae). Thanks Felix and all the contributors who help Chicken grow. :-) Best wishes, Mario ___ Chicken-users mailing list

[Chicken-users] Atom feeds for salmonella reports

2007-07-20 Thread Mario Domenech Goulart
Hi folks, At http://chicken.wiki.br/automated-builds/atom you can find atom feeds for salmonella reports -- one feed per egg. The feed is [re]generated after each time salmonella runs (daily). It would be nice if egg authors could subscribe to the feeds corresponding to their eggs, so they can

  1   2   3   4   5   6   7   8   9   >