aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
Commit message (Collapse)AuthorAgeFilesLines
* use dbunescbin() for cover photosMario2018-03-081-1/+1
|
* we need the javascript in the template since strings are involvedMario Vavti2018-03-072-0/+12
|
* we do not support separate mobile themes anymoreMario Vavti2018-03-071-7/+7
|
* fix some issues with friend suggestions on standalone sites with no ↵zotlabs2018-03-052-2/+7
| | | | 'suggestme' volunteers. This wrongly pulled up a site directory suggesting everybody on the site. While a better outcome than finding nobody, this does not fit with our ethical design goals. If there are no friends of friends, we will only suggest those who volunteer to be on the default suggestion list. Also do not attempt to load poco data from dead sites.
* bugfix: unable to reset profile fields to defaults in admin/profs by ↵zotlabs2018-03-051-9/+30
| | | | emptying the textarea
* add dummy f= arg to suggestion urls, use directory version of suggest for ↵zotlabs2018-03-041-1/+1
| | | | newmember link instead of the suggest module as the UI is prettier.
* There was no pdl for mod_thing; add one because it's only a link away from ↵zotlabs2018-03-041-0/+5
| | | | profile creation and remains on that page until you go elsewhere and new members may need help to find their way out
* add federation property to webfingerzotlabs2018-03-021-1/+2
|
* several email validation issueszotlabs2018-02-281-5/+6
|
* Create one and only one 'registration successful, check your email' popup.zotlabs2018-02-281-4/+2
|
* provide new member widget which sits beneath the notifications for the first ↵zotlabs2018-02-281-1/+1
| | | | 60 days after an account creation.
* important bugfix: if logged in locally and mod_display returns nothing owned ↵zotlabs2018-02-281-2/+3
| | | | by your uid, retry with known public uids rather than issue 'permission denied'. Affects the ability to view search results for otherwise public posts 'in context'.
* rename Addon/Feature settings to addon settings [string change]zotlabs2018-02-271-1/+1
|
* provide usage hint on addon settings page to save each panel before opening ↵zotlabs2018-02-271-0/+1
| | | | another. [String change, not for 3.2]
* Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_mergezotlabs2018-02-262-3/+15
|\
| * Merge remote-tracking branch 'mike/master' into devMario Vavti2018-02-251-3/+16
| |\
| * | do not overwrite abook flags if we are not ownerMario Vavti2018-02-251-1/+1
| | |
| * | mark connections where we do not have post_comments permissions with an no ↵Mario Vavti2018-02-242-2/+14
| | | | | | | | | | | | entry sign.
* | | require directory servers to be using some modern form of encryption; which ↵zotlabs2018-02-261-1/+2
| |/ |/| | | | | means we only currently have 2.
* | make the profile photo image picker work correctly with multiple profiles.zotlabs2018-02-241-3/+16
|/
* open_pubstream logic was messy and wrongzotlabs2018-02-231-1/+7
|
* style the 'use existing' button a wee bitzotlabs2018-02-232-2/+2
|
* use embed photos javascript widget to select existing photos for profile and ↵zotlabs2018-02-234-7/+15
| | | | cover photos
* Usability and member experience: remove street address info from the default ↵zotlabs2018-02-233-2/+3
| | | | basic profile fields, mention that the site banner can be full HTML, mention on the techlevel setting that this also controls what additional features may be visible.
* handle error logging in on cloud page (post method not implemented), ↵zotlabs2018-02-221-0/+3
| | | | politely ask viewer to refresh the page rather than alert 'unknown error'.
* 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
* move Zotlabs\Zot\Verify to Zotlabs\Lib\Verify as part of the z6 re-orgzotlabs2018-02-212-2/+2
|
* Add 'Validate' button to new_channel page and disable submit until ↵zotlabs2018-02-201-0/+1
| | | | validated. This is to get around the issue that clicking submit without ever focusing and blurring the nickname field won't actually submit the form but only provide validation. It needs to be clicked again to submit. The first click processed the blur but remained on the page with no feedback. If somebody has better workarounds, please provide. The goal is to ensure that the name and the nickname are both validated before we can submit.
* Merge pull request #980 from dawnbreak/devgit-marijus2018-02-192-27/+27
|\ | | | | Refactor OAuth2Server a bit.
| * Refactor OAuth2Server a bit.Klaus Weidenbach2018-02-172-27/+27
| |
* | Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_mergezotlabs2018-02-162-7/+7
|\|
| * Merge remote-tracking branch 'mike/master' into devMario Vavti2018-02-162-54/+47
| |\
| * | some more DB tuning.Mario Vavti2018-02-152-7/+7
| | |
| * | Merge remote-tracking branch 'mike/master' into devMario Vavti2018-02-152-5/+6
| |\ \
* | | | refactor of the DB update system. Updates are now stored individually in ↵zotlabs2018-02-161-25/+29
| |_|/ |/| | | | | | | | Zotlabs/Update/_nnnn.php and are objects; so only the pending updates need to be loaded and executed rather than all historical updates. There is one single number (DB_UPDATE_VERSION) representing the current version and it is EQUAL TO the last known update. A dummy update _1201 was created to address the difference in counting behaviour; it will be executed on the next change of DB_UPDATE_VERSION as well as the next update. The database config values are also loaded from disk on every update immediately before setting the update lock in order to reduce timing conflicts and race conditions.
* | | extend the oauth2 storage driver so that we can use our own channel tablezotlabs2018-02-152-54/+47
| | |
* | | Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_mergezotlabs2018-02-141-1/+12
|\| | | |/ |/|
| * Merge remote-tracking branch 'mike/master' into devMario Vavti2018-02-143-2/+21
| |\
| * | since we only save the parent mid in notify we must look for thr_parent when ↵Mario Vavti2018-02-131-1/+12
| | | | | | | | | | | | dealing with likes
* | | provide option to block the public stream unless authenticated, since there ↵zotlabs2018-02-142-5/+6
| |/ |/| | | | | could be legal issues with unmoderated content
* | Merge branch 'share'zotlabs2018-02-132-1/+20
|\ \
| * | turn shares into activities - make certain to pull addons or JSON-LD will ↵zotlabs2018-02-132-4/+8
| | | | | | | | | | | | chuck a wobbly
| * | initial share refactorzotlabs2018-02-121-1/+16
| |/
* / defperms: bad queryzotlabs2018-02-131-1/+1
|/
* Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_mergezotlabs2018-02-112-20/+20
|\
| * 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
| |
| * more db and queries finetuningMario Vavti2018-02-081-13/+13
| |
* | second part of hubzilla issue #972zotlabs2018-02-111-5/+4
| |
* | use new forum tag style in forum search postingszotlabs2018-02-111-1/+1
| |