#aaronpk[tantek]: I am changing the post-process file to preserve more of cassis.js. The main reason I want it is to not deal with ob_start at all, so now I am doing only the steps necessary for that.
#aaronpk(side note it would be great to rename the default branch)
#[tantek]oof re: default branch name. I somehow thought unaltered default branch names were all being auto-renamed and completely spaced on checking that. now renamed to main. thanks for the heads-up aaronpk++
#Loqiaaronpk has 44 karma in this channel over the last year (114 in all channels)
#[tantek]the GitHub Actions "Quickstart" is not quick
#GWGIs there a set of guidelines on how to write a user story? I need inspiration
gRegor joined the channel
#[tantek]GWG, there's a rough template like: "as a user, I want to complete specific_task, in order to achieve overall_goal"
#[tantek]e.g. "as a home cook, I want to buy groceries, in order to cook dinner at home"
#GWGI've just been playing with the Ticket Auth page since yesterday...on and off and it definitely needs more refinement and explanation
#[tantek]Ticket Auth definitely needs user stories like that
#[tantek]something like: "as a user, I want to publish a limited audience post, in order to have only my close friends able to read it"
#GWGPeople keep misunderstanding what it is for and how it works, similar to it's parent.
#aaronpki mean, that's a perpetual problem regardless of how good the documentation is
#GWGaaronpk: Yes, but I figure I might as well try. I do this all week at work...try to explain technical things to people...IndieAuth...airline reservations system....same difference.
#aaronpkdefinitely still worth it! more documentation is better!
#GWGI also want to intersperse the individual steps with the brainstorming on that step, instead of separately.
#GWGAlthough I would like some opinions on the modifications I've made so far
[KevinMarks], gerben and [Jo] joined the channel
#GWGomz13: Do you have any thoughts? I know you wrote a different protocol solution
geoffo, jeremycherfas, AramZS, gerben and btrem joined the channel
#RenfieldI'm having some trouble with h-entry. First, I wanted to just have a link with rel=author to my domain instead of putting a p-author h-card in every post. But validators don't seem to see that. They just notice it as a u-url.
#GWGRenfield: Do you have something we can look at?
#GWGI'm not sure if indiewebify.me looks for rel=author
#GWGMicroformats parsing doesn't turn rel=author into p-author. That would be a post-processing task
#RenfieldThe instructions there seem to indicate it should, "There should also be some way to discover the author of the post — either link to your homepage (which should have your h-card on it) from anywhere within the body of the page with rel=author, or optionally embed a p-author h-card in the h-entry."
#GWGI turn rel=author to author in my code, but the parser wouldn't
#RenfieldOriginally, I had the link with classes p-author and h-card. But then indiewebifiy.me didn't find my logo and such. Of course, because this isn't the complete h-card. The complete one is on the home page, which is what I would expect should be looked at to get all of that info.
#RenfieldOr, as author of a post, should I be filling out a complete h-card on each post?
#RenfieldNext question. I want to add e-content. I put it in the same element as h-entry. I don't think that works. Unfortunately, I don't have a sub-element to which I can put it.
#GWGIf you do, then the author and publish date is inside content...
#GWGWe've all been there, trying to figure things out
#GWGBut, basically, if you want the parser to be able to interpret the content separately from the other items...better to mark it up as such.
#RenfieldShould the summary be inside or outside the content?
#GWGThat depends. Is your summary a subset of the content, or completely different?
#GWGIf a subset, inside is fine. If completely different, outside
#GWGThink of it this way...content is what you actually wrote. The other stuff is about what you wrote
#RenfieldI just made the first paragraph the summary.
#RenfieldIt's markup, so it isn't trivial to convert this to have the right classes as far as I know.
#GWGIf the first paragraph is the summary, then having it inside the tag that has e-content is fine. It only doesn't make sense if it is a separate text.
GWG joined the channel
#[tantek]Renfield, you cannot put a microformats property on the same element as the root class name. This is perhaps on of the top #microformats FAQs.
#[tantek]Also in general a lot of the reasoning / questions / answers here are "tag wagging the dog"
#[tantek]You don't start from markup design and then figure out what content to put in there. Completely the opposite
#[tantek]You first figure out what content you want to display for yourself and your readers. Only second do you worry about how to mark it up. That follows directly from the decisions you've already made about content.