[Chicken-users] RFC 1123/HTTP-format date parsing

2007-07-30 Thread Moe Aboulkheir
I need to parse some RFC 1123 dates, in order to turn them into something on which it is easier to perform arithmetic (RFC 1123 is the format used, among other things, to describe absolute dates/times in HTTP). I would very much like to avoid writing a whole crazy thing to do this from scratch

[Chicken-users] Some reorganization of Eggs Unlimited sections

2007-07-30 Thread Ivan Raikov
Hello, I was wondering if it would be possible to make some reorganization to the sections in the Eggs Unlimited page, since now the 'Miscellaneous' section seems to have become the largest one. Specifically, I have the following changes in mind: 1. Rename section `Run-time code generation'

Re: [Chicken-users] format-modular usage question

2007-07-30 Thread Joshua Griffith
Kon, My apologies, I missed that in the doc. I'll open a TRAC ticket. Thanks, Joshua On 7/30/07, Kon Lovett <[EMAIL PROTECTED]> wrote: > > > On Jul 30, 2007, at 10:23 AM, Joshua Griffith wrote: > > > Hello, > > > > I'm trying to use format to create a string consisting of the cars > > of a lis

Re: [Chicken-users] format-modular usage question

2007-07-30 Thread Kon Lovett
On Jul 30, 2007, at 10:23 AM, Joshua Griffith wrote: Hello, I'm trying to use format to create a string consisting of the cars of a list of lists delimited by commas and enclosed by parentheses. I tried the following statement: (format #f "(~:{~a~:^, ~})" '((prop1 val1) (prop2 val2) (pro

[Chicken-users] format-modular usage question

2007-07-30 Thread Joshua Griffith
Hello, I'm trying to use format to create a string consisting of the cars of a list of lists delimited by commas and enclosed by parentheses. I tried the following statement: (format #f "(~:{~a~:^, ~})" '((prop1 val1) (prop2 val2) (prop3 val3))) But it returns: "(prop1, prop2, prop3, )" H

Re: [Chicken-users] wiki->texi converter

2007-07-30 Thread felix winkelmann
On 7/29/07, Ivan Raikov <[EMAIL PROTECTED]> wrote: > > Hi all, > >I have further improved the wiki->texi converter, to the point > where it is able to produce a usable Chicken manual in Texinfo > format. I have created a ticket on trac.calcc.org that includes a > texinfo-related patch to stream

Re: [Chicken-users] threaded TCP server

2007-07-30 Thread felix winkelmann
On 7/30/07, Shawn Rutledge <[EMAIL PROTECTED]> wrote: > On 7/29/07, felix winkelmann <[EMAIL PROTECTED]> wrote: > > The backtrace is misleading: what fails is the "(pp ... o)" on a closed > > port (closed by evaluating the "(exit)"). This should actually show up > > in the error message. Do you run

Re: [Chicken-users] threaded TCP server

2007-07-30 Thread Shawn Rutledge
On 7/29/07, felix winkelmann <[EMAIL PROTECTED]> wrote: > The backtrace is misleading: what fails is the "(pp ... o)" on a closed > port (closed by evaluating the "(exit)"). This should actually show up > in the error message. Do you run this test in the interpreter or do you > compile it? Quite r