From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.2 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from mermet.sourcephile.fr (revolt129.abo.ilico.org [80.67.180.129]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 77BB11F55B for ; Thu, 28 May 2020 19:07:53 +0000 (UTC) Date: Thu, 28 May 2020 21:07:48 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourcephile.fr; s=20200101; t=1590692868; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=EVAXYOdyEJ5U2o8tOJFfsmXX7/cOPV4o4emDAgbtg3A=; b=suPMyGq160YN6chyYqN3bqkoHAH/40nqOpTfaH6EMRfMKVQwtiNHbuxPhS9Q/cF9pkJLHy NPKY/dAIOedTZwkJHSE2lrmCu1nfrRlMgXIKMoqeCaAaWR0oEQ65hD+lWo+XWiT6ZZ6pti 2guyhS0YFW6q1MpkeUJgMJnHrkWM68YfifjbReJyaQZJ4/NhbJ2oaF/iaRY+qbs6nM3wBO eRyK8q7vardwBtkr75xYLB1efqIHmMOG2NJ86pTsljiUG+nB47efqIg5hid/0KtujQvPyB nBiZP6M+xAhtQmVuoNNAZM0fW5wiEQQ6jzv8Z82omK088dPm0qFFgvDhiXsX1NBBnLwqgK 7nv9UXiITccLLOPEPFO4JqcKTIrnZyNokmoBx0rr1OCZ6Xk84z/sJPSPd1ZXUY45zS6OP0 p+Mtn6By1wlkRpSgTi8XkEeszhg1Fqp78Y+vNhO4D+BYSrrTcquG6iafk+WLQvCjWmN7Qh DDBDvDO4mceWpeH3uRXproo9pJseGVSXqZUNCmcZeOsPDGnMn1iX1Url6mDmSgTBmBXDRC 4VHP5ERBgr3/NNKB54Kpmyxrun22uQ8rpv9uYRK8NqlynKHzZ7HAb0ihiAcQRVidGeJrSq rhcP44SDBru1djsGgRr8JkcmD3rP8b4zanxIebS3K+kZ5m8GqqZ08= From: Julien Moutinho To: Eric Wong Cc: meta@public-inbox.org Subject: Re: [PATCH] treat $INBOX_DIR/description and gitweb.owner as UTF-8 Message-ID: <20200528190748.fmwordbmiwrvnrkg@sourcephile.fr> References: <20200528151216.l7vmnmrs4ojw372g@sourcephile.fr> <20200528183708.GA549@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <20200528183708.GA549@dcvr> List-Id: Le jeu. 28 mai 2020 18h37 +0000, Eric Wong a =C3=A9crit=C2=A0: > Julien Moutinho wrote: > > public-inbox-httpd does not output $INBOX_DIR/description > > using the expected Unicode code points. >=20 > thanks for the bug report. Below is a patch + tests > which should fix the bug. Wow, that was fast! and it works well, thanks! > > Debugging > > --------- > > This may be due to using: ascii_html($ibx->description); >=20 > Nope, ascii_html() is to ensure the HTML source is readable > to people on small/old systems with ASCII-only fonts. Oh, right. Impressive level of compatibility ^_^ Cheers, Julien.