aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | some minor cleanup of unreported (and as yet undiscovered) issues with ↵friendica2014-11-054-3/+7
|/ / / | | | | | | | | | permissions toggling. No smoking guns and no obvious issues discovered here. Repeated and tried to duplicate zottell's issue as described without seeing any obvious problems.
* | | release the navbar in landscape mode on small devicesmarijus2014-11-051-0/+7
| | |
* | | changed notification descriptionfriendica2014-11-041-1/+1
| | |
* | | minor adjustments to make the form work as designedfriendica2014-11-042-8/+12
| | |
* | | ok heads up - potentially destabilising change. I've tried to sort out all ↵friendica2014-11-0410-42/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the default connection permissions for those who don't have a predefined (or therefore have a "custom") permissions role. Unfortunately this includes most people that were using this software more than a month ago. The real changes are that the SELF address book entry no longer holds "auto-permissions" but instead holds your "default permissions" (if you have a pre-defined role, the defaults will be pulled from the role table). The auto permissions have moved to a pconfig (uid.system.autoperms). A DB update will move these settings into their new homes. What used to be the "Auto-permissions settings" page is now the "default permissions settings" page and a checkbox therein decides whether or not to apply the permissions automatically. A link to this page will only be shown when you have the "custom" role selected. With luck nobody will notice anything wrong. But at least for the next few days, please review permissions that have been assigned to new connections (either automatically or manually) and make sure they make sense (e.g. they aren't "nothing"). You still need to take action when seeing a message "permissions have changed but not yet submitted" as we always let you review and perhaps adjust the settings _before_ a connection is established (unless you have autoperms turned on).
* | | Merge https://github.com/friendica/red into pending_mergefriendica2014-11-041-11/+0
|\ \ \
| * | | Remove legacy custom/Thomas Willingham2014-11-041-11/+0
| | | |
* | | | configurable visual alerts/notificationsfriendica2014-11-045-73/+206
|/ / /
* | | it appears bootbox was lost in a bootstrap upgradefriendica2014-11-043-1/+901
| | |
* | | class > id mixupmarijus2014-11-041-1/+1
| | |
* | | missing </div>marijus2014-11-041-2/+3
| | |
* | | wall posted comment to a top-level wall post which arrived via a route (e.g. ↵friendica2014-11-031-0/+3
| | | | | | | | | | | | was posted to a forum) had no route, hence downstream recipients report route mismatch
* | | posted-date-selector - spacing was slightly off in dropdown entriesfriendica2014-11-031-0/+4
| | |
* | | Merge https://github.com/friendica/red into pending_mergefriendica2014-11-035-91/+99
|\ \ \
| * | | innodb issueThomas Willingham2014-11-031-2/+3
| | | |
| * | | one </div> to much and css fixesmarijus2014-11-032-79/+79
| | | |
| * | | Merge branch 'master' of https://github.com/friendica/redmarijus2014-11-033-1/+377
| |\ \ \
| * | | | if uploading a photo go away to albummarijus2014-11-031-2/+7
| | | | |
| * | | | if deleting a photo go away to albummarijus2014-11-032-8/+10
| | | | |
* | | | | various UI issues related to having an enormous number of entries in the ↵friendica2014-11-033-5/+47
| |/ / / |/| | | | | | | | | | | posted_date selector including years/months that had no posts
* | | | provide example import scriptfriendica2014-11-033-1/+377
|/ / /
* | | php warningsfriendica2014-11-021-23/+23
| | |
* | | Merge https://github.com/friendica/red into pending_mergefriendica2014-11-026-24/+23
|\ \ \
| * | | Pixelbit restored. Going forwards, we probably want to add a checkThomas Willingham2014-11-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | that a directory is returning something in find_upstream_directory() since this was spotted by a new install who thought *they* were broken.
| * | | Merge branch 'master' of https://github.com/friendica/redmarijus2014-11-021-1/+0
| |\ \ \
| | * | | Remove pixelbits from directory fallback - blocked public searches provideThomas Willingham2014-11-021-1/+0
| | | | | | | | | | | | | | | | | | | | no results.
| * | | | css fixesmarijus2014-11-025-23/+22
| |/ / /
* / / / I'm going to try again with the conversation request packets. I've looked ↵friendica2014-11-022-13/+60
|/ / / | | | | | | | | | this over and tested a lot of edge cases, and thought about from every angle I can think of to prevent looping. I don't *think* this can loop. I also doubt that this is the problem at friendicared.de, but I don't know for sure what that problem might be.
* | | add some more safety checks before turning the conversation request messages ↵friendica2014-11-023-5/+7
| | | | | | | | | | | | back on
* | | even more photos workmarijus2014-11-016-160/+103
| | |
* | | close the eventual open tool if the other opensmarijus2014-11-011-2/+2
| | |
| | * PostgreSQL support initial commitHabeas Codice2014-11-13110-648/+2256
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
| | * Merge remote branch 'upstream/master'habeascodice2014-11-01399-16927/+23392
| | |\ | |_|/ |/| |
* | | check that we have valid datafriendica2014-11-012-10/+17
| | |
* | | Merge https://github.com/friendica/red into pending_mergefriendica2014-11-0112-87/+70
|\ \ \
| * | | do not reload page for photo uploadmarijus2014-10-319-43/+26
| | | |
| * | | Smarty3 now lives in storeThomas Willingham2014-10-311-4/+0
| | | |
| * | | Merge pull request #671 from pafcu/masterjeroenpraat2014-10-311-1/+4
| |\| | | | | | | | | | Fix problem with default birth date
| | * | Fix problem with default birth dateStefan Parviainen2014-10-311-1/+4
| | | |
| * | | Merge branch 'master' of https://github.com/friendica/redmarijus2014-10-3185-3609/+3601
| |\ \ \
| * | | | more work on photo uploadmarijus2014-10-315-40/+41
| | | | |
* | | | | disable request message response until we work through thisfriendica2014-11-013-2/+4
| | | | |
* | | | | doc updatesfriendica2014-11-0110-0/+1049
| |/ / / |/| | |
* | | | document request packets a bit morefriendica2014-10-311-1/+4
| | | |
* | | | doc updatesfriendica2014-10-3184-3604/+3592
| | | |
* | | | flag notify packets that are sent in response to a message_id request and ↵friendica2014-10-311-4/+5
|/ / / | | | | | | | | | prevent them from recursing
* | | Heads up: "custom/module.php" is deprecated. Please read this commit if you ↵friendica2014-10-301-1/+13
| | | | | | | | | | | | are affected.
* | | Merge https://github.com/friendica/red into pending_mergefriendica2014-10-3016-429/+737
|\ \ \
| * | | Debian doco - no longer uses dropbear.Thomas Willingham2014-10-311-2/+2
| | | |
| * | | removing this was not a good idea...marijus2014-10-301-0/+4
| | | |