From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Vivien Kraus via General Guile related discussions Newsgroups: gmane.lisp.guile.user Subject: Re: Demanding Interoperability to Strengthen the Free (Libre) Web: Introducing DISFLUID Date: Sat, 31 Jul 2021 09:06:55 +0200 Message-ID: References: <5cbc279ee59779dcaca73de7745a9d0dbd5abfce.camel@planete-kraus.eu> Reply-To: Vivien Kraus Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="2891"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Evolution 3.34.2 Cc: Guile User To: Nala Ginrut Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Sat Jul 31 09:07:19 2021 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1m9j5a-0000ai-U5 for guile-user@m.gmane-mx.org; Sat, 31 Jul 2021 09:07:19 +0200 Original-Received: from localhost ([::1]:46796 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m9j5Z-00067H-C3 for guile-user@m.gmane-mx.org; Sat, 31 Jul 2021 03:07:17 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:53266) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m9j5O-00066q-Es for guile-user@gnu.org; Sat, 31 Jul 2021 03:07:06 -0400 Original-Received: from planete-kraus.eu ([2a00:5881:4008:2810::309]:41362) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1m9j5M-0000Yd-0B for guile-user@gnu.org; Sat, 31 Jul 2021 03:07:06 -0400 Original-Received: from planete-kraus.eu (localhost.lan [127.0.0.1]) by planete-kraus.eu (OpenSMTPD) with ESMTP id d69accc9; Sat, 31 Jul 2021 07:06:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=planete-kraus.eu; h= message-id:subject:from:to:cc:date:in-reply-to:references :content-type:mime-version:content-transfer-encoding; s=*; bh=98 Q/akj6wl2b4BbptmwNVqFFb04=; b=ILutTYHXrkWmV6wW2PpZs0C5KKMEqXoeP+ baMH9CD8J/7KfmgXMo+NtYDY3EluLEHC2HU8RVw5NW6lEM8NlIRbWlpFVZgjlKCX r9dgIx3s668z/r7hgRoQelR2llW54Cg8QdufIaE40/vaxNX1PYD3XV1kGNJ4UDJ5 iTQcCb4i0= Original-Received: by planete-kraus.eu (OpenSMTPD) with ESMTPSA id 309c7a74 (TLSv1.3:AEAD-CHACHA20-POLY1305-SHA256:256:NO); Sat, 31 Jul 2021 07:06:57 +0000 (UTC) In-Reply-To: Received-SPF: pass client-ip=2a00:5881:4008:2810::309; envelope-from=vivien@planete-kraus.eu; helo=planete-kraus.eu X-Spam_score_int: -16 X-Spam_score: -1.7 X-Spam_bar: - X-Spam_report: (-1.7 / 5.0 requ) BAYES_00=-1.9, DKIM_INVALID=0.1, DKIM_SIGNED=0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:17656 Archived-At: Hello, Le samedi 31 juillet 2021 à 14:14 +0800, Nala Ginrut a écrit : > Is it possible to cooperate with a modern web framework? It seems it > doesn't require JS and browser, so I don't know if http can still > work as usual. It is not tied to a particular framework, the specification is based on HTTP. Guile has by default almost everything we need, https://www.gnu.org/software/guile/manual/guile.html#Web The missing parts are a couple of HTTP headers that are simple to handle. However, I’d like to have uri-decode handle unicode characters, because most URIs nowadays are IRIs and they have unescaped unicode characters. That’s why I sent this patch: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=49085