aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Channel.php
Commit message (Collapse)AuthorAgeFilesLines
* Display delayed posts on author's channel pageMax Kostikov2020-05-021-2/+6
|
* some work on zot6 DMsMario2020-01-151-0/+1
|
* Don't show pinned post on single post displayingMax Kostikov2019-12-081-1/+1
|
* Add content pinning supportMax Kostikov2019-12-041-0/+7
|
* Remove duplicate Opengraph creationMax Kostikov2019-11-181-3/+0
|
* Move back Opengraph markup creation to init stageMax Kostikov2019-11-181-1/+13
|
* Remove base64 decode check on Opengraph tags createMax Kostikov2019-11-181-1/+1
|
* Update Channel.phpMax Kostikov2019-10-121-3/+3
|
* Move Opengraph functions to common librariesMax Kostikov2019-10-121-40/+2
|
* Minor Opengraph improvementsMax Kostikov2019-10-111-3/+5
|
* Add Opengraph og:type objectMax Kostikov2019-10-111-0/+2
|
* Better Opengraph markup for channelMax Kostikov2019-10-111-11/+38
|
* add opengraph meta info to channel pagezotlabs2019-06-291-0/+11
|
* http signature consolidationzotlabs2019-06-261-1/+1
|
* improve channel date queryMario Vavti2019-04-271-11/+7
|
* fix typosMario Vavti2019-03-181-2/+2
|
* some more xss preventionMario Vavti2019-03-181-2/+2
|
* make mod channel deal with b64 encoded mid\sMario Vavti2018-12-181-0/+8
| | | | ;
* this is brutalzotlabs2018-11-061-0/+44
|
* move *_list_mode to featuresMario Vavti2018-10-041-1/+1
|
* Status editor hookM. Dent2018-09-291-1/+1
|
* include item.title in /network and /channel searchMario Vavti2018-09-111-1/+2
|
* missing textMario Vavti2018-09-071-1/+1
|
* provide a noscript_content switch for mod channel and displayMario Vavti2018-09-071-3/+12
|
* more code optimisationzotlabs2018-08-201-6/+8
|
* channel page performance improvement: don't use "checkjs" with an associated ↵zotlabs2018-08-201-42/+44
| | | | page reload. Wrap a static copy of the content in noscript tags instead.
* apply changes to slider defaults across all modules that use buildQuery for ↵zotlabs2018-06-151-2/+2
| | | | updates
* 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