Commit Graph

397 Commits

Author SHA1 Message Date
Thomas Willingham e41c983f2e Switch image URL to master branch 2017-05-20 02:38:01 +01:00
Thomas Willingham 86c4ac80c5 Update doco 2017-05-19 21:37:45 +01:00
Roland Häder 7a9456d5ac
Merge branch 'develop' of github.com:friendica/friendica into rewrites/coding-convention-split2-4-2
Fixed some stuff:
- converted some files from DOS to Uni* (CRLF -> LF)
- removed trailing white-spaces

Signed-off-by: Roland Häder <roland@mxchange.org>
2017-05-11 14:54:26 +02:00
Tobias Diekershoff 1f58bcc114 Merge pull request #3418 from gerhard6380/develop
New API calls for photo management
2017-05-08 06:56:24 +02:00
gerhard6380 0039ccf382 applied documentation convention 2017-05-07 21:43:29 +02:00
Hypolite Petovan 86cae070f2 Merge branch 'develop' into improvement/move-app-to-src-2 2017-05-07 12:58:11 -04:00
gerhard6380 f99d831686 move account/update_profile_image to section with general API's 2017-05-07 01:39:37 +02:00
gerhard6380 fa33293cf4 documentation for new api calls for photo management 2017-05-07 01:33:12 +02:00
Michael da75dbac58 added documention 2017-05-05 20:45:11 +00:00
Hypolite Petovan 96ae2ff224 Add doc about magic constants __FILE__ and __DIR__ 2017-05-03 10:30:23 -04:00
Hypolite Petovan a76256e6e9 Remove date mention 2017-05-02 23:37:45 -04:00
Hypolite Petovan dfd4c8528e Add new documentation page about moving classes to src 2017-05-02 23:37:40 -04:00
Michael 55c39a80fa Description added 2017-04-29 12:19:49 +00:00
Michael fa14096ea8 Added documentation 2017-04-29 08:11:54 +00:00
Tobias Diekershoff 06f5ce89b0 a typo 2017-04-28 09:48:07 +02:00
Hypolite Petovan 4493f37af3 Merge pull request #3390 from annando/1704-cleaned_install
Added a PDO check in the install routine and cleaned it up
2017-04-27 21:17:13 -04:00
Tobias Diekershoff 069f8bf5a9 a cookie for the Rechtschreib-Nerd 2017-04-27 11:00:30 +02:00
Tobias Diekershoff 67aae6fca9 DE Server Blocklist docs 2017-04-27 07:29:49 +02:00
Hypolite Petovan 5d3021fd5a Add documentation about the new admin page 2017-04-26 22:22:01 -04:00
Michael bc2c0b0864 Added PDO in documentation. 2017-04-25 16:10:38 +00:00
Sandro Santilli 24c023eb0e Add default value to documentation for system.auth_cookie_lifetime 2017-04-21 17:20:28 +02:00
Sandro Santilli 270d604a6e Add documentation 2017-04-21 17:19:11 +02:00
Michael Vogel a941199760 Merge pull request #3344 from tobiasd/20170412-doc
some words about the workers
2017-04-17 08:11:18 +02:00
Tobias Diekershoff d5c2b9d4cd Ham 2017-04-17 07:33:12 +02:00
Alexandre Alapetite 6b250d3ae9 Merge branch 'develop' into MySQL5.7 2017-04-16 15:16:58 +02:00
Tobias Diekershoff f3393106ae typos 2017-04-16 13:59:52 +02:00
Tobias Diekershoff 5a0af71ade remote_self paragraph was missing in DE 2017-04-16 13:54:12 +02:00
Tobias Diekershoff 09da31442e Worker auf Deutsch 2017-04-16 13:47:57 +02:00
Tobias Diekershoff f4466b86e3 some EN doc about the worker 2017-04-16 13:32:41 +02:00
Tobias Diekershoff b8fd48dddc Merge pull request #3335 from annando/issue-3331
Issue 3331: Remove unneeded table "deliverq"
2017-04-14 07:32:30 +02:00
Michael d5c6f67a4a Changed documentation 2017-04-13 19:10:53 +00:00
Pierre Rudloff 8567113f0f Doc about j/k keyboard shortcuts 2017-04-13 17:20:05 +02:00
Michael 2b3a129480 Removed it here as well 2017-04-13 05:08:42 +00:00
Michael f399a1914f Removed documentation 2017-04-13 05:08:12 +00:00
Alexandre Alapetite d2901dcb00 Fix for MySQL 5.7+
https://github.com/friendica/friendica/issues/2786

