[eddie]!tell aaronpk I’m thinking about adding embedded reply context in the Micropub request that you make when you like, reply or bookmark a post in Indigenous. The reason for this is some stuff won’t be able to have reply contexts from my site if the content came from anything but h-feed.
@cathieleblancWorking on #IndieAuth for my new #IndieWeb site. Had to completely delete the web site from my Twitter profile and then add it again in order to get the rel=me to be recognized by IndieAuth. (twitter.com/_/status/988358258300768256)
petermolnarthe way I handle future posts is that I render them in advance, but they are excluded from sitemap, categories, etc, so unless you know the exact url, it's supposed to be hidden
Loqiaaronpk: [eddie] left you a message 7 hours, 39 minutes ago: I’m thinking about adding embedded reply context in the Micropub request that you make when you like, reply or bookmark a post in Indigenous. The reason for this is some stuff won’t be able to have reply contexts from my site if the content came from anything but h-feed.
Loqiaaronpk: [eddie] left you a message 7 hours, 38 minutes ago: my question is, would that break existing implements, so should it be hidden behind a settings flag?
sknebelnice! I wonder if you can have it do something when it fails to load the subtome-JS? (uBlock didn't like it, but of course at that point the click has already been captured and cancelled...)
sknebelmaybe. but in this case the script is only loaded on click, and the event handler can't wait for it to complete. an option might be to extend it that the included script has an onerror(?) handler that then does something, e.g. show a "failed to load subtome script, click here for direct link to feed" around the button?
[grib]Anyone ever try uploading an image to a micropub media endpoing from the Workflow app on iOS? I can't quite figure out how to fill out the form that "Get URL Content" form to allow it
skippymoreover, I'm unsure why I need CORS if I've installed grumble on the same server as my Micropub endpoint? There's no cross-origin request going on there: it's all the same domain.
@nhoizey↩️ My current Jekyll build time is more about 2500 seconds… 😭
Jekyll Assets for CSS and JS, my plugin for images with Cloudinary, plugins for YouTube videos, plugin for Webmentions, etc. (twitter.com/_/status/988455647573405698)
LoqiIt looks like we don't have a page for "eleventy" yet. Would you like to create it? (Or just say "eleventy is ____", a sentence describing the term)
tantekjmac, in addition to the manual WM entry textfield, the second textfield (presumably for a Vouch URL) could be created/enabled by JS dynamically upon entering a URL (onblur) in the first, and possibly even quickly checking it with your server's auto-approve domains/webmentions list first and providing that feedback with a nice green "send webmention" button.
aaronpkthe android app should not be trying to verify the authorization code, it should talk directly to the token endpoint to get the access token using the authorization code
@nitinthewizTurning off Disqus comments on my WP blog has meant that I get, on average, 10 spam comments a day. Worth it to support Webmentions and see twitter Likes on my blogposts? (twitter.com/_/status/988469263898824704)
jmactantek: That does sound like a a good UX pattern, but I have difficultly imagining a reality where a visitor would be succinctly asked to provide a vouching URL, and then the visitor subsequently providing one.
skippyI'm still struggling to get Grmble to work on my test site. https://skippy.rocks/microclient/ is where I've installed the source of Grumble; but I get no login prompt there.
tantekjmac - "how to have the webpage meaningfully phrase the question!" - yes! great UX question and definitely worthy of some brainstorming and experimentation!
cweiskeaaronpk, "5.4 Authorization Code Verification" says "client makes a POST request to the authorization endpoint to verify the authorization code and retrieve the final user profile URL. "
skippyshouldn't selfauth just ignore the scope? i mean, a client could pass any old junk it wants in the request; selfauth should only act on that about which it cares?
Loqiswentel: tantek left you a message 22 hours, 22 minutes ago: add yourself to https://indieweb.org/irc-people so that you show up in the logs with a photo and linked to your website!
tantekswentel while you're here, I think our Drupal page might be out of date or possibly confusing to new folks looking to use Drupal to interact with the IndieWeb. I tried to do a little editorial cleanup (putting your module first in the list as "current"), but it could really use just a little help with updates (per your recommendations) to the "How to" section: https://indieweb.org/Drupal#How_to
tantekswentel, thanks to your plugin and dries's blog posts, I've also bumped Drupal up to the top subsection of the Projects page, where I did still note that we could use better documentation for how to install and set up Drupal as an IndieWeb friendly personal site: https://indieweb.org/projects#Drupal
swentelyeah, I had been thinking about moving that up too this week, but since I'm very new, I didn't want to rush in and start changing all wiki's heh
skippymy micropub endpoint and my media endpoint share the same URL. How can I determine whether any individual POST is a single file to the media endpoint, versus a JSON or form encoded post of non-media content?
sknebeldoes anyone know offhand what happens if a sysadmin has disabled some php functions (e.g. to not allow people to start random processes on shared hosting) and your script contains one?
skippyoh man, the micropub spec says media endpoints accept ONLY "file", while multipart uploads to non-media endpoints can use "photo" or "video" or any other standard property. :(
skippyis Indigenous for Android converting photos to png on the client side before uploading them? I'm uploading JPEGs and my server appears to be seeing PNGs.
Loqi[johnbrayton] @EddieHinkle Thank you for the suggestion. I was not aware of Microsub. I will look into this and consider it for a future version of Unread.
skippySay I'm composing something in Indigenous for Android, and I attach a photo. That photo will be in the properties, but then how would I display it wihitn my post body?
aaronpkfor photo posts, where the photo is considered to be separate from the text content, the client sends the "content" property with the text and the "photo" property with either the URL of the previously-uploaded image or the multipart file upload
aaronpkfor blog posts that contain embedded images, the client would send "content" as html, with <img> tags with the src set to the URLs it got from uploading the photos to the media endpoint
skippysay I'm using Indigenous (or whatever) that sends h-entry AND photo as multi-part form submission. I compose a new article. This article has a title, and body text. I also add an image. The image gets uploaded along with the text, so it has no URL until the server processes it.