RE: Custom HTTP methods in web module

2024-03-23 Thread Maxime Devos
   (else (bad-request "Invalid method: ~a" (substring str start end) Another problem with the old implementation – AFAICT, this does a “400 Bad Request”. However, at least when the syntax/grammar/... is correct, it should be a 501 instead. >An origin server that receives a request

Re: Guile 64-bit Windows support, redux

2024-03-23 Thread Developers list for Guile, the GNU extensibility library
On Wed, 2024-03-20 at 16:40 -0400, Thompson, David wrote: > On Wed, Mar 20, 2024 at 4:29 PM Jonas Hahnfeld wrote: > > So I can confirm that JIT indeed doesn't work right now on 64-bit > > MinGW, but it's relatively easy to fix (first patch). In essence > > lightening was getting the calling

RE: Custom HTTP methods in web module

2024-03-23 Thread Maxime Devos
While I agree it has advantages, it is also buggy. >From https://www.rfc-editor.org/rfc/rfc9110.html#name-methods: * “the method token is case-sensitive”. So, you need to remove ‘string-upcase’. * Additional methods, outside the scope of this specification, have been specified for use in