Only tested on Ubuntu 16.10 with MySQL 5.7.17.

https://dev.mysql.com/doc/refman/8.0/en/timestamp-initialization.html

https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html#sqlmode_no_zero_date
As of MySQL 5.7.4, NO_ZERO_DATE is deprecated.

Patch based on the following search & replace (and then reverting some
changes in libraries):

```sh
grep -l '= "0000-00-00"' -r . | xargs sed -i -e "s/= \"0000-00-00\"/=
'0000-00-00'/g"

grep -l "0000-00-00" -r . | xargs sed -i -e "s/0000-00-00/0001-01-01/g"

grep -l "!= '0001-01-01'" -r . | xargs sed -i -e "s/!= '0001-01-01'/>
'0001-01-01'/g"

grep -l " === '0001-01-01'" -r . | xargs sed -i -e "s/ === '0001-01-01'/
<= '0001-01-01'/g"

grep -l " == '0001-01-01'" -r . | xargs sed -i -e "s/ == '0001-01-01'/
<= '0001-01-01'/g"

grep -l "strpos(\$dob, '0000-') === 0" -r . | xargs sed -i -e
"s/strpos(\$dob, '0000-') === 0/strpos(\$dob, '0000-') === 0 ||
strpos(\$dob, '0001-') === 0/g"

grep -l 'array("", "0001-01-01")' -r . | xargs sed -i -e 's/array("",
"0001-01-01")/array("", "0000-00-00", "0001-01-01")/g'

grep -l "\$dob = '0000-'" -r . | xargs sed -i -e "s/\$dob =
'0000-'/\$dob = '0001-'/g"
```
2017-04-11 23:00:45 +02:00
Hypolite Petovan b09553a71b Add Composer FAQ 2017-04-04 20:34:06 -04:00
Michael Vogel d9451ef969 Merge pull request #3279 from Hypolite/improvement/add-composer
Add Composer
2017-04-02 14:57:37 +02:00
Hypolite Petovan 95a5740229 Add links to EN pages in DE help 2017-04-02 08:54:11 -04:00
Hypolite Petovan 1c276b5cd5 Add Composer documentation 2017-04-01 17:58:21 -04:00
Michael 648d5bd047 More mcrypt is removed 2017-04-01 10:07:12 +00:00
Michael 0d49143a63 "no_utf" wasn't in use anymore - it is now removed completely 2017-03-25 10:51:00 +00:00
Tobias Diekershoff 4a3a61c594 coding standard for the docs 2017-02-24 08:37:36 +01:00
Michael Vogel 4d591c4a07 Merge pull request #2841 from Hypolite/issue/#2103-alt
Issue/#2103 alt - define coding standards for Friendica
2017-02-24 07:46:29 +01:00
Tobias Diekershoff 4de6ef1610 make it a code block 2017-02-22 09:37:00 +01:00
Tobias Diekershoff 79c2234cc1 EN quickstart had some dead links in it, DE version is ok 2017-02-22 07:21:36 +01:00
Eelco Maljaars d9d4a0ccc4 Document reformat as requested - 1 sentence per line 2017-02-21 19:32:03 +01:00
Eelco Maljaars 32660b64a7 Added note about MySQL sql_mode on newer versions of MySQL 2017-02-21 15:59:12 +01:00
Michael Vogel d61a4a67db Merge pull request #3109 from Hypolite/issue/scrap-tinymce
Scrap TinyMCE
2017-01-27 21:08:33 +01:00
Michael Vogel 288ad37c3c Merge pull request #3110 from tobiasd/20170127-translationdocs
translation docs now contain basic usage of the Transifex client
2017-01-27 18:14:08 +01:00
Tobias Diekershoff 8f59833c51 translation docs now contain basic usage of the Transifex client 2017-01-27 12:39:21 +01:00