scheme -> (X)HTML

2008-03-25 Thread Paul Emsley
Dear Guilers, I have in mind to write a little script that makes a web page about the state of various files. I'd like to use some schemey way of doing this. s-expression -> HTML perhaps. What is the thinking guile-user's way of approaching this? Cheers, Paul.

Re: scheme -> (X)HTML

2008-03-25 Thread Julian Graham
Hi Paul, There are several good tools out there for doing this: Oleg Kiselyov has written a Scheme-based port of SAX called SSAX [1] that can read and emit S-expressions in a format he calls SXML. It's available for Guile as part of Andy Wingo's guile-lib [2]. For permissive HTML parsing, Neil V

Re: scheme -> (X)HTML

2008-03-25 Thread Neil Jerram
"Julian Graham" <[EMAIL PROTECTED]> writes: > Hi Paul, > > There are several good tools out there for doing this: Oleg Kiselyov > has written a Scheme-based port of SAX called SSAX [1] that can read > and emit S-expressions in a format he calls SXML. It's available for > Guile as part of Andy Win

Re: scheme -> (X)HTML

2008-03-25 Thread Francesco Salvestrini
Hi Paul, On Tuesday 25 March 2008, Paul Emsley wrote: > Dear Guilers, > > I have in mind to write a little script that makes a web page about the > state of various files. > > I'd like to use some schemey way of doing this. s-expression -> HTML > perhaps. Links that could be useful: http://en.w

Re: Loading mixp-0.4 in guile-1.6.8

2008-03-25 Thread Neil Jerram
Bruce Carleton <[EMAIL PROTECTED]> writes: > I'm trying to load mixp-0.4 in guile-1.6.8 and it's failing for some > reason. [...] Hi Bruce, It looks like a fix to #:use-syntax processing was misapplied to the 1.6.x branch, back in January 2005. (For the details, compare the diff [0] on the CVS

Re: Loading mixp-0.4 in guile-1.6.8

2008-03-25 Thread Neil Jerram
Neil Jerram <[EMAIL PROTECTED]> writes: > The boot-9.scm patch below (which I have not tested) should fix this; FWIW, I've done a basic test of this patch now, so will commit to 1.6.x CVS. We have no current plans for another 1.6.x release, though, because we believe you should be able to upgrad

Re: Loading mixp-0.4 in guile-1.6.8

2008-03-25 Thread Bruce Carleton
Neil, Thanks for the patch. I'll test out your suggestions tonight. I'll post my outcome to the list. Best regards, --Bruce Neil Jerram wrote: Neil Jerram <[EMAIL PROTECTED]> writes: The boot-9.scm patch below (which I have not tested) should fix this; FWIW, I've done a basi

Re: Loading mixp-0.4 in guile-1.6.8

2008-03-25 Thread Bruce Carleton
Neil, The patch did the job for me. I simply patched the installed guile-1.6.8. My existing mixp code seems to be working properly. I'll try to move to guile-1.8 sometime in the near future. Thanks, --Bruce On Mar 25, 2008, at 2:37 PM, Neil Jerram wrote: Neil Je