Re: [Chicken-users] egg documentation

2008-02-21 Thread Jim Ursetto
On 2/21/08, Alejandro Forero Cuervo <[EMAIL PROTECTED]> wrote: > So I'll add support for , and . > > Does that sound good to you? Sure. If it's a problem in practice, we can always fix it later. ___ Chicken-users mailing list Chicken-users@nongnu.org

Re: [Chicken-users] aliases in the wiki

2008-02-21 Thread Jim Ursetto
Yes please. Quick procedure lookup is the capability of Info I most miss. A plain index page would also be just as good for my purposes. On 2/21/08, Alejandro Forero Cuervo <[EMAIL PROTECTED]> wrote: > While this will continue to work, I think what I'll do is, once I have > the and similar tags

Re: [Chicken-users] C_truep( C_fixnump( w ))

2008-02-24 Thread Jim Ursetto
On 2/24/08, Heinrich Taube <[EMAIL PROTECTED]> wrote: > im sure this must be something stupid but i dont understand why it > crashes if its not float data > C_word w = C_u_i_car( lyst ); > if (C_truep( C_flonump( w ) )) { Heinrich, Try if (C_truep(C_blockp(w)) && C_truep(C_flonump(w))) {...} an

Re: [Chicken-users] Unfair question: best Lisp for web development?

2008-02-27 Thread Jim Ursetto
On 2/27/08, Graham Fawcett <[EMAIL PROTECTED]> wrote: > Personally, I don't use Spiffy; I wrote a custom framework instead. Would you mind expanding a little on your custom framework and whether it resides behind another webserver via mod_proxy, scgi, fastcgi, cgi, or is itself the main webserver?

Re: [Chicken-users] spiffy example

2008-02-29 Thread Jim Ursetto
Absolutely correct, feel free to update the wiki to reflect this. On 2/29/08, minh thu <[EMAIL PROTECTED]> wrote: > - http:write-response-header should be write-response-header > - and before calling it, the current-request parameter should be > changed to the request argument. _

Re: [Chicken-users] Error building universal on 10.5

2008-03-03 Thread Jim Ursetto
On 2/29/08, Greg <[EMAIL PROTECTED]> wrote: > On Feb 29, 2008, at 7:45 PM, Heinrich Taube wrote: > > export MACOSX_DEPLOYMENT_TARGET=10.4 > > make PLATFORM=macosx ARCH=universal > Thanks! That fixed it. Shouldn't this then be added to the OS X > Makefile? I don't know if any of chicken's maintaine

Re: [Chicken-users] http server example question

2008-03-03 Thread Jim Ursetto
Minh: I don't know if Peter's suggestion helped, but I fixed a bug a couple weeks ago in r8628 that has not been propagated to the release version. It fixed corruption in the headers which resulted in an invalid Content-Length: which caused the precise symptoms you note. Check out trunk if you can

Re: [Chicken-users] readline blocks threads

2008-03-04 Thread Jim Ursetto
Unit SRFI-18: "Blocking I/O will block all threads, except for some socket operations (see the section about the tcp unit). An exception is the read-eval-print loop on UNIX platforms: waiting for input will not block other threads, provided the current input port reads input from a console." On 3

Re: [Chicken-users] readline blocks threads

2008-03-04 Thread Jim Ursetto
Shawn: Did you try using rlwrap? It works fine here. $ rlwrap csi #;1> (use srfi-18) #;2> (thread-start! (lambda () (let loop () (printf "loop~%") (thread-sleep! 1) (loop # #;3> loop loop loop loop On 3/4/08, Shawn Rutledge <[EMAIL PROTECTED]> wrote: > If you do > > (use readline) > (curren

[Chicken-users] chicken-setup broken

2008-03-06 Thread Jim Ursetto
Hi, chicken-setup seems to be broken (r9210). -- Install of egg located in current directory fails: [EMAIL PROTECTED] ~$ echo $TMPDIR $CHICKEN_TMPDIR [EMAIL PROTECTED] ~$ ll objc.egg -rw-r--r-- 1 root jim 64708 Jan 14 01:00 objc.egg [EMAIL PROTECTED] ~$ sudo chicken-setup objc Error: (open

Re: [Chicken-users] chicken-setup broken

2008-03-06 Thread Jim Ursetto
Error: (open-input-file) can not open file - No such file or directory: "objc.egg" On 3/6/08, Ivan Raikov <[EMAIL PROTECTED]> wrote: > > Hi Jim, > > Can you try r9257? I have committed some fixes to chicken-setup > that would hopefully solve your problems. > "

<    1   2   3   4   5