From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 511BC1F451 for ; Tue, 16 Jan 2024 11:52:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1705405975; bh=QUxLR/2m4R4M5EoeLkmLmYpaUncPaWCaYpX+o90RuFw=; h=From:To:Subject:Date:From; b=xwxKzZqUkFNgviBynRxBiiywlNCgwbdTBhapoiSniiM7PGdrprw73Yb6N+YGt2pcK c4FWmcgk3rJEDbXLX+ChD3m1MSY7ENaE3jhZI/DearfUp7fG0X1j5rYIxQU/5ujWvj R2B7Xty/HUlazpBTjl6pZ1rVnyHVhrRKVDGo8SCM= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 0/5] www: coderepo updates Date: Tue, 16 Jan 2024 11:52:50 +0000 Message-ID: <20240116115255.3554317-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: 1+2 are old cleanups I finally got around to... 3-5 fix and support globbing in URIs for to make it easier to filter projects by basename or username/projectname. In other words, https://yhbt.net/lore/**/vfs.git can quickly find all the vfs.git repos mirrored from git.k.o. Apparently, '*' is fine unescaped in URLs :o I'll probably rely on the basename to make solver and inbox <=> coderepo mappings display more nicely in WWW (but I keep getting distracted playing w/ Parse::RecDescent :x) Eric Wong (5): tests: clarify Email::MIME is only for development examples/unsubscribe-milter@.service: use KillMode=process config: don't vivify invalid fields for coderepos config: glob2re: fix over-matching /**/foo www: repolist: support globbing in URL examples/unsubscribe-milter@.service | 6 ++++++ lib/PublicInbox/Config.pm | 6 +++--- lib/PublicInbox/RepoList.pm | 4 ++-- lib/PublicInbox/TestCommon.pm | 1 + lib/PublicInbox/WwwCoderepo.pm | 6 +++++- t/config.t | 3 ++- t/eml.t | 6 +++--- t/import.t | 3 ++- t/mime.t | 4 ++-- 9 files changed, 26 insertions(+), 13 deletions(-)