summaryrefslogtreecommitdiff
path: root/html.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-11-24Fixed missing else in html people list.Gravatar default1-0/+1
2024-11-24Changed help for the search box.Gravatar default1-1/+1
2024-11-24The search box also searches accounts (via webfinger).Gravatar default1-0/+42
2024-11-24Fixed bio processing in the public page.Gravatar default1-4/+4
2024-11-24Added web UI for the 'approve_followers' checkbox.Gravatar default1-0/+14
2024-11-24New web actions "Approve" and "Discard".Gravatar default1-0/+28
2024-11-24Pending follow notifications are shown as "Follow Request".Gravatar default1-0/+3
2024-11-24The people page shows 'Approve' and 'Discard' buttons for pending follows.Gravatar default1-6/+23
2024-11-23Minor tweak to new metadata.Gravatar default1-1/+1
2024-11-23The 'metadata' field in user.json is now a string instead of a dict.Gravatar default1-29/+45
2024-11-19New function get_in_reply_to().Gravatar default1-2/+2
2024-11-14Minor tweak to proxy code (some URLs were not correctly formed).Gravatar default1-1/+1
2024-11-12The proxy token seed is created on startup and never stored.Gravatar default1-1/+1
2024-11-12Added new proxy authorization by token.Gravatar default1-11/+28
2024-11-10Fixed possible crash in proxy code.Gravatar default1-1/+1
2024-11-10In the RSS description, don't convert the bio from Markdown.Gravatar default1-1/+1
2024-11-10RSS feeds are now 2.0 instead of 0.91.Gravatar default1-4/+33
2024-11-07Fixed some URLs that should not be proxied.Gravatar default1-3/+3
2024-11-07Moved make_url() to data.c.Gravatar default1-16/+0
2024-11-07Fixed 'strict_public_timelines' being applied to the private timeline.Gravatar default1-1/+1
2024-11-07Use the raw_path for proxying (as some media may include ? arguments).Gravatar default1-1/+7
2024-11-07Don't proxy our own URLs.Gravatar default1-1/+1
2024-11-07Propagate the caching headers.Gravatar default1-0/+6
2024-11-07Omit the 'image' field if there are any attachment.Gravatar default1-2/+2
2024-11-07Propagate 'last-modified' and 'etag' fields while proxying.Gravatar default1-1/+7
But does it work?
2024-11-07Also use the proxy in replace_shortnames().Gravatar default1-9/+16
2024-11-07Changed make_url().Gravatar default1-23/+35
2024-11-07More proxy_media work.Gravatar default1-9/+16
2024-11-07New function make_url(), that takes 'proxy_media' into account.Gravatar default1-2/+53
2024-11-05New server variable 'strict_public_timelines'.Gravatar default1-3/+13
2024-10-29Set some HTML url fields to be type 'url'.Gravatar default1-2/+2
2024-10-28Save the 'collapse_threads' from the web UI.Gravatar default1-0/+4
2024-10-28Show the collapse_threads field in the user settings.Gravatar default1-0/+10
2024-10-28Use the 'collapse_threads' field from user.json.Gravatar default1-0/+3
2024-10-28Some work towards collapsing threads by default.Gravatar default1-1/+2
2024-10-28Fixed crash.Gravatar default1-1/+1
2024-10-27Skip all repeated attachments, not only images.Gravatar default1-5/+4
2024-10-27If an attached image URL is already in the post content, don't show it.Gravatar default1-0/+7
2024-10-26In notifications, show the emoji of the EmojiReact.Gravatar default1-0/+10
2024-10-25Fixed HTML typo.Gravatar default1-1/+1
2024-10-23More HTML tweaks.Gravatar default1-8/+8
2024-10-19Tweaked HTML for the timeline pages.Gravatar default1-7/+7
2024-10-19Tweaked HTML for the notifications page.Gravatar default1-2/+6
2024-10-19Fixed Draft: label title.Gravatar default1-6/+7
2024-10-08Fixed emojis in the public profile.Gravatar default1-1/+3
2024-10-06Don't cache a page if an error is set.Gravatar default1-0/+2
2024-10-06New HTML variable error (still unused).Gravatar default1-14/+32
2024-09-27When editing a draft, the checkbox is kept set.Gravatar default1-6/+9
2024-09-15Skip ugly line breaks at the beginning of a post's content.Gravatar default1-0/+4
2024-09-14Some tweaks to draft post code.Gravatar default1-21/+38