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=-3.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_HI, 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 [IPv6:2604:1380:40e1:4800::1]) (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 621C31F452 for ; Fri, 10 Nov 2023 17:16:55 +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=TklT3eeO; 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 2DD46CE1174; Fri, 10 Nov 2023 17:16:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4A93AC433C7; Fri, 10 Nov 2023 17:16:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1699636611; bh=NeQ6fYBa/CQ7jxSKQiZ/gupaPm0QB8DA4qABEl/kbFU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=TklT3eeOE+APkCb4wWYIo4z/pYIJNSRkhbSFZDjvg8G/gHLfU3UE8ajHtQBdhskZX rYiEMekAuj/iu3HPAM3880EzsbUZSHmDZktICczD9SFeG3jAa/SAxk48phxOXinNUN DodNUYK18CUrbURdry5mP3sngEt7RWEkS7flFu70= Date: Fri, 10 Nov 2023 12:16:49 -0500 From: Konstantin Ryabitsev To: Eric Wong Cc: meta@public-inbox.org Subject: Re: [RFC v2] www: add topics_(new|active).(html|atom) endpoints Message-ID: <20231110-colorful-nippy-octopus-9b1e6a@nitro> References: <20231107-skilled-cobra-of-swiftness-a6ff26@meerkat> <20231109024508.M429662@dcvr> <20231110030959.M879021@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20231110030959.M879021@dcvr> List-Id: On Fri, Nov 10, 2023 at 03:09:59AM +0000, Eric Wong wrote: > > Yes, actually thinking about this some more, perhaps it makes sense to expose > > this as an RSS feed feature (maybe even exclusively as an RSS feed feature?). > > I assume Atom is OK? I don't know of any widely-used feed readers > which only do RSS without Atom support. IIRC Atom is less ambiguous > and supports the in-reply-to extension. Yes, sorry, I know they aren't the same thing, but in my head Atom is just a form of RSS (perhaps for the same reason why everyone says "rss reader" but nobody says "atom reader"). > That said, the Atom feeds generated by this RFC includes full > messages because that's the easiest way to tie into our existing > Atom generation code, so it's currently slower than the HTML > version which never retrieves git blobs. That's fine, actually, because this lets people read the full message to figure out if they are interested in the rest of the thread or not. > > Have two different feeds: > > > > - new topics: just all the new threads > > - hot topics: NN most active threads (kinda lkml.org's "hottest messages") > > I'm not sure if `hot' means it's the most read (not just replied-to); > but tracking read counts isn't something that scales on decentralized > systems. So I'm naming it "active" instead... Sounds good to me. > > Have this available per-list and for the extindex -- I think this would be > > a great feature that we can point people at as a mechanism to keep an eye on > > overall activity. > > Yeah, lots of the WWW and lei code works transparently between extindex > and regular inboxes: > > extindex: > https://yhbt.net/lore/all/topics_new.atom > https://yhbt.net/lore/all/topics_active.atom > https://yhbt.net/lore/all/topics_new.html > https://yhbt.net/lore/all/topics_active.html > > v2: > https://yhbt.net/lore/lkml/topics_new.atom > https://yhbt.net/lore/lkml/topics_active.atom > https://yhbt.net/lore/lkml/topics_new.html > https://yhbt.net/lore/lkml/topics_active.html > > v1: > https://public-inbox.org/git/topics_new.atom > https://public-inbox.org/git/topics_active.atom > https://public-inbox.org/git/topics_new.html > https://public-inbox.org/git/topics_active.html This is great, thank you! -K