summaryrefslogtreecommitdiff
path: root/html.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't show the :shortname: as a title tag.Gravatar default2024-03-021-1/+0
| | | | It sometimes breaks usernames and it's pointless anyway.
* html.c: html_user_body: snac-property: Put &nbsp; (empty space) instead of <br>Gravatar Yonle2024-02-231-1/+1
| | | | Signed-off-by: Yonle <yonle@lecturify.net>
* Added *another argument* to html_timeline() to select where posts are taken ↵Gravatar default2024-02-221-7/+10
| | | | | | | from. This way, the /instance logged-in timeline can show posts that are not really into a user's timeline.
* Reverted ae6aafeb881c075a49eddd834bcfc21e9fc63b18.Gravatar default2024-02-211-2/+0
| | | | This breaks the experimental /instance timeline for now.
* In html_timeline(), always pick the msg from the global object storage.Gravatar default2024-02-211-0/+2
| | | | | | This allows the logged instance timeline to work. Does this have more implications? Not sure.
* Started an instance page.Gravatar default2024-02-211-1/+23
|
* More local -> read_only argument renamings.Gravatar default2024-02-211-5/+5
|
* Added a page argument to html_timeline().Gravatar default2024-02-211-7/+11
|
* Renamed 'local' argument to 'read_only', as it was a bit confusing.Gravatar default2024-02-211-13/+13
|
* The link verification time is stored as a time_t.Gravatar default2024-02-201-3/+13
| | | | | This way, it will be easier in an eventual future to test if a link verification is too old to be trusted.
* Enqueue a verify_links q_item in admin/user-setup.Gravatar default2024-02-201-0/+2
|
* Added a 'verified link' title to them.Gravatar default2024-02-161-1/+2
|
* Moved verified links to its own json file.Gravatar default2024-02-151-1/+1
|
* Renamed validated_metadata to validated_links.Gravatar default2024-02-151-4/+4
|
* Show validation checks and rel=me in links in the public page.Gravatar default2024-02-141-4/+22
|
* Added some experimental code to hide follower-only failed replies.Gravatar default2024-02-141-0/+10
|
* New function is_msg_from_private_user().Gravatar default2024-02-101-18/+3
|
* Made descs a bit longer.Gravatar default2024-02-071-1/+1
|
* If it's a one-post-only page, show the post content instead of the bio.Gravatar default2024-02-071-5/+15
|
* Some og:description tweaks.Gravatar default2024-02-071-11/+21
|
* Added a navigation footer (i.e., an optional "More..." link) to the ↵Gravatar default2024-02-051-0/+13
| | | | notification page.
* Added paging to notify_list(), and use it in the notifications page.Gravatar default2024-02-051-3/+3
|
* notify_list() no longer has a new_only argument.Gravatar default2024-02-051-3/+2
|
* Don't serve a cached admin page if it's older than the server start time.Gravatar default2024-02-051-1/+7
|
* In build_mentions(), avoid adding a user handle more than once.Gravatar default2024-02-051-3/+7
|
* New field in 'New Post...' to include an inReplyTo URL.Gravatar default2024-02-011-0/+8
|
* Added the date to each notification.Gravatar default2024-01-311-1/+9
|
* Moved the favicon link out of the CSS loop.Gravatar default2024-01-281-5/+6
|
* feature(favicon): Add favicon support (#107)Gravatar Florian Paul Azim Hoberg2024-01-281-1/+8
|
* Use get_attachments() in html_entry().Gravatar default2024-01-241-120/+18
|
* Added a fix to also show the mutual emoji in the people page.Gravatar default2024-01-241-4/+6
|
* Moved the mutual and bot emojis after the link, where they belong.Gravatar default2024-01-241-11/+11
|
* Show a handshake emoji for mutual relations (following + follower).Gravatar default2024-01-241-9/+21
|
* Do a very basic conversion of content if it's markdown.Gravatar default2024-01-181-0/+8
| | | | Peertube videos have this.
* New function get_atto(), to get the attributedTo field.Gravatar default2024-01-181-28/+3
|
* Deleted breakpoint.Gravatar default2024-01-181-2/+0
|
* Fixed bad actor value in the button bar for Peertube videos.Gravatar default2024-01-181-3/+2
|
* Added some support for Peertube videos.Gravatar default2024-01-181-10/+92
|
* Added support for ntfy notifications. You can configure either a self-hosted ↵Gravatar Stefano Marinelli2024-01-121-0/+26
| | | | server or use the official ntfy.sh, and you have the option to use a private token to protect access and topics.
* In the people page, followers and following lists are foldable.Gravatar default2024-01-041-2/+6
|
* Updated copyright year.Gravatar default2024-01-041-1/+1
|
* The actor link is now an anchored link to the people page for connected users.Gravatar default2023-12-271-8/+23
|
* Really do what is described in previous commit.Gravatar default2023-12-261-1/+1
|
* Don't create a link to the people page from the public one.Gravatar default2023-12-261-1/+6
|
* The "boosted" link in html_entry() points to the user in the people page.Gravatar default2023-12-261-2/+5
| | | | | This way, it's easier to do something on someone whom we follow, like MUTE them, limit, etc.
* Don't wrap the content in <p></p>; just add a final <p>.Gravatar default2023-12-211-4/+1
|
* Correctly insert polls and attachments inside CW.Gravatar default2023-12-191-2/+2
|
* CSS code must be emitted as preformatted and not escaped.Gravatar default2023-12-161-2/+2
|
* Added some spacing to the Operations... form.Gravatar default2023-12-151-0/+4
|
* html.c: media: disable preloadingGravatar Yonle2023-12-151-0/+2
| | | | Signed-off-by: Yonle <yonle@lecturify.net>