aboutsummaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
...
* | | new feature (post 3.4): allow a different username to be used when importing.zotlabs2018-05-011-1/+6
| | |
* | | The channel import page seems to have missed the big theme cleanup of the ↵zotlabs2018-05-011-0/+25
| |/ |/| | | | | last couple of years.
* | parent folder permissions weren't being checked back to the cloud root ↵zotlabs2018-04-301-13/+26
|/ | | | directory in all cases
* hubzilla issue #1119 - xml2array has issues with some unicode ↵zotlabs2018-04-291-0/+11
| | | | sequences/conversions. Working around it using the older simplexml parser until it can be debugged, as Diaspora does not use complex XML with namespaces; which is where we need the more advaced capabilities of xml2array.
* remove unused functionzotlabs2018-04-281-24/+1
|
* where possible strip zid parameter from links that get pasted into posts so ↵zotlabs2018-04-263-5/+11
| | | | that they will get a correct zid when rendered
* more testing of attach_move() uncovered some issueszotlabs2018-04-261-57/+73
|
* function doc updatezotlabs2018-04-251-0/+1
|
* malformed embeds from gfycat hubzilla issue #1108zotlabs2018-04-251-2/+4
|
* some tagging workzotlabs2018-04-251-0/+15
|
* undo_post_tagging - don't waste a connection query if we're undoing a ↵zotlabs2018-04-251-3/+6
| | | | hashtag and not a mention.
* make tag autocomplete less scary looking in the editor. If this works out we ↵zotlabs2018-04-241-38/+74
| | | | can simplify and get rid of a huge amount of spaghetti tag logic.
* minor tweak to utf8 usernames after some testing of the underlying ↵zotlabs2018-04-232-0/+10
| | | | encode/decode funations. This probably isn't critical and I do not have a failure case but just trying to cover all bases.
* strings updateMario Vavti2018-04-231-1/+1
|
* update zot.php to fix php warning invalid argument supplied for foreach()Mario Vavti2018-04-231-16/+18
| | | | - this is taken from pr #1085 which was against wrong branch
* imagemagick preserves exif when scaling. GD does not. We do not want to ↵zotlabs2018-04-224-0/+23
| | | | preserve exif on thumbnails which we have rotated, as a browser reading the exif information could rotate them yet again. This checkin adds an abstract function to the generic photo driver which makes the behaviour consistent by stripping EXIF from imagick processed images. However, we will attempt to preserve any ICC colour profiles. See http://php.net/manual/en/imagick.stripimage.php
* better fix to permisisons.php - just cast to int. That's exactly what we want.zotlabs2018-04-191-4/+1
|
* permissions php error applying bit compare operation on a (presumed) booleanzotlabs2018-04-191-0/+3
|
* code booboo may have degraded the performance of the Trending tag query more ↵zotlabs2018-04-191-1/+2
| | | | than necessary
* follow activitypub by webfinger; requires addon update to all federation ↵zotlabs2018-04-182-8/+9
| | | | protocols
* relax restrictions to the design tools menu to allow those with write_pages ↵zotlabs2018-04-181-1/+1
| | | | permission; this doesn't fix the underlying modules though as there are some potential security issues at the moment.
* do not queue anything which lacks a destination urlzotlabs2018-04-181-0/+6
|
* just provide the trending tags in public stream by default and simplify the ↵zotlabs2018-04-181-1/+1
| | | | query to improve load times; I intend to do additional work on this feature later
* add alt_pager to mod_moderate, remove legacy $a parameter from all ↵zotlabs2018-04-171-1/+1
| | | | occurrences of alt_pager
* minor code optimisationzotlabs2018-04-172-10/+22
|
* also add the noisy 'rss' tagzotlabs2018-04-171-1/+1
|
* re-use directory safemode setting for public stream tag filtering since a ↵zotlabs2018-04-171-4/+13
| | | | handful of well-known tags skews the results wildly. Added 'bot' to the list just because it's noisy. A site can customise or nullify this feature if they desire.
* fine tuning the public stream tag resultszotlabs2018-04-171-9/+0
|
* public stream tag enhancementszotlabs2018-04-171-0/+64
|
* set the correct webfinger Accept: request header now that Mastodon fixed the ↵zotlabs2018-04-161-8/+1
| | | | bug that we changed it to work around
* Active channels information is a bit imprecise. Provide a higher accuracy ↵zotlabs2018-04-163-1/+21
| | | | method. This will require a transition period
* update the placeholderzotlabs2018-04-161-2/+2
|
* hubzilla issue #1078 ; provide content-type header for system emails (was ↵zotlabs2018-04-161-1/+2
| | | | already correct for notification emails)
* never mind. dbg(1) now gives you the basic debug result and dbg(2) gives you ↵zotlabs2018-04-141-1/+1
| | | | the verbose debug option with all the results.
* allow dbg(2) to only return the canonical SQL used in the query and the ↵zotlabs2018-04-141-1/+3
| | | | number of results, but not log every single result. Maybe we should use 1 for this and 2 for the full results, but I didn't really want to change the way people do things today. If anybody has a strong opinion about doing this, go ahead and change it and send a note to the developer forum.
* provide visible star status for starred postsMario Vavti2018-04-131-1/+1
|
* move the thread author menu to to the wall item photo. the menu list was ↵Mario Vavti2018-04-131-1/+1
| | | | getting too long.
* poll responses: start treating them as hidden activities now so that when ↵zotlabs2018-04-111-1/+1
| | | | this feature gets finished it will work flawlessly for versions greater than today.
* channel delegation: push current identity and pop it on logout from the ↵zotlabs2018-04-113-4/+14
| | | | delegated channel. This fixes the known issue of being forced to log back in after leaving the delegated channel.
* add commented_days parameter to item_expire(), default 7. Both expire_days ↵zotlabs2018-04-091-2/+8
| | | | and commented_days have to be exceeded to expire.
* Create catcloud widget and provide a type option which can include 'cards' ↵zotlabs2018-04-091-6/+10
| | | | or 'articles'
* fix xchan_query() for anon commentsMario Vavti2018-04-092-2/+2
|
* Merge pull request #1051 from anaqreon/auto-savegit-marijus2018-04-092-1/+13
|\ | | | | Auto-save comment and post text
| * Added feature setting for auto-save, defaulting to enabled.Andrew Manning2018-04-082-1/+13
| |
* | don't provide a connect button for transient identitieszotlabs2018-04-081-0/+6
| |
* | first cut of feature/techlevel mergezotlabs2018-04-081-2/+2
| |
* | anon_identity_init: put anonymous commenters in network 'anon' so that they ↵zotlabs2018-04-081-3/+3
|/ | | | can be easily distinguished from federated network members and handled appropriately.
* Remove remove plugin from \App::[] on uninstallM.Dent2018-04-071-1/+4
|
* Uninstall plugin on Exception on load.M.Dent2018-04-071-1/+1
|
* Add class for ExceptionsM.Dent2018-04-071-6/+6
|