Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge https://github.com/friendica/red into pending_merge | friendica | 2014-11-28 | 1 | -18/+18 |
|\ | |||||
| * | Doco - #710 flipped the colours. Unsurprisingly, they were the other | Thomas Willingham | 2014-11-28 | 1 | -18/+18 |
| | | | | | | | | | | way round because they were created on a dark theme. The right thing to do is not to specify a colour at all, and let the themes handle it. | ||||
* | | doc updates | friendica | 2014-11-28 | 57 | -155/+564 |
|/ | |||||
* | Documentation wording | Andrew Manning | 2014-11-25 | 3 | -132/+8 |
| | | | | | Improved wording. Replaced white colored text with black because the default theme makes the white invisible. | ||||
* | update to Germanmain help file | zottel | 2014-11-24 | 1 | -0/+2 |
| | |||||
* | more roadmap | friendica | 2014-11-23 | 1 | -0/+3 |
| | |||||
* | project roadmap | friendica | 2014-11-23 | 2 | -0/+47 |
| | |||||
* | Merge https://github.com/friendica/red into pending_merge | friendica | 2014-11-22 | 1 | -0/+2 |
|\ | |||||
| * | Merge remote-tracking branch 'upstream/master' | Habeas Codice | 2014-11-21 | 1 | -0/+7 |
| |\ | |||||
| * | | new system config reserved_channels | Habeas Codice | 2014-11-21 | 1 | -0/+2 |
| | | | | | | | | | | | | prevents members from creating channels in a reserved list | ||||
* | | | random block widget | friendica | 2014-11-22 | 1 | -0/+7 |
| | | | |||||
* | | | doc updates | friendica | 2014-11-22 | 91 | -1408/+1554 |
| |/ |/| | |||||
* | | random photo widget | friendica | 2014-11-20 | 1 | -0/+7 |
|/ | |||||
* | to-do update | friendica | 2014-11-20 | 1 | -0/+1 |
| | |||||
* | Merge remote-tracking branch 'upstream/master' | Habeas Codice | 2014-11-18 | 1 | -0/+6 |
|\ | |||||
| * | forgot to add catcloud to the widget doc | friendica | 2014-11-17 | 1 | -0/+6 |
| | | |||||
* | | update docs | Habeas Codice | 2014-11-18 | 1 | -2/+2 |
| | | |||||
* | | Merge remote-tracking branch 'upstream/master' | Habeas Codice | 2014-11-17 | 152 | -1591/+3305 |
|\| | |||||
| * | doc updates | friendica | 2014-11-15 | 152 | -1591/+3305 |
| | | |||||
* | | Merge branch 'master' of https://github.com/habeascodice/red | habeascodice | 2014-11-13 | 159 | -2008/+4345 |
|\| | |||||
| * | Merge remote-tracking branch 'upstream/master' | Habeas Codice | 2014-11-13 | 107 | -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 personal | friendica | 2014-11-12 | 1 | -3/+3 |
| | | | |||||
| | * | ok, I think I'll give it a break now. | friendica | 2014-11-12 | 1 | -6/+8 |
| | | | |||||
| | * | minor word tweaks | friendica | 2014-11-12 | 1 | -3/+3 |
| | | | |||||
| | * | wordsmith | friendica | 2014-11-12 | 1 | -1/+1 |
| | | | |||||
| | * | more minor wordsmithing | friendica | 2014-11-12 | 1 | -2/+2 |
| | | | |||||
| | * | Some dates couldn't be verified without going way back in the archives so at ↵ | friendica | 2014-11-12 | 1 | -3/+3 |
| | | | | | | | | | | | | least make this document accurate based on what I have in front of me. | ||||
| | * | add history link | friendica | 2014-11-12 | 1 | -0/+1 |
| | | | |||||
| | * | History of RedMatrix, Friendica, Mike Macgirvin, and associated other stuff. | friendica | 2014-11-12 | 1 | -0/+48 |
| | | | |||||
| | * | Document reinstalling, or saying don't do that without explicitly stating ↵ | Thomas Willingham | 2014-11-08 | 1 | -2/+10 |
| | | | | | | | | | | | | don't do that. | ||||
| | * | update to German help files | zottel | 2014-11-07 | 2 | -3/+4 |
| | | | |||||
| | * | doc updates | friendica | 2014-11-07 | 102 | -406/+1576 |
| | | | |||||
| * | | PostgreSQL support initial commit | Habeas Codice | 2014-11-13 | 2 | -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 updates | friendica | 2014-11-01 | 10 | -0/+1049 |
| | | |||||
| * | doc updates | friendica | 2014-10-31 | 82 | -1814/+1782 |
| | | |||||
| * | Debian doco - no longer uses dropbear. | Thomas Willingham | 2014-10-31 | 1 | -2/+2 |
| | | |||||
* | | Merge remote branch 'upstream/master' | habeascodice | 2014-10-29 | 255 | -1924/+6784 |
|\| | |||||
| * | Merge https://github.com/friendica/red into pending_merge | friendica | 2014-10-27 | 3 | -12/+14 |
| |\ | |||||
| | * | Merge branch 'master' of https://github.com/friendica/red | Jeroen | 2014-10-27 | 2 | -0/+60 |
| | |\ | |||||
| | * | | update nl + Terms of Service more prominent in the help files. | Jeroen | 2014-10-27 | 3 | -12/+14 |
| | | | | |||||
| * | | | add "repository" permissions role and make sure we have a sane "accept" ↵ | friendica | 2014-10-27 | 1 | -3/+12 |
| | |/ | |/| | | | | | | | default for the custom role. | ||||
| * | | some documentation of permission roles and what the differences are. | friendica | 2014-10-27 | 2 | -0/+60 |
| |/ | |||||
| * | the to-do list is getting longer again. | friendica | 2014-10-24 | 1 | -0/+3 |
| | | |||||
| * | correction to addon footer | zottel | 2014-10-24 | 1 | -1/+1 |
| | | |||||
| * | update to German help | zottel | 2014-10-24 | 10 | -24/+24 |
| | | |||||
| * | doc updates | friendica | 2014-10-24 | 93 | -543/+2308 |
| | | |||||
| * | Doco - politics, unwritten pages, links, and stuff. Nothing major. | Thomas Willingham | 2014-10-22 | 8 | -58/+17 |
| | | |||||
| * | merge madness | friendica | 2014-10-19 | 55 | -67/+156 |
| | | |||||
| * | new doc added to doc checkin | friendica | 2014-10-19 | 20 | -0/+2790 |
| | | |||||
| * | doc updates | friendica | 2014-10-19 | 112 | -1294/+1472 |
| | |