summaryrefslogtreecommitdiff
path: root/html.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Minor tweaks to paged timeline output.Gravatar default2022-12-071-17/+18
|
* Pagination of the public and private pageGravatar Alex Schroeder2022-12-061-8/+31
| | | | | | | | | | | Use the query parameters skip and show to control what you can see, e.g. /alex/admin?skip=0&show=4 Don't use or save the timeline cache if either is set. The following functions were changed from accepting a single max parameter to accepting both skip and show: timeline_simple_list, timeline_list, index_list_desc.
* Add loading="lazy" to all imagesGravatar Alex Schroeder2022-12-061-4/+4
| | | | | | | | | Only load images when they're visible. "The loading attribute on an <img> element … can be used to instruct the browser to defer loading of images/iframes that are off-screen until the user scrolls near them." https://developer.mozilla.org/en-US/docs/Web/Performance/Lazy_loading#images_and_iframes
* Fixed crash in new code (moron me...)Gravatar default2022-12-041-1/+5
|
* Match the CW checkbox status to what is currently configured.Gravatar default2022-12-041-1/+1
|
* No sensitive content in the public timelineGravatar Alex Schroeder2022-12-041-10/+6
| | | | | | Don't use h3 in the public timeline. Use the details tag, as before, but default to "open" if the config setting is set. Only do this in the private timeline (where local == 0, as set by html_get_handler).
* Add an option to always show sensitive contentGravatar Alex Schroeder2022-12-041-6/+22
| | | | | | | | | - add a cw key to user.json - add a cw checkbox to user setup form - handle the cw parameter when updating user setup - when rendering an entry, look at the cw config: if set, use a h3 heading for the summary; otherwise use details + summar + SENSITIVE CONTENT like before
* Deleted debug code in html_entry().Gravatar default2022-12-041-8/+2
|
* Don't show the messages' md5.Gravatar default2022-12-041-0/+2
|
* Don't try to admire empty messages.Gravatar default2022-12-031-4/+10
|
* Show the development version.Gravatar default2022-12-031-1/+4
|
* Always show who boosted something, not only when it's on level 0.Gravatar default2022-12-031-43/+42
|
* Upgraded local/ to public/.Gravatar default2022-12-031-1/+7
|
* New function timeline_simple_list().Gravatar default2022-12-031-4/+2
|
* Show stray parents in the origin.Gravatar default2022-12-021-22/+12
|
* More old code deletions.Gravatar default2022-12-021-2/+0
|
* Fixed one post queries.Gravatar default2022-12-021-4/+6
|
* Fixed RSS and outbox to use the new data storage.Gravatar default2022-12-021-1/+5
|
* Big data storage change.Gravatar default2022-12-021-67/+75
|
* Close a tag in history list.Gravatar default2022-12-011-1/+1
|
* Changed following_list() to return a list of actors.Gravatar default2022-11-281-1/+1
|
* Upgraded followers to the new db.Gravatar default2022-11-281-4/+3
|
* Don't call object_del() from timeline_del().Gravatar default2022-11-261-0/+3
| | | | Only delete from each user's cache, not from the global database.
* Renamed 'admin' link label to 'private'.Gravatar default2022-11-261-2/+2
|
* Use macro XS_ALL were possible.Gravatar default2022-11-251-2/+2
|
* Use the new hide API.Gravatar default2022-11-241-2/+2
|
* Backport from xs (new xs_set() API).Gravatar default2022-11-211-3/+5
|
* Deleted the link at the end of each RSS entry.Gravatar default2022-11-201-4/+0
|
* More RSS tweaks.Gravatar default2022-11-201-14/+5
|
* Fixed RSS link.Gravatar default2022-11-201-4/+4
|
* Add a link to the post in each RSS entry.Gravatar default2022-11-201-0/+4
|
* More RSS tweaks.Gravatar default2022-11-201-3/+3
|
* More RSS tweaks.Gravatar default2022-11-201-2/+15
|
* RSS improvements.Gravatar default2022-11-191-16/+12
|
* Fixed crash when testing for the Accept header.Gravatar default2022-11-181-3/+5
|
* Log if the RSS is served.Gravatar default2022-11-181-1/+3
|
* Added a RSS link in the public timeline page.Gravatar default2022-11-181-2/+5
|
* More RSS tweaks.Gravatar default2022-11-181-1/+3
|
* More RSS cropping.Gravatar default2022-11-181-1/+1
|
* Added rss on output.Gravatar default2022-11-181-4/+87
|
* New function enqueue_output_to_actor().Gravatar default2022-11-181-3/+2
|
* Fixed Follow bug, introduced by latest sharedInbox change.Gravatar default2022-11-181-1/+2
|
* Call sanitize() as soon as possible.Gravatar default2022-11-161-4/+2
|
* Also add the 'Sensitive content' checkbox to replies.Gravatar default2022-11-161-0/+2
|
* Posts can be marked as 'sensitive content' (not yet for replies).Gravatar default2022-11-161-0/+10
|
* Show the complete date as a 'title' popup.Gravatar default2022-11-151-1/+2
|
* Deleted unused code.Gravatar default2022-11-131-3/+1
|
* Also delete JS in the people/ page.Gravatar default2022-11-131-13/+8
|
* Set "u-url mention" class for mentions.Gravatar default2022-11-131-1/+1
|
* Use details/summary HTML tags instead of JS for the 'Reply' button.Gravatar default2022-11-131-9/+7
|