]>
git.mxchange.org Git - friendica.git/log
Michael [Sun, 26 Aug 2018 07:56:33 +0000 (07:56 +0000)]
Avoid useless contact updates
Tobias Diekershoff [Sun, 26 Aug 2018 05:47:10 +0000 (07:47 +0200)]
Merge pull request #5669 from annando/notices-in-notifications
Removed notices in notifications
Michael Vogel [Sun, 26 Aug 2018 05:32:30 +0000 (05:32 +0000)]
Merge pull request #5668 from MrPetovan/task/2800-frio-ios-prevent-input-zoom
[frio] Prevent Safari iOS input zoom
Michael [Sun, 26 Aug 2018 05:27:50 +0000 (05:27 +0000)]
Removed notices in notifications
Hypolite Petovan [Sat, 25 Aug 2018 23:28:40 +0000 (19:28 -0400)]
[frio] Mobile: force input font size to 16px
Hypolite Petovan [Sat, 25 Aug 2018 23:28:04 +0000 (19:28 -0400)]
[frio] Fix HTML warnings
- Add missing space between attributes
- Add missing closing tag to logo SVG mask
Michael Vogel [Sat, 25 Aug 2018 22:31:22 +0000 (22:31 +0000)]
Issue 5660: Check if .well-known is reachable (#5661)
* Issue 5660: Check if .well-known is reachable
* Fixes ".."
* Some text correction
* Some more correction
* Anf again some changed text :-)
Michael Vogel [Sat, 25 Aug 2018 21:48:50 +0000 (21:48 +0000)]
Issue 5260: Ensure that user data is really deleted (#5666)
* Issue 5260: Ensure that user data is really deleted
* Missing files
Michael Vogel [Sat, 25 Aug 2018 21:38:54 +0000 (21:38 +0000)]
Issue 5320: Deleting of events returned a wrong message (#5663)
* Issue 5320: Deleting of events returned a wrong message
* Remove unneeded variable
Michael Vogel [Sat, 25 Aug 2018 19:35:01 +0000 (19:35 +0000)]
Merge pull request #5665 from tobiasd/
20180825 -nl
NL translation update THX Jeroen
Tobias Diekershoff [Sat, 25 Aug 2018 18:39:21 +0000 (20:39 +0200)]
NL translation update THX Jeroen
Tobias Diekershoff [Sat, 25 Aug 2018 17:55:36 +0000 (19:55 +0200)]
Merge pull request #5664 from annando/issue-4726
Isse 4726: Fixes the condition for showing hidden contacts
Michael [Sat, 25 Aug 2018 16:38:26 +0000 (16:38 +0000)]
Isse 4726: Fixes the condition for showing hidden contacts
Tobias Diekershoff [Sat, 25 Aug 2018 16:31:24 +0000 (18:31 +0200)]
Merge pull request #5662 from annando/messages-po
Added strings
Michael [Sat, 25 Aug 2018 15:38:34 +0000 (15:38 +0000)]
Added strings
Michael Vogel [Sat, 25 Aug 2018 13:48:00 +0000 (13:48 +0000)]
Issue 4960: Ignoring and blocking of contacts should work again (#5657)
* Issue 4960: Ignoring and blocking of contacts should work again
* Renamed functions
* This function should be renamed as well.
* We now have a frontend to block and ignore public contacts
* Hide some parts for public contacts
* Removed notices, public contact is now accessible from dirfind as well
* We now show contact conversations and contact posts
* We now use a new conversation mode
* The update functionality is disabled until it will work completely
* Fixing tabs chaos
* Update after posts on the contacts page will now work
* Show connect link
Tobias Diekershoff [Fri, 24 Aug 2018 12:46:21 +0000 (14:46 +0200)]
Merge pull request #5659 from annando/notices-oh-no
Oh no ... there are still some notices that want to be removed ...
Michael [Fri, 24 Aug 2018 11:09:58 +0000 (11:09 +0000)]
Oh no ... there are still some notices that want to be removed ...
Roland Häder [Fri, 24 Aug 2018 05:05:49 +0000 (07:05 +0200)]
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
fabrixxm [Thu, 23 Aug 2018 14:09:50 +0000 (16:09 +0200)]
API: add private value (bool) to item results (#5647)
* API: add private value (bool) to item results
friendica:private for xml
friendica_privarte for json
* API Docs: add a section about custom value returned in status data
Michael Vogel [Thu, 23 Aug 2018 13:51:58 +0000 (15:51 +0200)]
"dba" is now "DBA". This hadn't been respected at some places (#5655)
* "dba" is now "DBA". This hadn't been respected at some places
* Cleaning up unneeded stuff
Michael Vogel [Thu, 23 Aug 2018 08:00:25 +0000 (10:00 +0200)]
Fix: Mail notifications arrive again (#5654)
* Fix: Mail notifications arrive again
* Ensure that user data is always there
Michael Vogel [Wed, 22 Aug 2018 22:46:44 +0000 (00:46 +0200)]
Removing a small notice in the network.php (#5652)
Michael Vogel [Wed, 22 Aug 2018 04:14:16 +0000 (06:14 +0200)]
Fix the settings in frio (#5650)
rabuzarus [Wed, 22 Aug 2018 03:58:09 +0000 (05:58 +0200)]
fix redirection - don't dfrn auth when contact is still pending (#5648)
Michael Vogel [Tue, 21 Aug 2018 15:39:49 +0000 (17:39 +0200)]
You can now filter the community page by account types (#5649)
* You can now filter the community page by account types
* Better use "null"
Tobias Diekershoff [Tue, 21 Aug 2018 15:36:15 +0000 (17:36 +0200)]
Merge pull request #5646 from annando/notes
The notes are now fetching their content from a central function
Michael Vogel [Tue, 21 Aug 2018 15:35:09 +0000 (17:35 +0200)]
Removed notices that revealed themselfes over night ... (#5645)
* Removed notices that revealed themselfes over night ...
* And more notices removed that occured over night
* One more ..
* Some more notices of the day ...
Michael [Tue, 21 Aug 2018 07:35:22 +0000 (07:35 +0000)]
The notes are now fetching their content from a central function
Tobias Diekershoff [Tue, 21 Aug 2018 04:06:52 +0000 (06:06 +0200)]
Merge pull request #5644 from annando/notices
And again ... notices
Michael [Mon, 20 Aug 2018 21:20:21 +0000 (21:20 +0000)]
And again ... notices
Michael Vogel [Mon, 20 Aug 2018 20:32:55 +0000 (22:32 +0200)]
The content generation for the display page is now using a centralized function (#5642)
* The content generation for the display page is now using a centralized function
* Small correction to avoid notices
Philipp [Mon, 20 Aug 2018 20:15:39 +0000 (22:15 +0200)]
Automatic Installation fix (#5565)
* Automatic Install Config Fix
* new unittest for AutomaticInstallation
* unittest for autoinstall
- removed password check
* removed bak-file
* automatic install
- always save environment variables
- just skip db environment if not `--savedb` is set
* fixed help (options)
* fixed help (options)
* Deleting Auto-Install tests until fix for proper DB restoring
Michael Vogel [Mon, 20 Aug 2018 05:54:26 +0000 (07:54 +0200)]
Fix for double $$ (#5641)
* Fix for double $$
* And a second $$
Tobias Diekershoff [Mon, 20 Aug 2018 04:30:30 +0000 (06:30 +0200)]
typo in config/settings.ini.php (#5640)
rabuzarus [Mon, 20 Aug 2018 04:29:50 +0000 (06:29 +0200)]
Frio: new photos upload template (#5637)
* frio - add missing page template to various photo pages (fix missing background)
* frio - rework photo upload album selection
* frio - rework photo upload button
* frio - fix photo upload button and acl
Michael Vogel [Mon, 20 Aug 2018 04:26:05 +0000 (06:26 +0200)]
Improved profile page, improved "limit" handling (#5639)
* Improved profile page, improved "limit" handling
* Update will now work again
* Update will work now
rabuzarus [Sun, 19 Aug 2018 21:04:28 +0000 (23:04 +0200)]
Merge pull request #5634 from astifter/photo_view_page_icons
[frio] Add icons on photo view page.
Andreas Neustifter [Sat, 18 Aug 2018 21:47:04 +0000 (23:47 +0200)]
Add icons on photo view page.
This page still had textual links, change them to icons. Also remove missleading header.
Michael Vogel [Sun, 19 Aug 2018 13:37:56 +0000 (15:37 +0200)]
We now use a central function to fetch the importer (#5636)
Michael Vogel [Sun, 19 Aug 2018 12:46:11 +0000 (14:46 +0200)]
Some easy to replace "q" calls have been replaced by "DBA" calls (#5632)
* Some easy to replace "q" calls have been replaced by "DBA" calls
* Simplified the GUID creation
* And one in the API ...
* And OStatus has got some DBA calls more
* Just some more replaced database calls
* The event query is now simplified
* Events are now shown again
* subthread is now using the DBA calls as well
* Some more replaced database calls
* And some more replaced database calls and prevented notices
* Better use gravity
* Some more replaced database stuff
* Some more replaced database calls in DFRN.php
* The gcontact class now has got the new DBA functions as well
* The Contact class is now changed to new database functions as well
* Small correction
* We can now delete without cascade
* One more functionality is safe for future changes
Michael Vogel [Sun, 19 Aug 2018 10:14:12 +0000 (12:14 +0200)]
Avoid blocks with invalid entries in superblock (#5635)
Andreas Neustifter [Sun, 19 Aug 2018 02:19:36 +0000 (04:19 +0200)]
[frio] Vertically align toolbar items. (#5633)
Michael Vogel [Sun, 19 Aug 2018 01:52:21 +0000 (03:52 +0200)]
placeholder for a funny commit description for removing some more notices (#5631)
Michael Vogel [Sat, 18 Aug 2018 06:20:50 +0000 (08:20 +0200)]
And still there are notices that have to be removed ... (#5629)
* And still there are notices that have to be removed ...
* Notice removed in ACL part
* Fix missing fields for notifications
* Fixes issue 5630
Philipp [Fri, 17 Aug 2018 19:41:46 +0000 (21:41 +0200)]
Config Console Tests (#5621)
* Config Console Tests
- `MultiUseConsole` is now a testable console
- `ConsoleTest` is a abstract TestClass for console tests
- `ConfigConsoleTest` tests the config console commands
* disable preserve global state because of smarty
* fixed requires & basepath für Console Test
Michael Vogel [Fri, 17 Aug 2018 11:44:06 +0000 (13:44 +0200)]
Merge pull request #5628 from tobiasd/
20180817 -cs
CS translation update THX Aditoo
Tobias Diekershoff [Fri, 17 Aug 2018 08:28:57 +0000 (10:28 +0200)]
CS translation update THX Aditoo
Tobias Diekershoff [Fri, 17 Aug 2018 07:33:02 +0000 (09:33 +0200)]
Merge pull request #5626 from annando/notices-oh-yeah
Removed notices, will it ever end?
Michael Vogel [Fri, 17 Aug 2018 03:31:06 +0000 (05:31 +0200)]
Merge pull request #5617 from MrPetovan/task/use-contact-network
Fix bug with ACL and contact network page
Michael [Fri, 17 Aug 2018 03:19:42 +0000 (03:19 +0000)]
Removed notices, will it ever end?
Michael Vogel [Thu, 16 Aug 2018 10:41:57 +0000 (12:41 +0200)]
Merge pull request #5624 from fabrixxm/fix/api-seen
api: fix `friendica/notification/seen` api call
fabrixxm [Thu, 16 Aug 2018 09:46:53 +0000 (11:46 +0200)]
api: fix `friendica/notification/seen` api call
Fix return item related to notification when notification is set as seen
Tobias Diekershoff [Thu, 16 Aug 2018 07:28:57 +0000 (09:28 +0200)]
Merge pull request #5622 from annando/forum-storage
Fix for storing posts of private forums
Michael [Wed, 15 Aug 2018 20:13:10 +0000 (20:13 +0000)]
Fix for storing posts of private forums
Tobias Diekershoff [Wed, 15 Aug 2018 12:31:13 +0000 (14:31 +0200)]
Merge pull request #5620 from annando/fix-remove
Fix a fatal error when removing contacts
Hypolite Petovan [Wed, 15 Aug 2018 10:12:49 +0000 (12:12 +0200)]
Revert "Change contact post link to contact network page"
This reverts commit
4c32661022ae2cabb548333862e3974b75678980 .
Michael [Wed, 15 Aug 2018 09:27:25 +0000 (09:27 +0000)]
Fix a fatal error when removing contacts
Michael Vogel [Wed, 15 Aug 2018 09:27:11 +0000 (11:27 +0200)]
Fixes the missing refresh after ignoring or unignoring a thread (#5614)
* Fixes the missing refresh after ignoring or unignoring a thread
* Use numeric values to make the JSON output happy
Tobias Diekershoff [Wed, 15 Aug 2018 05:23:02 +0000 (07:23 +0200)]
Merge pull request #5619 from annando/dba-item
Use the Item class instead of DBA calls when possible
Michael [Wed, 15 Aug 2018 04:41:49 +0000 (04:41 +0000)]
Use the Item class instead of DBA calls when possible
rabuzarus [Tue, 14 Aug 2018 23:58:51 +0000 (01:58 +0200)]
frio - add missing page template to various photo pages (fix missing background) (#5613)
Hypolite Petovan [Tue, 14 Aug 2018 22:43:45 +0000 (00:43 +0200)]
Change contact post link to contact network page
Hypolite Petovan [Tue, 14 Aug 2018 22:43:27 +0000 (00:43 +0200)]
Fix bug with ACL and contact network page
- Require user array parameter in ACL::getFullSelectorHTML
- Change all wrong uses where user array was replaced by default
permissions array
Michael Vogel [Tue, 14 Aug 2018 19:37:44 +0000 (21:37 +0200)]
Removed notices in the frio theme (#5610)
* Removed notices in the frio theme
* And fixed notices in the notifications
* And some more in frio
* Null is the default value
* And some small notice in the probing removed
* Added note
* Clarified note
* And a removed notice in OStatus
Michael Vogel [Tue, 14 Aug 2018 10:39:18 +0000 (12:39 +0200)]
Merge pull request #5612 from tobiasd/
20180814 -it
IT translations THX Fabio
Tobias Diekershoff [Tue, 14 Aug 2018 08:01:09 +0000 (10:01 +0200)]
IT translations THX Fabio
Michael Vogel [Tue, 14 Aug 2018 04:08:32 +0000 (06:08 +0200)]
Merge pull request #5611 from MrPetovan/task/defer-ping-acl
Call asynchronous JS after complete page load
Michael Vogel [Tue, 14 Aug 2018 01:15:39 +0000 (03:15 +0200)]
Fix: Wrong array element / added logging for DFRN connects (#5609)
Hypolite Petovan [Tue, 14 Aug 2018 01:01:36 +0000 (03:01 +0200)]
Call asynchronous JS after complete page load
Tobias Diekershoff [Mon, 13 Aug 2018 04:42:08 +0000 (06:42 +0200)]
Merge pull request #5607 from annando/remove-contact
Remove contacts in the background
Tobias Diekershoff [Mon, 13 Aug 2018 04:38:36 +0000 (06:38 +0200)]
Merge pull request #5606 from annando/issue-5605
Issue-5605: Fixes notice
Michael [Sun, 12 Aug 2018 17:15:47 +0000 (17:15 +0000)]
Remove contacts in the background
Michael [Sun, 12 Aug 2018 08:00:37 +0000 (08:00 +0000)]
Issue-5605: Fixes notice
Michael Vogel [Sun, 12 Aug 2018 06:27:39 +0000 (08:27 +0200)]
Merge pull request #5604 from tobiasd/
20180812 -cs
CS translation update THX Aditoo
Tobias Diekershoff [Sun, 12 Aug 2018 05:55:35 +0000 (07:55 +0200)]
Merge pull request #5603 from annando/fix-notification
Fix: We now are notified again when a new post had been created
Tobias Diekershoff [Sun, 12 Aug 2018 05:05:05 +0000 (07:05 +0200)]
CS translation update THX Aditoo
Michael [Sun, 12 Aug 2018 04:34:56 +0000 (04:34 +0000)]
Fix: We now are notified again when a new post had been created
Michael Vogel [Sat, 11 Aug 2018 21:05:42 +0000 (23:05 +0200)]
And again, and again, and again, ... some more notices removed (#5601)
* And again, and again, and again, ... some more notices removed
* And some more notices ...
* Some more place
Roland Häder [Sat, 11 Aug 2018 20:40:44 +0000 (22:40 +0200)]
Stopped using deprecated constants NETWORK_* (#5537)
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Removed deprecated NETWORK_* constants as per code reviewer's request.
Michael Vogel [Sat, 11 Aug 2018 13:07:18 +0000 (15:07 +0200)]
Merge pull request #5602 from rabuzarus/20180811_-_frio_hover_effects
frio - improve some hover effects to action link/buttons
rabuzarus [Sat, 11 Aug 2018 11:41:55 +0000 (13:41 +0200)]
frio - improve some hover effects to action link/buttons
Tobias Diekershoff [Sat, 11 Aug 2018 05:48:33 +0000 (07:48 +0200)]
Merge pull request #5598 from annando/issue-3838
Added a note concerning the question how to fix issue 3838
Tobias Diekershoff [Sat, 11 Aug 2018 05:47:28 +0000 (07:47 +0200)]
Merge pull request #5599 from annando/postupdate
Console script to ensure that all post updates are finished
Tobias Diekershoff [Sat, 11 Aug 2018 05:44:30 +0000 (07:44 +0200)]
Merge pull request #5597 from annando/even-more-notices
Some more removed notices
Michael [Fri, 10 Aug 2018 21:20:25 +0000 (21:20 +0000)]
Console script to ensure that all post updates are finished
Michael [Fri, 10 Aug 2018 20:28:41 +0000 (20:28 +0000)]
Added a note concerning the question how to fix issue 3838
Michael [Fri, 10 Aug 2018 19:39:43 +0000 (19:39 +0000)]
Some more removed notices
Tobias Diekershoff [Fri, 10 Aug 2018 05:07:40 +0000 (07:07 +0200)]
Merge pull request #5595 from annando/deprecated-networks
Hide deprecated networks
Michael Vogel [Fri, 10 Aug 2018 05:01:20 +0000 (07:01 +0200)]
Merge pull request #5594 from tobiasd/
20180810 -cs
CS translation update THX Aditoo
Michael [Fri, 10 Aug 2018 04:59:26 +0000 (04:59 +0000)]
Hide deprecated networks
Tobias Diekershoff [Fri, 10 Aug 2018 04:57:34 +0000 (06:57 +0200)]
CS translation update THX Aditoo
Tobias Diekershoff [Fri, 10 Aug 2018 04:54:53 +0000 (06:54 +0200)]
Merge pull request #5593 from annando/issue-4507
Issue 4507: Superblock does now work on comments as well
Michael [Fri, 10 Aug 2018 04:27:52 +0000 (04:27 +0000)]
Issue 4507: Superblock does now work on comments as well
Tobias Diekershoff [Thu, 9 Aug 2018 09:38:42 +0000 (11:38 +0200)]
update PL translations THX waldis (#5590)
* update PL translations THX waldis
* missing space
Tobias Diekershoff [Thu, 9 Aug 2018 07:16:11 +0000 (09:16 +0200)]
Merge pull request #5592 from annando/avoid-probe
Avoid probing for contacts if we don't want to update
Michael [Thu, 9 Aug 2018 06:19:23 +0000 (06:19 +0000)]
Avoid probing for contacts if we don't want to update
Tobias Diekershoff [Thu, 9 Aug 2018 05:51:45 +0000 (07:51 +0200)]
Merge pull request #5591 from annando/fix-collapse
Fix: Prevent threads from being collapsed in network view
Michael [Thu, 9 Aug 2018 05:40:35 +0000 (05:40 +0000)]
Fix: Prevent threads from being collapsed in network view
Tobias Diekershoff [Thu, 9 Aug 2018 04:28:23 +0000 (06:28 +0200)]
Merge pull request #5589 from annando/and-again
And again removed notices