* Guile-WWW 2.15 available
@ 2006-04-26 9:11 Thien-Thi Nguyen
2006-04-28 16:34 ` William Xu
0 siblings, 1 reply; 7+ messages in thread
From: Thien-Thi Nguyen @ 2006-04-26 9:11 UTC (permalink / raw)
Cc: guile-user
release notes:
note that <http://www.glug.org/data/guile-www.hmap> has also changed
to accomodate changes in makeinfo output (info "(texinfo) HTML Xref").
thi
README excerpt:
This is the Guile WWW library, a set of Guile Scheme
modules to facilitate HTTP, URL and CGI programming.
NEWS excerpt:
- 2.15 | 2006-04-26
- bugfix: don't include Host twice (http:head, http:get, http:post-form)
- maintenance uses Automake 1.9.6 and Texinfo 4.8
cvs tag:
release-2-15
tarball, anoncvs instructions, prettified code, etc, in dir:
http://www.glug.org/people/ttn/software/guile-www/
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Guile-WWW 2.15 available
2006-04-26 9:11 Guile-WWW 2.15 available Thien-Thi Nguyen
@ 2006-04-28 16:34 ` William Xu
2006-04-28 16:51 ` William Xu
2006-04-28 18:15 ` Thien-Thi Nguyen
0 siblings, 2 replies; 7+ messages in thread
From: William Xu @ 2006-04-28 16:34 UTC (permalink / raw)
Thien-Thi Nguyen <ttn@glug.org> writes:
> tarball, anoncvs instructions, prettified code, etc, in dir:
>
> http://www.glug.org/people/ttn/software/guile-www/
This is different from guile/guile-www module at gnu.savannah.org, which
hasn't been updated for long, right?
--
William
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Guile-WWW 2.15 available
2006-04-28 16:34 ` William Xu
@ 2006-04-28 16:51 ` William Xu
2006-04-28 18:21 ` Thien-Thi Nguyen
2006-04-28 18:15 ` Thien-Thi Nguyen
1 sibling, 1 reply; 7+ messages in thread
From: William Xu @ 2006-04-28 16:51 UTC (permalink / raw)
William Xu <william.xwl@gmail.com> writes:
> Thien-Thi Nguyen <ttn@glug.org> writes:
>
>> tarball, anoncvs instructions, prettified code, etc, in dir:
>>
>> http://www.glug.org/people/ttn/software/guile-www/
>
> This is different from guile/guile-www module at gnu.savannah.org, which
> hasn't been updated for long, right?
Also, after `make install'(guile-www from www.glug.org, of course), i
find scheme files(which doesn't have a .scm suffix, why?) under site/www
are badly aligned, except head comments. To be precise, all codes are
packed tightly on one line only !
Maybe this is a bug?
--
William
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Guile-WWW 2.15 available
2006-04-28 16:51 ` William Xu
@ 2006-04-28 18:21 ` Thien-Thi Nguyen
2006-04-28 19:01 ` William Xu
0 siblings, 1 reply; 7+ messages in thread
From: Thien-Thi Nguyen @ 2006-04-28 18:21 UTC (permalink / raw)
Cc: guile-user
From: William Xu <william.xwl@gmail.com>
Date: Sat, 29 Apr 2006 00:51:13 +0800
(which doesn't have a .scm suffix, why?)
see script module-install in the Guile-WWW top-level dir.
Maybe this is a bug?
if the files are unusable, e.g., doing "(use-modules (www http))" fails
to load the (www http) module, then that would be a bug, either in the
packing method, or in guile's loading method (or possibly elsewhere).
otherwise, it is not a bug.
thi
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Guile-WWW 2.15 available
2006-04-28 18:21 ` Thien-Thi Nguyen
@ 2006-04-28 19:01 ` William Xu
2006-04-28 20:04 ` Alan Grover
0 siblings, 1 reply; 7+ messages in thread
From: William Xu @ 2006-04-28 19:01 UTC (permalink / raw)
Thien-Thi Nguyen <ttn@glug.org> writes:
> Maybe this is a bug?
>
> if the files are unusable, e.g., doing "(use-modules (www http))" fails
> to load the (www http) module, then that would be a bug, either in the
> packing method, or in guile's loading method (or possibly elsewhere).
> otherwise, it is not a bug.
Okay. :)
--
William
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Guile-WWW 2.15 available
2006-04-28 19:01 ` William Xu
@ 2006-04-28 20:04 ` Alan Grover
0 siblings, 0 replies; 7+ messages in thread
From: Alan Grover @ 2006-04-28 20:04 UTC (permalink / raw)
As part of the install process, he purposefully rips all the whitespace
out of his files. Presumably to make them load faster. The match.ss
module is like this too (in ice-9).
He also drops the extensions, which guile allows/tolerates.
And, he tweaks some of the files so they work in 1.4 and 1.6.
The .scm files are there somewhere, with all the whitespace.
William Xu wrote:
> Thien-Thi Nguyen <ttn@glug.org> writes:
>
>
>> Maybe this is a bug?
>>
>>if the files are unusable, e.g., doing "(use-modules (www http))" fails
>>to load the (www http) module, then that would be a bug, either in the
>>packing method, or in guile's loading method (or possibly elsewhere).
>>otherwise, it is not a bug.
>
>
> Okay. :)
>
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Guile-WWW 2.15 available
2006-04-28 16:34 ` William Xu
2006-04-28 16:51 ` William Xu
@ 2006-04-28 18:15 ` Thien-Thi Nguyen
1 sibling, 0 replies; 7+ messages in thread
From: Thien-Thi Nguyen @ 2006-04-28 18:15 UTC (permalink / raw)
Cc: guile-user
From: William Xu <william.xwl@gmail.com>
Date: Sat, 29 Apr 2006 00:34:26 +0800
This is different from guile/guile-www module at gnu.savannah.org,
which hasn't been updated for long, right?
yes and no. see:
http://www.glug.org/people/ttn/software/guile-www/A-WHILE-BACK
if/when i regain write privs, i will update the savannah sources.
thi
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2006-04-28 20:04 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-26 9:11 Guile-WWW 2.15 available Thien-Thi Nguyen
2006-04-28 16:34 ` William Xu
2006-04-28 16:51 ` William Xu
2006-04-28 18:21 ` Thien-Thi Nguyen
2006-04-28 19:01 ` William Xu
2006-04-28 20:04 ` Alan Grover
2006-04-28 18:15 ` Thien-Thi Nguyen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).