summaryrefslogtreecommitdiff
path: root/data.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* The purge ttl for stray global objects have been shortened.Gravatar default2023-01-041-2/+1
|
* Log write errors in _object_add() more prominently.Gravatar default2022-12-181-1/+3
|
* Replaced all calls to post() with enqueue_message().Gravatar default2022-12-161-1/+1
|
* New function enqueue_message().Gravatar default2022-12-161-0/+17
|
* Don't create a parent index if it already exists.Gravatar default2022-12-151-2/+4
|
* Fixed a deletion error.Gravatar default2022-12-141-1/+9
|
* Fixed crash when unfollowing.Gravatar default2022-12-131-1/+1
|
* New function index_len().Gravatar default2022-12-101-8/+39
|
* Merge pull request 'Pagination of the private and public page' (#13) from ↵Gravatar grunfink2022-12-071-10/+10
|\ | | | | | | | | | | kensanata/snac2:pagination into master Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/13
| * Pagination of the public and private pageGravatar Alex Schroeder2022-12-061-10/+10
| | | | | | | | | | | | | | | | | | | | | | 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.
* | Fixed memory leak.Gravatar default2022-12-061-1/+3
|/
* New function new_password().Gravatar default2022-12-041-1/+1
|
* Fix arguments in callto xs_fmtGravatar Alex Schroeder2022-12-041-1/+1
| | | | Without this, db_upgrade segfaults.
* Set default debug level to 1 for most object db functions.Gravatar default2022-12-041-8/+8
|
* In _object_user_cache(), don't call index_add() if link() fails.Gravatar default2022-12-031-2/+2
| | | | It will most probably fail because the object is already there.
* From timeline_admire(), add to both caches.Gravatar default2022-12-031-2/+4
|
* Don't store messages in public/ that are not public.Gravatar default2022-12-031-2/+9
| | | | They weren't shown anyway, but it's better to be sure.
* Add this user admires to the public timeline.Gravatar default2022-12-031-0/+4
|
* Upgrade timeline/ to private/.Gravatar default2022-12-031-1/+1
|
* Upgraded local/ to public/.Gravatar default2022-12-031-3/+7
|
* New function timeline_simple_list().Gravatar default2022-12-031-4/+12
|
* Use xs_set_result() in timeline_top_level().Gravatar default2022-12-021-6/+2
|
* New function object_here_by_md5().Gravatar default2022-12-021-4/+9
|
* New function object_parent().Gravatar default2022-12-021-3/+10
|
* More old code cleaning.Gravatar default2022-12-021-56/+1
|
* Renamed timeline_here() to object_here().Gravatar default2022-12-021-9/+9
|
* More old code deletions.Gravatar default2022-12-021-38/+1
|
* The old timeline is no longer maintained.Gravatar default2022-12-021-224/+11
|
* Big data storage change.Gravatar default2022-12-021-34/+43
|
* Fixed status codes for follower_add() and follower_del().Gravatar default2022-11-281-4/+4
|
* Changed following_list() to return a list of actors.Gravatar default2022-11-281-2/+12
|
* Upgraded followers to the new db.Gravatar default2022-11-281-51/+30
|
* New function object_user_cache_in().Gravatar default2022-11-281-0/+10
|
* New function object_del_if_unref().Gravatar default2022-11-271-2/+16
|
* Added some tweaks to file locking.Gravatar default2022-11-261-0/+8
|
* timeline_top_level() works.Gravatar default2022-11-261-16/+8
|
* New function timeline_top_level() (untested).Gravatar default2022-11-261-0/+53
|
* New function index_first().Gravatar default2022-11-261-0/+19
|
* Don't call object_del() from timeline_del().Gravatar default2022-11-261-4/+3
| | | | Only delete from each user's cache, not from the global database.
* Only call the expensive index_del() if unlink() did not fail.Gravatar default2022-11-261-2/+2
|
* Added comment.Gravatar default2022-11-261-1/+1
|
* _object_user_cache() also update the indexes.Gravatar default2022-11-261-11/+13
|
* New function object_user_cache_del().Gravatar default2022-11-261-4/+21
|
* Renamed object_user_cache() to object_user_cache_add().Gravatar default2022-11-261-3/+5
|
* Maintain a one-element index with each entry's parent.Gravatar default2022-11-261-4/+8
|
* New function object_add_ow().Gravatar default2022-11-261-3/+21
|
* Avoid calling time() so many times.Gravatar default2022-11-261-4/+3
|
* purge_server() deletes using object_del().Gravatar default2022-11-261-15/+31
|
* Delete redundant call to timeline_update_indexes().Gravatar default2022-11-251-1/+0
|
* New function timeline_update_indexes().Gravatar default2022-11-251-5/+5
|