aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* doc updatesfriendica2014-11-15152-1591/+3305
|
* Merge remote-tracking branch 'upstream/master'Habeas Codice2014-11-13107-411/+1641
|\ | | | | | | | | | | | | | | | | | | | | | | Conflicts: boot.php include/dba/dba_driver.php include/diaspora.php include/follow.php include/session.php include/zot.php mod/photos.php mod/ping.php
| * make it a bit personalfriendica2014-11-121-3/+3
| |
| * ok, I think I'll give it a break now.friendica2014-11-121-6/+8
| |
| * minor word tweaksfriendica2014-11-121-3/+3
| |
| * wordsmithfriendica2014-11-121-1/+1
| |
| * more minor wordsmithingfriendica2014-11-121-2/+2
| |
| * Some dates couldn't be verified without going way back in the archives so at ↵friendica2014-11-121-3/+3
| | | | | | | | least make this document accurate based on what I have in front of me.
| * add history linkfriendica2014-11-121-0/+1
| |
| * History of RedMatrix, Friendica, Mike Macgirvin, and associated other stuff.friendica2014-11-121-0/+48
| |
| * Document reinstalling, or saying don't do that without explicitly stating ↵Thomas Willingham2014-11-081-2/+10
| | | | | | | | don't do that.
| * update to German help fileszottel2014-11-072-3/+4
| |
| * doc updatesfriendica2014-11-07102-406/+1576
| |
* | PostgreSQL support initial commitHabeas Codice2014-11-132-0/+90
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were 11 main types of changes: - UPDATE's and DELETE's sometimes had LIMIT 1 at the end of them. This is not only non-compliant but it would certainly not do what whoever wrote it thought it would. It is likely this mistake was just copied from Friendica. All of these instances, the LIMIT 1 was simply removed. - Bitwise operations (and even some non-zero int checks) erroneously rely on MySQL implicit integer-boolean conversion in the WHERE clauses. This is non-compliant (and bad programming practice to boot). Proper explicit boolean conversions were added. New queries should use proper conventions. - MySQL has a different operator for bitwise XOR than postgres. Rather than add yet another dba_ func, I converted them to "& ~" ("AND NOT") when turning off, and "|" ("OR") when turning on. There were no true toggles (XOR). New queries should refrain from using XOR when not necessary. - There are several fields which the schema has marked as NOT NULL, but the inserts don't specify them. The reason this works is because mysql totally ignores the constraint and adds an empty text default automatically. Again, non-compliant, obviously. In these cases a default of empty text was added. - Several statements rely on a non-standard MySQL feature (http://dev.mysql.com/doc/refman/5.5/en/group-by-handling.html). These queries can all be rewritten to be standards compliant. Interestingly enough, the newly rewritten standards compliant queries run a zillion times faster, even on MySQL. - A couple of function/operator name translations were needed (RAND/RANDOM, GROUP_CONCAT/STRING_AGG, UTC_NOW, REGEXP/~, ^/#) -- assist functions added in the dba_ - INTERVALs: postgres requires quotes around the value, mysql requires that there are not quotes around the value -- assist functions added in the dba_ - NULL_DATE's -- Postgres does not allow the invalid date '0000-00-00 00:00:00' (there is no such thing as year 0 or month 0 or day 0). We use '0001-01-01 00:00:00' for postgres. Conversions are handled in Zot/item packets automagically by quoting all dates with dbescdate(). - char(##) specifications in the schema creates fields with blank spaces that aren't trimmed in the code. MySQL apparently treats char(##) as varchar(##), again, non-compliant. Since postgres works better with text fields anyway, this ball of bugs was simply side-stepped by using 'text' datatype for all text fields in the postgres schema. varchar was used in a couple of places where it actually seemed appropriate (size constraint), but without rigorously vetting that all of the PHP code actually validates data, new bugs might come out from under the rug. - postgres doesn't store nul bytes and a few other non-printables in text fields, even when quoted. bytea fields were used when storing binary data (photo.data, attach.data). A new dbescbin() function was added to handle this transparently. - postgres does not support LIMIT #,# syntax. All databases support LIMIT # OFFSET # syntax. Statements were updated to be standard. These changes require corresponding changes in the coding standards. Please review those before adding any code going forward. Still on my TODO list: - remove quotes from non-reserved identifiers and make reserved identifiers use dba func for quoting - Rewrite search queries for better results (both MySQL and Postgres)
* doc updatesfriendica2014-11-0110-0/+1049
|
* doc updatesfriendica2014-10-3182-1814/+1782
|
* Debian doco - no longer uses dropbear.Thomas Willingham2014-10-311-2/+2
|
* Merge https://github.com/friendica/red into pending_mergefriendica2014-10-273-12/+14
|\
| * Merge branch 'master' of https://github.com/friendica/redJeroen2014-10-272-0/+60
| |\
| * | update nl + Terms of Service more prominent in the help files.Jeroen2014-10-273-12/+14
| | |
* | | add "repository" permissions role and make sure we have a sane "accept" ↵friendica2014-10-271-3/+12
| |/ |/| | | | | default for the custom role.
* | some documentation of permission roles and what the differences are.friendica2014-10-272-0/+60
|/
* the to-do list is getting longer again.friendica2014-10-241-0/+3
|
* correction to addon footerzottel2014-10-241-1/+1
|
* update to German helpzottel2014-10-2410-24/+24
|
* doc updatesfriendica2014-10-2493-543/+2308
|
* Doco - politics, unwritten pages, links, and stuff. Nothing major.Thomas Willingham2014-10-228-58/+17
|
* merge madnessfriendica2014-10-1955-67/+156
|
* new doc added to doc checkinfriendica2014-10-1920-0/+2790
|
* doc updatesfriendica2014-10-19112-1294/+1472
|
* lighttpd sample conf security enhancementmarijus2014-10-161-0/+5
|
* Let's not play security expert. Use Mozillas recommended serverThomas Willingham2014-10-161-1/+1
| | | | | config, even if it's ridiculously verbose. Reasoning - they make the browser, so if they've got it wrong, you're buggered anyway.
* SSL is broken you say? Well bah gum.Thomas Willingham2014-10-161-1/+1
| | | | Someone probably needs to update Lighttpd and Apache too.
* one more hidden configtuscanhobbit2014-10-131-0/+3
|
* bit of cleanup of hidden_configs. This is a start - we've got hundreds more.friendica2014-10-121-37/+30
|
* Some more previously undocumented configs.Thomas Willingham2014-10-111-0/+49
|
* Doco: Hidden configs - you won't believe what happens next!Thomas Willingham2014-10-111-0/+58
| | | | | Covered the P's, still need to do the X and just the configs. Work in progress, so not linked from the index yet.
* doc updatesfriendica2014-10-10140-1903/+3809
|
* Moved RedBrowser class from reddav.php to it's own file.Klaus Weidenbach2014-10-061-35/+0
| | | | | | | | | First step on cleaning up ReadDAV classes and restructuring it bit in preparation for adding some more DAV features, photo access, CalDAV, etc. and hopefully also some PHPunits. Add a PHP5.3 namespace for RedDAV classes. Any objections against this or the vendor namespace? Add some more documentation for RedBrowser.
* typoMichael Johnston2014-10-031-1/+1
|
* doc updatesfriendica2014-10-0348-355/+1038
|
* relevant now that site statistics are all the hotnesshabeascodice2014-09-281-0/+5
|
* doc updates, clean up buttons on PM edit template to match other edit buttonsfriendica2014-09-2649-245/+367
|
* fix url mismatches of a single trailing slash for feed author/owner ↵friendica2014-09-231-11/+2
| | | | comparisons; update diaspora_compat
* update German main help pagezottel2014-09-231-3/+8
|
* Repeat after me - we always refer to our clientelle as 'members'. If your ↵friendica2014-09-191-2/+2
| | | | software calls you a "user" - get rid of it.
* doc updatesfriendica2014-09-1969-253/+570
|
* Merge branch 'master' of https://github.com/friendica/redThomas Willingham2014-09-181-0/+2
|\
| * forgot this one...friendica2014-09-171-0/+2
| |
* | Doco - permissions needs some work, but this is a relative whopper.Thomas Willingham2014-09-181-1/+1
|/