summaryrefslogtreecommitdiff
path: root/html.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-04-05New function lastlog_write().Gravatar default1-2/+5
2023-02-26Don't inline empty avatars in og:avatar meta property.Gravatar default1-1/+9
2023-02-26Added some property og meta headers.Gravatar default1-6/+33
2023-02-23Minor actor name code refactoring.Gravatar default1-14/+22
2023-02-20Show the avatar in the nav menu.Gravatar default1-0/+14
2023-02-20New checkbox 'Only for mentioned people'.Gravatar default1-11/+17
2023-02-20New boolean argument 'priv' to msg_note().Gravatar default1-1/+2
2023-02-20Email notifications can be disabled.Gravatar default1-3/+11
2023-02-15Rewritten text 'More...' as 'Load more...'.Gravatar default1-1/+1
2023-02-15Added form field code for uploading the avatar.Gravatar default1-6/+4
2023-02-15Added support for receiving un uploaded avatar.Gravatar default1-0/+19
2023-02-10Improved Delete button fix.Gravatar default1-6/+7
2023-02-10Fixed actor / post Delete confusion bug.Gravatar default1-2/+4
2023-02-08Followers can be deleted.Gravatar default1-13/+21
2023-02-08Only show the 'in reply to' link if level == 0.Gravatar default1-9/+11
2023-02-08Use timeline_here() for parents in html_entry().Gravatar default1-1/+1
2023-02-07Added web interface for the Telegram information.Gravatar default1-0/+19
2023-02-05New user option 'purge_days'.Gravatar default1-0/+15
2023-02-05Deleted the type argument from object_get_my_md5() and object_get().Gravatar default1-3/+3
It was never used.
2023-02-05Renamed timeline_get() to timeline_get_by_md5(), as that is what id does.Gravatar default1-3/+3
2023-02-05New function timeline_get().Gravatar default1-1/+1
2023-02-03More debug level changes.Gravatar default1-2/+2
2023-01-28Attached images have a hashed name instead of a time one.Gravatar default1-2/+2
2023-01-28Image attachments in posts can now have descriptions ('alt text').Gravatar default1-3/+19
2023-01-28New post field 'alt_text'.Gravatar default1-3/+13
2023-01-27New function default_avatar_base64().Gravatar default1-2/+1
2023-01-24Added edit support for posts.Gravatar default1-3/+69
2023-01-17Updated year in copyright notices.Gravatar default1-1/+1
2023-01-12Backport from xs.Gravatar default1-5/+5
2023-01-11Show the More... link above the 'About this site'.Gravatar default1-2/+2
2023-01-11Deleted unused argument in timeline_admire().Gravatar default1-2/+2
2023-01-11Deleted unused arguments in timeline_add().Gravatar default1-1/+1
2023-01-09Show the mentioned people after a CC:.Gravatar default1-0/+5
2023-01-03Don't generate empty children popups.Gravatar default1-10/+17
2022-12-25Add a link rel=alternate to the user RSS.Gravatar default1-0/+6
2022-12-23timeline_request() fixes the canonical id for the object.Gravatar default1-2/+2
2022-12-19The 'Older...' details are back, now better.Gravatar default1-1/+19
2022-12-18Deleted the 'Older...' details tag because it's becoming too confusing.Gravatar default1-12/+1
2022-12-18Conversations can be collapsed.Gravatar default1-2/+7
2022-12-16Replaced all calls to post() with enqueue_message().Gravatar default1-5/+5
2022-12-15Also show the 'updated' timestamp.Gravatar default1-9/+24
2022-12-10Use object_likes_len() and object_announces_len() in the post score.Gravatar default1-3/+3
2022-12-08Don't show the 'Boost' button for private messages.Gravatar default1-3/+5
2022-12-08Also add 'redir' hidden field to Replies.Gravatar default1-0/+2
2022-12-08Some tweaks to improve the page position after like or boost.Gravatar default1-13/+9
2022-12-08Wrapped too long string literals.Gravatar default1-2/+4
2022-12-08Little tweak to previous change to avoid a memleak.Gravatar default1-1/+7
2022-12-07Fix mentions with one @ signGravatar Alex Schroeder1-0/+1
In a mention like the following, the old code had a problem: It would split the name by '@' and get a list of two elements. Since this is less than three, it would then try to get the domain name from the href ("social.alexschroeder.ch") and concatenate it with the name, resulting in "alex@social.alexschroeder.ch@social.alexschroeder.ch". The reason was that the code expects an initial "@". In that case, splitting "@alex@social.alexschroeder.ch" would result in three elements, and no domain name guessing would happen. If, on the other hand, the name was "@foo" then finding the domain name in the URL and appending it so that you get @foo@domain.name is the correct solution. "tag": [ { "type": "Mention", "href": "https://social.alexschroeder.ch/alex", "name": "alex@social.alexschroeder.ch" } ], The fix consists in prepending an "@" if the name does not start with "@" and leaving the rest of the code unchanged.
2022-12-07Ask for just 1 more entry beyond the current page to test if there are more.Gravatar default1-2/+2
2022-12-07Fixed last minute typo.Gravatar default1-1/+1