]>
git.mxchange.org Git - friendica.git/log
Tobias Diekershoff [Tue, 15 May 2018 17:23:13 +0000 (19:23 +0200)]
revertig file movements
Hypolite Petovan [Tue, 15 May 2018 16:53:17 +0000 (12:53 -0400)]
Merge pull request #5058 from M-arcus/patch-2
[DOCS] Environment variables: Add explanation
Marcus Müller [Tue, 15 May 2018 16:49:40 +0000 (18:49 +0200)]
[DOCS] Environment variables: Add explanation
Resolves https://github.com/friendica/friendica/issues/4791
Hypolite Petovan [Tue, 15 May 2018 16:13:34 +0000 (12:13 -0400)]
Merge pull request #5057 from M-arcus/patch-2
[BUGFIX] .htaccess: Add file
Marcus Müller [Tue, 15 May 2018 16:09:24 +0000 (18:09 +0200)]
[BUGFIX] .htaccess: Rename file
Marcus Müller [Tue, 15 May 2018 16:00:12 +0000 (18:00 +0200)]
Revert "[BGUFIX] .htaccess: Add file"
This reverts commit
7e099bf9c0c2aaa21b7fe1cc4dd0ded9bb2e3420 .
Marcus Müller [Tue, 15 May 2018 16:00:12 +0000 (18:00 +0200)]
[BGUFIX] .htaccess: Add file
Fixes https://github.com/friendica/friendica/pull/5042#issuecomment-
389218702
Hypolite Petovan [Tue, 15 May 2018 02:51:07 +0000 (22:51 -0400)]
Merge pull request #5042 from Quix0r/rewrites/curly-braces-is-result-usage-002
Rewrites/curly braces is result usage 002
Roland Häder [Mon, 14 May 2018 20:34:11 +0000 (22:34 +0200)]
Added empty line after if() block (convention)
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Mon, 14 May 2018 20:25:39 +0000 (22:25 +0200)]
Fixes:
- used empty() instead of x()
- removed superflous count()
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 20:50:09 +0000 (22:50 +0200)]
Fixed parser error
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 14:58:40 +0000 (16:58 +0200)]
Continued:
- merged 2 if() into one with &&
- added TODO for possible rewrite (avoid "complex" code)
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 14:46:58 +0000 (16:46 +0200)]
Cleanups:
- added empty lines
- removed old-lost commented out line
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 06:01:16 +0000 (08:01 +0200)]
No direct $a->config['foo'] needed when Config::get() is around ...
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 05:38:53 +0000 (07:38 +0200)]
Redis:
- added support for redis server:
// Required to actually have this cache driver active:
$a->config['system']['cache_driver'] = 'redis';
// ---- OPTIONAL/DEFAULT: ----
$a->config['system']['redis_host'] = '127.0.0.1';
$a->config['system']['redis_port'] = 6379;
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 03:36:47 +0000 (05:36 +0200)]
Continued:
- you can directly use constant($var) instead of this switch()
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 02:40:52 +0000 (04:40 +0200)]
Continued:
- system,worker_dont_fork may not be set, always set default to "false" to
have it properly set as Config::get() may one day behave differently
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 10 May 2018 13:13:08 +0000 (15:13 +0200)]
Continued:
- return is a keyword, not a function, so don't add braces here
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 10 May 2018 12:48:27 +0000 (14:48 +0200)]
Continued:
- avoided else() block which reduces code complexibility
- used more x()
- added curly braces
- added known type-hints
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 10 May 2018 11:19:50 +0000 (13:19 +0200)]
Continued:
- used x() to make sure the array key is there, else an E_NOTICE is triggered
- added type-hints where it is safe
Signed-off-by: Roland Häder <roland@mxchange.org>
Michael [Thu, 3 May 2018 18:19:40 +0000 (18:19 +0000)]
"pending" shouldn't be set as well by default ...
Michael [Thu, 3 May 2018 17:43:10 +0000 (17:43 +0000)]
Urgent bugfix: Public contacts had been blocked automatically when created
Michael [Thu, 3 May 2018 13:03:41 +0000 (13:03 +0000)]
Reshares had been detected falsely so that were rejected by Diaspora
Michael [Thu, 3 May 2018 04:43:50 +0000 (04:43 +0000)]
Ensure that the link will be displayed correctly on Diaspora
Michael [Wed, 2 May 2018 21:12:48 +0000 (21:12 +0000)]
Some corrections
Michael [Wed, 2 May 2018 19:26:15 +0000 (19:26 +0000)]
Replace old database queries with the new ones
Roland Häder [Thu, 3 May 2018 00:17:16 +0000 (02:17 +0200)]
Continued:
- ops, another rebase-leftover fixed
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 2 May 2018 21:13:03 +0000 (23:13 +0200)]
Continued:
- moved to Config class
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 2 May 2018 21:07:28 +0000 (23:07 +0200)]
Continued:
- ops, did accidently modify composer.lock ... :-(
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 26 Jul 2017 20:16:29 +0000 (22:16 +0200)]
Windows' CRLF are looking strange under Linux, let's get rid of them/
Also let's ignore addons/ as it is optional and depend on if the webmaster
wants it or not.
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 20 Jul 2017 18:19:28 +0000 (20:19 +0200)]
General project change:
- cleaned up vendor/ as it is a "build" (means being locally recreated)
directory and therefor should *NOT* be committed.
- updated composer.lock
- that is what would be updated now if vendor/ would be ignored, instead a lot
files has been changed in vendor/
- people running `composer install` regulary will get (with the old way) a dirty
working copy (version-controlled files being modified) and then cannot update
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Haeder [Sun, 2 Apr 2017 19:29:06 +0000 (21:29 +0200)]
Fixes for composer:
- ./vendor/ is being prepared by executing `utils/composer.phar install`, no
need to have it around
- converted .gitignore to LF line-ending (more common over the whole project)
- no need to have them around ...
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 25 Mar 2017 14:06:54 +0000 (15:06 +0100)]
Opps, cutted this out by accident ...
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 25 Mar 2017 12:46:28 +0000 (13:46 +0100)]
was a bit confusing for me or I was not sleeping to much ...
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 25 Mar 2017 12:37:15 +0000 (13:37 +0100)]
PHP5 does not support native type-hints, except `array` + used dbm::is_result()
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 25 Mar 2017 12:01:41 +0000 (13:01 +0100)]
removed TODO, one day this all needs refacturizing ...
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Fri, 24 Mar 2017 19:39:00 +0000 (20:39 +0100)]
Continued:
- converted multiple single-line comments into one multi-line comment (please
stop abusing programming languages!)
- added more TODO tags for type-hints (upcoming rewrite)
- opps, one space was only fixed in develop branch, not in this PR branch
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 22:37:58 +0000 (23:37 +0100)]
fixed comment and explained one
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 22:05:53 +0000 (23:05 +0100)]
added more curly braces + spaces for #3254
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 21:49:05 +0000 (22:49 +0100)]
old behaviour restored
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 21:33:12 +0000 (22:33 +0100)]
added curely branches + reverted back to old behaviour (may come back one day)
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 21:26:07 +0000 (22:26 +0100)]
better comment added by @Hypolite
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 14:23:30 +0000 (15:23 +0100)]
added spaces + some curly braces + some usage of dbm::is_result()
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 15:07:30 +0000 (16:07 +0100)]
more spaces + some curly spaces added
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 14:23:30 +0000 (15:23 +0100)]
added spaces + some curly braces + some usage of dbm::is_result()
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 25 Jan 2017 14:59:27 +0000 (15:59 +0100)]
added more curly braces + a bit more usage of dbm::is_result()
Signed-off-by: Roland Häder <roland@mxchange.org>
Michael [Thu, 3 May 2018 18:19:40 +0000 (18:19 +0000)]
"pending" shouldn't be set as well by default ...
Michael [Thu, 3 May 2018 17:43:10 +0000 (17:43 +0000)]
Urgent bugfix: Public contacts had been blocked automatically when created
Michael [Thu, 3 May 2018 13:03:41 +0000 (13:03 +0000)]
Reshares had been detected falsely so that were rejected by Diaspora
Michael [Thu, 3 May 2018 04:43:50 +0000 (04:43 +0000)]
Ensure that the link will be displayed correctly on Diaspora
Michael [Wed, 2 May 2018 21:12:48 +0000 (21:12 +0000)]
Some corrections
Michael [Wed, 2 May 2018 19:26:15 +0000 (19:26 +0000)]
Replace old database queries with the new ones
Roland Häder [Thu, 3 May 2018 00:17:16 +0000 (02:17 +0200)]
Continued:
- ops, another rebase-leftover fixed
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 2 May 2018 21:07:28 +0000 (23:07 +0200)]
Continued:
- ops, did accidently modify composer.lock ... :-(
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 2 May 2018 20:26:24 +0000 (22:26 +0200)]
Continued:
- renamed .htaccess -> .htaccess-dist and ignored .htaccess to allow local
changes
- described /nbproject/private/ ignore (NetBeans IDE's private project data)
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 11 Oct 2017 20:21:35 +0000 (22:21 +0200)]
Fixes/cleanup:
- added missing curly braces (and some absent caused parser errors)
- <include|require>[_once] are keywords, so don't use them as such
- removed/added empty lines
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 26 Jul 2017 20:16:29 +0000 (22:16 +0200)]
Windows' CRLF are looking strange under Linux, let's get rid of them/
Also let's ignore addons/ as it is optional and depend on if the webmaster
wants it or not.
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 26 Jul 2017 20:15:24 +0000 (22:15 +0200)]
rewrote based on CR by @Annando, thank you. It is now clear to me.
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 26 Jul 2017 17:50:13 +0000 (19:50 +0200)]
LF fixed
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 20 Jul 2017 18:19:28 +0000 (20:19 +0200)]
General project change:
- cleaned up vendor/ as it is a "build" (means being locally recreated)
directory and therefor should *NOT* be committed.
- updated composer.lock
- that is what would be updated now if vendor/ would be ignored, instead a lot
files has been changed in vendor/
- people running `composer install` regulary will get (with the old way) a dirty
working copy (version-controlled files being modified) and then cannot update
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 20 Jul 2017 18:04:32 +0000 (20:04 +0200)]
Continued:
- added spaces and curly braces
- added more TODOs as there really more to be done
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 19 Jul 2017 21:16:54 +0000 (23:16 +0200)]
Opps, added missing curly brace.
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 16 Jul 2017 18:35:42 +0000 (20:35 +0200)]
fixed parser error
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 17 May 2017 16:28:00 +0000 (18:28 +0200)]
Continued:
- added more curly braces
- replaced if (blaFoo()) { return true; } return false; with return blaFoo();
- added spaces
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Haeder [Fri, 14 Apr 2017 14:59:51 +0000 (16:59 +0200)]
Continued:
- added curly braces/spaces
- added TODOs (type-hints, old-lost code)
- more usage of dbm::is_result()
- combined some if() return stuff into a simple return statement
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 8 Apr 2017 17:05:50 +0000 (19:05 +0200)]
added spaces + curly braces and TODOs for upcoming type-hint rewrite. Please
note that PHP5 allows 'array' as type-hint already (+ interface/class name).
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Wed, 5 Apr 2017 20:17:15 +0000 (22:17 +0200)]
Continued a bit:
- more spaces added
- more curly braces added
- let's use x($_FOO, 'bar') and not isset($_FOOT['bar'])
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sun, 2 Apr 2017 19:29:06 +0000 (21:29 +0200)]
Fixes for composer:
- ./vendor/ is being prepared by executing `utils/composer.phar install`, no
need to have it around
- converted .gitignore to LF line-ending (more common over the whole project)
- no need to have them around ...
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 25 Mar 2017 14:06:54 +0000 (15:06 +0100)]
Opps, cutted this out by accident ...
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 25 Mar 2017 13:32:49 +0000 (14:32 +0100)]
rewrote for() loop to foreach() + added curly braces/spaces
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 25 Mar 2017 12:46:28 +0000 (13:46 +0100)]
was a bit confusing for me or I was not sleeping to much ...
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 25 Mar 2017 12:37:15 +0000 (13:37 +0100)]
PHP5 does not support native type-hints, except `array` + used dbm::is_result()
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Sat, 25 Mar 2017 12:01:41 +0000 (13:01 +0100)]
removed TODO, one day this all needs refacturizing ...
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 22:37:58 +0000 (23:37 +0100)]
fixed comment and explained one
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 22:05:53 +0000 (23:05 +0100)]
added more curly braces + spaces for #3254
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Häder [Sat, 4 Mar 2017 09:34:46 +0000 (10:34 +0100)]
more usage of dbm::is_result() and sorted a bit statements
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 21:49:05 +0000 (22:49 +0100)]
old behaviour restored
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 21:33:12 +0000 (22:33 +0100)]
added curely branches + reverted back to old behaviour (may come back one day)
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 21:26:07 +0000 (22:26 +0100)]
better comment added by @Hypolite
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Thu, 23 Mar 2017 19:48:48 +0000 (20:48 +0100)]
replaced some tabs -> spaces + added curly braces #3254
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Haeder [Tue, 21 Mar 2017 21:39:53 +0000 (22:39 +0100)]
fixed curly braces + added more
Signed-off-by: Roland Haeder <roland@mxchange.org>
Roland Häder [Sat, 4 Mar 2017 09:58:33 +0000 (10:58 +0100)]
it is documenation, right? :-)
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 14:23:30 +0000 (15:23 +0100)]
added spaces + some curly braces + some usage of dbm::is_result()
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 15:07:30 +0000 (16:07 +0100)]
more spaces + some curly spaces added
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 15:01:56 +0000 (16:01 +0100)]
added spaces + some curly braces
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 15:01:56 +0000 (16:01 +0100)]
added spaces + some curly braces
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 14:23:30 +0000 (15:23 +0100)]
added spaces + some curly braces + some usage of dbm::is_result()
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 15:07:30 +0000 (16:07 +0100)]
more spaces + some curly spaces added
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 15:01:56 +0000 (16:01 +0100)]
added spaces + some curly braces
Signed-off-by: Roland Häder <roland@mxchange.org>
Hypolite Petovan [Sun, 13 May 2018 14:05:38 +0000 (10:05 -0400)]
Merge pull request #5037 from Quix0r/rewrites/curly-braces-is-result-usage-001
Rewrites/curly braces is result usage 001
Roland Häder [Sun, 13 May 2018 12:20:15 +0000 (14:20 +0200)]
Beatification:
- added space after curly braces (MrPetovan)
- added TODO for possible rewrite candidate
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 08:20:15 +0000 (10:20 +0200)]
reverted back ...
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 08:06:43 +0000 (10:06 +0200)]
Fixes:
- brought back comment (ops)
- DBM is the class name (not dbm)
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 08:05:31 +0000 (10:05 +0200)]
Ops, was redundant here.
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 08:04:49 +0000 (10:04 +0200)]
No extra empty line here
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Sun, 13 May 2018 08:02:47 +0000 (10:02 +0200)]
Ops, one to much ...
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 14:23:30 +0000 (15:23 +0100)]
added spaces + some curly braces + some usage of dbm::is_result()
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Thu, 26 Jan 2017 08:38:52 +0000 (09:38 +0100)]
Continued:
- added missing space/curly braces
- added TODOs for later adding a lot type-hints, without these (and they are
long time around in PHP) anything can be handled over to the method/function.
Signed-off-by: Roland Häder <roland@mxchange.org>
Roland Häder [Wed, 25 Jan 2017 14:59:27 +0000 (15:59 +0100)]
added more curly braces + a bit more usage of dbm::is_result()
Signed-off-by: Roland Häder <roland@mxchange.org>
Hypolite Petovan [Tue, 8 May 2018 08:02:37 +0000 (04:02 -0400)]
Merge pull request #4996 from fabrixxm/docs-theme-dev
Docs: add a note on adding `use` on theme.php