aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Channel.php
Commit message (Collapse)AuthorAgeFilesLines
...
* distinct is needed or it can heavily impact pagination in certain situations ↵Mario Vavti2018-06-031-3/+3
| | | | (5 per page instead of 20). Add ordering to the select clause to mitigate errors in postgres and add item_thread_top = 1 for slightly better performance.
* merge groups and filed posts into activity filtersMario Vavti2018-05-311-1/+1
|
* strpos does not work with arrays :(Mario Vavti2018-05-301-1/+1
|
* restrict the network/channel navbar search to content and hashtagsMario Vavti2018-05-301-0/+3
|
* make navbar search use the module search function in /network and /channelMario Vavti2018-05-301-13/+16
|
* provide possibility of using different orderings (post, commented) on ↵zotlabs2018-05-291-4/+11
| | | | channel page
* bring jot reset to some more placesMario Vavti2018-05-211-1/+2
|
* minor regression on date queries from channel pagezotlabs2018-05-091-0/+3
|
* initial backend support for channel page item searchzotlabs2018-05-081-2/+18
|
* add alt_pager to mod_moderate, remove legacy $a parameter from all ↵zotlabs2018-04-171-1/+1
| | | | occurrences of alt_pager
* we shouldn't need distinct here, since ids_to_querystr() will filter ↵zotlabs2018-04-071-1/+1
| | | | duplicates. It might have an effect on pager totals. Need to monitor for a few days.
* also sort by id to not make mysql change the queryplan if offset is > 0 ↵Mario Vavti2018-02-221-1/+1
| | | | after recent index changes
* some more DB tuning.Mario Vavti2018-02-151-2/+2
|
* finally fix channel queryMario Vavti2018-02-091-4/+4
|
* use distinct in channel item query and minor notification cache improvementMario Vavti2018-02-091-5/+5
|
* remove some never used indices which prevented our item queries to find the ↵Mario Vavti2018-02-041-3/+3
| | | | right query execution plan in mysql and adjust some queries to optimze the result
* support for netselect queryzotlabs2017-11-011-0/+1
|
* remove notifications code from nav and go live with new notificationsMario Vavti2017-10-101-5/+2
|
* feed untranslated appnames to nav_set_selected() and query for the active ↵Mario Vavti2017-10-091-1/+1
| | | | app directly to get app details
* turn common friends into a widgetzotlabs2017-09-191-1/+1
|
* remove item_thread_top from simple_update query - we're already fetching ↵zotlabs2017-09-101-1/+1
| | | | distinct(parent) and this prevented comments from displaying after submission when remote-authed.
* this fixes an issue where in /channel/membername?mid=some_mid updates did ↵Mario Vavti2017-09-031-1/+1
| | | | not work when static updates were enabled. since in the current situation we always get a top-level-post mid, item_thread_top = 0 in the query will never return a result. change it to item_thread_top = 1
* introduce item_normal_update(). the differnce to item_normal() is that we do ↵Mario Vavti2017-09-031-3/+4
| | | | not query for item_deleted = 0 and therefor can find deleted likes which allows us to update our unlikes on the fly if static page update is enabled
* oembed provider cleanup, add oembed to cardszotlabs2017-08-231-1/+6
|
* plugin hook for update_unseenzotlabs2017-08-011-3/+7
|
* Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_mergezotlabs2017-07-211-1/+1
|\
| * provide a mechanism to mark apps active in the bingit-marijus2017-07-211-1/+1
| |
* | allow wildcard tag and category searcheszotlabs2017-07-201-2/+2
|/
* ability to use a portion of the message-id to display a message wasn't ↵zotlabs2017-07-181-2/+2
| | | | honoured in all cases.
* remove deprecated app parameter from conversation()zotlabs2017-06-201-2/+2
|
* hubzilla issue #810zotlabs2017-06-061-2/+2
|
* move profile tabs to app-trayMario Vavti2017-03-201-1/+1
|
* activity widget - like the forum widget but represents unseen activity by ↵zotlabs2017-03-021-0/+1
| | | | author. Still experimental until it can be tested with diaspora xchans, which may require additional urlencoding.
* use head_add_link() for feed discoveryzotlabs2017-02-211-5/+13
|
* convert manual page updates to a display setting instead of a featurezotlabs2016-11-021-1/+1
|
* allow your own likes/comments to be updated when in static update modezotlabs2016-11-021-1/+7
|
* feature: static page update as opposed to live update of conversations on ↵zotlabs2016-11-011-0/+1
| | | | the page. Changes will be queued until the page is reloaded. There may or may not be notifications of pending activity updates depending on your notification preferences. Endless scrolling (append) is still performed either way. This only affects changed and new/unseen items being inserted into the page.
* [TASK] Update Doxyfile and fix Doxygen errors.Klaus Weidenbach2016-10-131-27/+26
| | | | | | Updated Doxyfile to include new folders. Add a list for @hooks tags. Fixed some parsing problems for Doxygen.
* more backticksredmatrix2016-10-031-5/+5
|
* fix with update with /channel?f=&mid=hash issue #461Mario Vavti2016-09-281-1/+2
|
* more get rid of illegal offset in include/conversationredmatrix2016-09-081-3/+4
|
* move jotnets to jot and some cleanup (mostly whitespace)Mario Vavti2016-08-211-1/+2
|
* multiple acl workMario Vavti2016-08-031-1/+2
|
* move permissiondescription class to zotlabs/libredmatrix2016-07-111-2/+1
|
* remove the app $a passed to profile_load, also add profile_load to mod_wiki ↵redmatrix2016-06-261-1/+1
| | | | which should fix issue #431
* turn the oft-repeated block_public ... check into a function ↵redmatrix2016-05-221-274/+276
| | | | observer_prohibited()
* Update some modules to use new ACL dialog featureTreer2016-05-081-1/+2
|
* Unify permissions dialog for network posts, channel posts, and remote postsTreer2016-05-061-9/+1
| | | | | | * changes the warning from being about when a post is "sent" to when it's "shared", to match the Share button. * hyperlinks the "cannot be changed" part of the warning to the help file * adds some more content to the help file
* add help to some permissions dialogsTreer2016-05-051-1/+1
|
* Refine permissions dialog UITreer2016-05-041-1/+9
|