summaryrefslogtreecommitdiff
path: root/html.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request 'rendering visibility conditionally, with lesser reach if ↵Gravatar grunfink2025-12-031-40/+33
|\ | | | | | | | | | | needed' (#493) from byte/snac2:feature/lesser-visibility into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/493
| * no visibility for editingGravatar byte2025-11-011-1/+2
| |
| * Merge remote-tracking branch 'orig/master' into feature/lesser-visibilityGravatar byte2025-11-011-2/+3
| |\
| * | rendering visibility conditionally, with lesser reach if neededGravatar byte2025-10-251-40/+32
| | |
* | | Fix user matchingGravatar rako2025-11-301-3/+3
| | | | | | | | | | | | | | | | | | In order to be a proper prefix, the actor url must end with a '/' otherwise it can match another user that starts with the same prefix: for example 'testuser' will match anything made by 'testuser2'
* | | Some attachments are of type 'Video' instead of a MIME type (bsky).Gravatar grunfink2025-11-261-1/+1
| | |
* | | Added a Follow/Unfollow button next to a new follow notification.Gravatar grunfink2025-11-201-1/+27
| | |
* | | Merge pull request 'Add metadata to remote users' (#499) from ↵Gravatar grunfink2025-11-181-1/+89
|\ \ \ | | | | | | | | | | | | | | | | | | | | dandelions/snac2:metadata-pr into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/499
| * | | metadata: hide the divider when user has no normal fieldsGravatar green2025-11-141-2/+2
| | | |
| * | | metadata: location and bday propertiesGravatar green2025-11-141-0/+38
| | | |
| * | | metadata: quick fix for <p> tagsGravatar green2025-11-141-3/+13
| | | |
| * | | metadata for remote users in people pageGravatar green2025-11-141-0/+40
| | |/ | |/|
* | | Some implementations set quoted posts with 'quoteUrl', so look at that as well.Gravatar grunfink2025-11-171-1/+2
| | |
* | | Request unfound actors from the notifications page.Gravatar grunfink2025-11-151-1/+5
| | |
* | | Merge pull request 'Fixed typo in html attribute' (#500) from ↵Gravatar grunfink2025-11-141-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | dandelions/snac2:next-text-typo-pr into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/500
| * | | fixed typo in html attrGravatar green2025-11-141-1/+1
| |/ /
* | | Don't call enqueue_object_request() for quoted posts in public timelines.Gravatar grunfink2025-11-101-0/+1
| | |
* | | Use 'quoteUri' instead of 'quote'.Gravatar grunfink2025-11-091-1/+1
| | |
* | | Ensure the "quote" post attribute is an URL.Gravatar grunfink2025-11-091-1/+1
| | | | | | | | | | | | | | | It seems that Bookwyrm generate "quote" fields for another thing, because why not.
* | | Also show unlisted posts in public timelines.Gravatar grunfink2025-11-091-1/+1
| | |
* | | Show quoted posts.Gravatar grunfink2025-11-091-0/+15
|/ /
* / Keep track of deleted users and return 410 Gone for them.Gravatar grunfink2025-10-241-2/+3
|/
* xs_http.h: new file.Gravatar grunfink2025-10-131-0/+1
|
* CW fixGravatar byte2025-09-281-11/+3
|
* Added back instance and actor failure icons.Gravatar grunfink2025-09-281-0/+16
|
* implementing visibility scopesGravatar byte2025-09-201-32/+112
|
* Return a 404 instead of an empty page if requesting a non-public post.Gravatar grunfink2025-09-091-1/+1
|
* post_langs can now be set from the user settings.Gravatar grunfink2025-08-121-0/+12
|
* Editing a post keeps the original language.Gravatar grunfink2025-08-121-9/+28
|
* Post language is used in new posts.Gravatar grunfink2025-08-121-1/+2
|
* Show a dropdown with the user configured languages (still unused).Gravatar grunfink2025-08-121-0/+25
|
* Show the version in the 'powered by...' link.Gravatar grunfink2025-08-011-1/+1
|
* Fixed link in tags, when it's an RSS.Gravatar grunfink2025-07-241-1/+7
|
* Added an actor refresh in html_entry().Gravatar grunfink2025-06-271-1/+6
|
* Fixed crash.Gravatar grunfink2025-06-251-4/+5
|
* More webmention hook tweaks.Gravatar grunfink2025-06-241-0/+7
|
* Added a webmention hook.Gravatar grunfink2025-06-241-5/+15
|
* New field 'favicon_url' in server.json.Gravatar grunfink2025-06-181-4/+9
|
* Another search by URL tweak (for Pixelfed).Gravatar grunfink2025-06-071-0/+8
|
* If a metadata value is an account handle, it's also verified using webfinger.Gravatar grunfink2025-06-071-3/+10
|
* Always show the 'pending follow confirmations' if there are any.Gravatar grunfink2025-06-071-2/+2
| | | | Even if the toggle is off.
* Skip incomplete attachments.Gravatar grunfink2025-06-061-0/+3
|
* Added web UI to set the notify webhook.Gravatar grunfink2025-05-301-0/+11
|
* mastoapi: fixed uploaded images name collision.Gravatar grunfink2025-05-291-1/+1
|
* Activated hashtag RSS polling.Gravatar grunfink2025-05-281-1/+2
|
* Don't prepend a # before a hashtag that is really an URL.Gravatar grunfink2025-05-281-3/+10
|
* New file rss.c.Gravatar grunfink2025-05-281-97/+0
|
* Renamed timeline_to_rss() to rss_from_timeline().Gravatar grunfink2025-05-281-2/+2
|
* New function timeline_here().Gravatar grunfink2025-05-271-6/+2
|
* Renamed timeline_here() to timeline_here_by_md5(), as it always should have ↵Gravatar grunfink2025-05-271-3/+3
| | | | been.