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: AS54825 145.40.73.0/24 X-Spam-Status: No, score=-3.3 required=3.0 tests=AWL,BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_MED, SPF_HELO_NONE,SPF_PASS,T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) (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 3C8B21F452 for ; Tue, 28 Nov 2023 17:49:35 +0000 (UTC) Authentication-Results: dcvr.yhbt.net; dkim=pass (1024-bit key; unprotected) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.a=rsa-sha256 header.s=korg header.b=kh8FKXP5; dkim-atps=neutral Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id 0F960CE1A73; Tue, 28 Nov 2023 17:49:33 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 311ACC433C8; Tue, 28 Nov 2023 17:49:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1701193772; bh=y1e3RYOuKwJ96l9EZTbseRsZWi3EOi60zGjuh8tfoB8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=kh8FKXP5PPAKxg0Yni6hXaUiGg3jrLjZcIRwciuB6ZipgWNMnfRu+V8IuZ/wWw9So IKONMxIdYiyKfXycwfchaGVs7GbroMTFFajhtWXuytDxRVKkoQM54r94akr4wiI7qQ n/0iuXGZgrNCgt5Wg0FBiUQLZZReK6BUZIHYlGMg= Date: Tue, 28 Nov 2023 12:49:31 -0500 From: Konstantin Ryabitsev To: Eric Wong Cc: meta@public-inbox.org, workflows@vger.kernel.org Subject: Re: extra search flags and params? (ispatch, replycount, ...) Message-ID: <20231128-pretty-sidewinder-of-pluck-a61b0a@meerkat> References: <20231128001028.M189230@dcvr> <20231128-classy-brown-muskrat-7f07b1@nitro> <20231128173509.M955004@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20231128173509.M955004@dcvr> List-Id: On Tue, Nov 28, 2023 at 05:35:09PM +0000, Eric Wong wrote: > > I understand the reasoning, but I'm not sure we should be trying too hard to > > make public-inbox a patch tracking platform. What makes lei great is ability > > to automatically find and retrieve entire threads -- I feel like we should > > leave series tracking to other platforms that already exist (patchwork, > > patchew, etc). > > I was thinking more along the lines of readers just trying to > find trying to find non-patch discussions. Ah. I think here is enough to just say "s:* AND NOT s:PATCH" without introducing additional xapian indexing parameters. Though, perhaps the web interface can also gain a "collapse threads" view? > > This made me realize that there's actually a multitude of ways the same patch > > can be represented (diff-algorithm, number of context lines, etc) that would > > cause git-patch-id to return a different value for the exact same commit. > > Yeah, post-image blob abbreviations are probably the way to go. > > Fwiw, solver only uses post-image blob abbreviations and the > filename as a hint. I rolled it out a few hours ago on yhbt.net/lore > and it seems to be solving kernel blobs just fine, but the > debug log is choosing random git URLs. Ah, neat! That said, what happens if a series was applied with "git am -3" and the post-image blob abbreviations are necessarily different? (I may be misunderstanding the approach, please correct me if I do.) -K