AramZ-S[m]capjamesg Hey, did you open source your hovercard.js stuff individually or is it just in your blog's GitHub? You didn't link but I'd be interested in looking at the code and potentially adapting it to my own use.
barnabythe keys are based on the OAuth server metadata spec https://www.rfc-editor.org/rfc/rfc8414 so I’d imagine the existing ones not likely to change very often, but there could be new ones
barnabycapjamesg: briefly glancing through that code, I’d add a “raw_server_metadata” key to the indieauthendpoints dataclass and put the raw values there in case people want to look for them
LoqiIt looks like we don't have a page for "GruberVille" yet. Would you like to create it? (Or just say "GruberVille is ____", a sentence describing the term)
[marksuth]I’ve gone through the process of upgrading a number of Laravel sites recently, the jump from 7 to 9 isn’t that painful, I think there was 1 or 2 lines that needing adjusting in serviceproviders where things had been replaced but otherwise it was fairly smooth
[manton]Kind of inspires me to make my archiver more available… Currently only used for Micro.blog bookmarks but I always wanted to open it up. With limits. I can’t be the Internet Archive. 🙂
LoqiIndieArchive is a project to collaboratively grow an archival copy of pages replied to (possibly also mentioned) in indie web posts https://indieweb.org/indie-archive
[tantek]those ":white_heart: by author" reactions are 2nd order, that is they are in-reply to comments which are then in-reply to the top level post. Displaying that 2nd order response on a permalink of the original post demonstrates a clear use-case for salmentions (webmentions being propagated further upstream as it were)
angelocapjamesg get_post(permalink, upstream=1) that gets the post at permalink but also recursively fetches responses `upstream` levels deep and collapses all of the interesting bits into a dict
angelohm the like of the reply here would trigger a mention to the reply which would trigger a mention to the original post.. that'd be the upstream part. i suppose this reverse discovery would be downstream.
angelomaybe just use `depth=1`.. so the original author here would need to only fetch the reply (which would have the like on it). however a reader that's fetching the original post would have to fetch one level deeper `depth=2`.