[Chicken-users] Question regarding copyright notice

2011-08-30 Thread Santosh Rajan
I have been working on a small chicken scheme project, which I intend to release as open source on Github. The distribution will contain some of chicken scheme "C" source code, along with my scm files and other open source code. However I noticed that the compiled chicken "C" source code does not c

Re: [Chicken-users] Question regarding copyright notice

2011-08-30 Thread Felix
> 3) Or is it ok if include a pointer to the chicken source site in my readme > or something? I think that's fine. I'm not sure how this is usually handled. cheers, felix ___ Chicken-users mailing list Chicken-users@nongnu.org https://lists.nongnu.org

Re: [Chicken-users] file-copy does not work on Windows

2011-08-30 Thread Felix
> I added #:binary to my code. but "file-copy" still does not work correctly. > #;5> (file-copy "firefox.png" "Copy of Fx.png") > 6162 > #;6> (file-size "Copy of Fx.png") > 6190 > #;5> (file-copy "firefox.png" "Copy of Fx.png" #:binary) > 6162 > In "file-copy" definition at files.scm, #:binary is n

Re: [Chicken-users] chicken-install -n -test

2011-08-30 Thread Felix
From: John J Foerch Subject: [Chicken-users] chicken-install -n -test Date: Fri, 26 Aug 2011 20:11:20 -0400 > Hello, > > I'm writing an egg and I happened to try 'chicken-install -n -test' to > see if I could run my tests without installing the egg. This does not > work in the version of chicke

Re: [Chicken-users] chicken-install -n -test

2011-08-30 Thread John J Foerch
Mario Domenech Goulart writes: > Hi John, > > On Fri, 26 Aug 2011 20:31:50 -0400 John J Foerch > wrote: > >> Mario Domenech Goulart writes: >>> >>> On Fri, 26 Aug 2011 20:11:20 -0400 John J Foerch >>> wrote: >>> I'm writing an egg and I happened to try 'chicken-install -n -test' to

Re: [Chicken-users] chicken-install -n -test

2011-08-30 Thread John J Foerch
Felix writes: > From: John J Foerch > Subject: [Chicken-users] chicken-install -n -test > Date: Fri, 26 Aug 2011 20:11:20 -0400 > >> Hello, >> >> I'm writing an egg and I happened to try 'chicken-install -n -test' to >> see if I could run my tests without installing the egg. This does not >> wo

[Chicken-users] script to generate html from wiki-formatted text?

2011-08-30 Thread John Gabriele
Does anyone have (or would anyone whip up?) a script for converting wiki markup to html? Something to be used like: chicken-wiki-to-html foo.txt > foo.html (BTW, the Chicken wiki uses qwiki, correct?) Thanks, ---John ___ Chicken-users mailing list

Re: [Chicken-users] script to generate html from wiki-formatted text?

2011-08-30 Thread Mario Domenech Goulart
Hi John, On Tue, 30 Aug 2011 16:15:20 -0400 John Gabriele wrote: > Does anyone have (or would anyone whip up?) a script for converting > wiki markup to html? Something to be used like: > > chicken-wiki-to-html foo.txt > foo.html Here's one: http://parenteses.org/mario/misc/wiki2html.scm >

Re: [Chicken-users] script to generate html from wiki-formatted text?

2011-08-30 Thread John Gabriele
On Tue, Aug 30, 2011 at 4:13 PM, Mario Domenech Goulart wrote: > Hi John, > > On Tue, 30 Aug 2011 16:15:20 -0400 John Gabriele wrote: > >> Does anyone have (or would anyone whip up?) a script for converting >> wiki markup to html? Something to be used like: >> >>     chicken-wiki-to-html foo.txt

Re: [Chicken-users] script to generate html from wiki-formatted text?

2011-08-30 Thread Jim Ursetto
John, Another option is to look at manual-labor, which uses svnwiki-sxml and chicken-doc-html under the hood. A further option is hyde. Jim On Aug 30, 2011, at 3:13 PM, Mario Domenech Goulart wrote: > Hi John, > > On Tue, 30 Aug 2011 16:15:20 -0400 John Gabriele wrote: > >> Does anyone have

Re: [Chicken-users] script to generate html from wiki-formatted text?

2011-08-30 Thread John Gabriele
On Tue, Aug 30, 2011 at 6:23 PM, Jim Ursetto wrote: > John, > Another option is to look at manual-labor, which uses svnwiki-sxml and > chicken-doc-html under the hood. Thanks. That also works nicely for me. The styling reminds me of chickadee. > A further option is hyde. At the moment, I only

Re: [Chicken-users] script to generate html from wiki-formatted text?

2011-08-30 Thread Jim Ursetto
On Aug 30, 2011, at 8:10 PM, John Gabriele wrote: > On Tue, Aug 30, 2011 at 6:23 PM, Jim Ursetto wrote: >> >> Another option is to look at manual-labor, which uses svnwiki-sxml and >> chicken-doc-html under the hood. > > Thanks. That also works nicely for me. The styling reminds me of chickade