Re: Contributions to Guile

2016-02-08 Thread Ludovic Courtès
Ricardo Wurmus skribis: > I couldn’t derive anything constructive from the reply. Indeed. :-) > Or are we talking about just changing the style for the Guile manual? No, all of the gendocs-using things. Well, at least we’ll try, if you can put up an example on-line. Ludo’.

Re: Contributions to Guile

2016-02-08 Thread Ricardo Wurmus
Ludovic Courtès writes: > Could you look again at the feedback at > > and put up an example manual somewhere (thus not requiring Stylish)? We > can then lobby for the new CSS again. :-) The full relevant criticism/feedback

Re: Contributions to Guile

2016-02-08 Thread Thompson, David
On Mon, Feb 8, 2016 at 4:28 PM, Chad Albers wrote: > On Mon, Feb 8, 2016 at 2:05 PM, Christopher Allan Webber > wrote: >> Ludovic Courtès writes: >> >>> Christopher Allan Webber skribis: >>> Chad Albers writes: >>> >>> [...] >>> > b. More robust documentation system - texinfo is not the

Re: Contributions to Guile

2016-02-08 Thread Chad Albers
On Mon, Feb 8, 2016 at 2:05 PM, Christopher Allan Webber wrote: > Ludovic Courtès writes: > >> Christopher Allan Webber skribis: >> >>> Chad Albers writes: >> >> [...] >> b. More robust documentation system - texinfo is not the greatest. And it's non-trivial to generate any documentatio

Re: Contributions to Guile

2016-02-08 Thread Ludovic Courtès
Christopher Allan Webber skribis: > Ludovic Courtès writes: > >> Christopher Allan Webber skribis: >> >>> Chad Albers writes: >> >> [...] >> b. More robust documentation system - texinfo is not the greatest. And it's non-trivial to generate any documentation (including texinfo) for >>>

Re: Contributions to Guile

2016-02-08 Thread Ludovic Courtès
Ricardo Wurmus skribis: > Christopher Allan Webber writes: > If the html export was nicely themed >>> >>> It can be nicely themed. FWIW, Gnulib’s gendocs.sh, which is what most >>> projects use to export their HTML to gnu.org, now includes a CSS by >>> default (see

Re: Contributions to Guile

2016-02-08 Thread Ricardo Wurmus
Christopher Allan Webber writes: >>> If the html export was nicely themed >> >> It can be nicely themed. FWIW, Gnulib’s gendocs.sh, which is what most >> projects use to export their HTML to gnu.org, now includes a CSS by >> default (see as an example.) We can >

Re: Contributions to Guile

2016-02-08 Thread Christopher Allan Webber
Ludovic Courtès writes: > Christopher Allan Webber skribis: > >> Chad Albers writes: > > [...] > >>> b. More robust documentation system - texinfo is not the greatest. And >>> it's non-trivial to generate any documentation (including texinfo) for >>> modules. >> >> Texinfo is pretty nice to use i

Re: Contributions to Guile

2016-02-08 Thread Christopher Allan Webber
Ludovic Courtès writes: > Christopher Allan Webber skribis: > >> Chad Albers writes: > > [...] > >>> b. More robust documentation system - texinfo is not the greatest. And >>> it's non-trivial to generate any documentation (including texinfo) for >>> modules. >> >> Texinfo is pretty nice to use i

Re: Contributions to Guile

2016-02-08 Thread Christopher Allan Webber
Alex Sassmannshausen writes: > Mike Gerwitz writes: > >> On Sun, Feb 07, 2016 at 14:23:29 -0800, Christopher Allan Webber wrote: > > [...] > >>> In the meanwhile we've had some conversations about this, see David >>> Thompson's RFC on a Guile project generator: >>> >>> https://lists.gnu.org/arch

Re: regex-case

2016-02-08 Thread Stefan Israelsson Tampe
Ahh it is possible to get a nice regexp interface for ice-9/match. Consider (define (r1 x) (lambda (s) (regexp-exec (make-regexp x) s))) (define (r4 x) (lambda (s) (let ((res ((r1 x) s))) (if res (let lp ((out '()) (i 1)) (catch #t (lam

Re: regex-case

2016-02-08 Thread Stefan Israelsson Tampe
Because forwarded mail get hidden in modern mail clients I paste it here as well. Sorry for the spam An interesting question is what can be done by ice-9/match Consider (define (r1 x) (regexp-exec (make-regexp x))) Then simple matching can be done like (match x ((? (r1 "a+")) 'matche_a_lot_o

Fwd: regex-case

2016-02-08 Thread Stefan Israelsson Tampe
-- Forwarded message -- From: Stefan Israelsson Tampe Date: Mon, Feb 8, 2016 at 4:31 PM Subject: Re: regex-case To: Ludovic Courtès An interesting question is what can be done by ice-9/match Consider (define (r1 x) (regexp-exec (make-regexp x))) Then simple matching can be don

Re: regex-case

2016-02-08 Thread Matt Wette
Matt Wette matthew.we...@verizon.net > On Feb 8, 2016, at 7:40 AM, Stefan Israelsson Tampe > wrote: > -- Forwarded message -- > From: Stefan Israelsson Tampe > > Date: Mon, Feb 8, 2016 at 4:31 PM > Subject: Re: regex-case > To: Ludovic Courtès

Re: Contributions to Guile

2016-02-08 Thread Alex Sassmannshausen
Mike Gerwitz writes: > On Sun, Feb 07, 2016 at 14:23:29 -0800, Christopher Allan Webber wrote: [...] >> In the meanwhile we've had some conversations about this, see David >> Thompson's RFC on a Guile project generator: >> >> https://lists.gnu.org/archive/html/guile-user/2015-09/msg00042.html

Re: Contributions to Guile

2016-02-08 Thread Ludovic Courtès
Christopher Allan Webber skribis: > Chad Albers writes: [...] >> b. More robust documentation system - texinfo is not the greatest. And >> it's non-trivial to generate any documentation (including texinfo) for >> modules. > > Texinfo is pretty nice to use if you're an emacs user... in fact, if