Merge branch 'mastodon:main' into main

This commit is contained in:
John Haugabook 2024-02-09 22:24:22 -05:00 committed by GitHub
commit b73e1e1b71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 13 additions and 1 deletions

View File

@ -286,7 +286,7 @@ aliases: [
**Version history:**\
4.0.0 - added
##### `configuration[urls][streaming_api]` {#streaming_api}
##### `configuration[urls][streaming]` {#streaming}
**Description:** The Websockets URL for connecting to the streaming API.\
**Type:** String (URL)\

View File

@ -125,6 +125,17 @@ Send your post only to mentioned users.
**Do not share dangerous and sensitive information over direct messages**. Mastodon is not an encrypted messaging app like Signal or Wire, the database administrators of the senders and recipients servers have access to the text. Use them with the same caution as you would use forum PMs, Discord PMs and Twitter DMs.
{{< /hint >}}
## Home feed visibility for replies
Your replies will only appear on your followers' Home feeds if they follow both you and the person you are replying to.
Some notes about this:
* A new post you make which starts with an `@mention` is **not** considered a reply, so it will show up on the Home feed of all your followers.
* The reply's visibility (Public vs Unlisted vs Followers-Only) does **not** affect whether it shows up on the Home feed.
* If your post is public and contains a followed hashtag, it will be shown on the Home feed regardless of whether it is a reply.
* Other Fediverse software may show all of your replies on the Home feed, no matter who the posts are replies to.
## Content warnings and sensitive content {#cw}
{{< figure src="assets/status-cw.jpg" caption="A status with a CW that is marked as sensitive content." >}}

View File

@ -96,6 +96,7 @@ Mastodon will then resolve the link and fetch the web page located there, lookin
- The resolved page must contain at least one `a` or `link` tag with a `rel="me"` attribute.
- The `href` attribute on one of those elements must be equal to the URL for your Mastodon profile.
- If no links with `rel="me"` are found, Mastodon will look for the *first* link, and the `href` value must redirect to your Mastodon profile's URL. (This provides limited support for web pages that use link shorteners and do not use rel-me.)
- The HTTP response must not exceed 1 MB.
**Any such link must not be within an `iframe`**. An `iframe` effectively means the link is no longer on the same web page, but rather it is on some external web page which is being embedded in the current one. (Note that some "block-based" CMS software may wrap block elements within iframes, which prevents verification for this reason.)